/* ========== ROOT VARIABLES ========== */
:root {
  --primary-color: #7D6342;
  --primary-hover: #70552c;
  --secondary-color: #bfa75e;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #D6D6D6;
  --bg-dark: #04080F;
  --border-color: #D6D6D6;
  --mobile-nav-bg: #f2f2f2;
  --scroll-top-bg: #8b6f47;
  --footer-text: #aaa;
  --table-border: black;
  --schedule-dark: #04080F;
}

/* ========== GENERAL RESETS ========== */
* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  font-style: normal;
  background-color: var(--bg-light);
  line-height: 1.5;
  
}

/* ========== HEADER STYLES ========== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  position: relative;
  background-color: var(--bg-light);
}

.header-left {
  display: none;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger a {
  text-decoration: underline;
  font-weight: 200;
  color: var(--text-dark);
  font-size: 16px;
}

/* Header Right (Desktop Navigation + Language Switcher) */
.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Desktop Navigation */
.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 4rem;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 200;
  font-size: 16px;
  transition: color 0.2s ease-in-out;
}

.desktop-nav a:hover {
  color: var(--secondary-color);
}

/* Language Switcher */
.language-switcher a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 200;
}

/* ========== MOBILE NAVIGATION (Slide-Out) ========== */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%; /* Hidden by default */
  width: 70%;
  max-width: 300px;
  height: 100%;
  background-color: var(--mobile-nav-bg);
  padding: 2rem;
  transition: left 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin: 1rem 0;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight:  300;
  font-size: 1.2rem;
}
.menu_mobile{
  color: var(--text-dark);
  font-weight:  300;
  font-size:  1.2rem;
}
.mobile-socials {
  display: flex;
  justify-content:  space-around    ;
  align-items:  center  ;
  gap: 1rem;
  margin-top: 2rem;
}

.close-btn {
  text-align: right;
  margin-bottom: 2rem;
  cursor: pointer;
  font-weight: 700;
}

/* Active state for mobile nav */
.mobile-nav.active {
  left: 0;
}

/* ========== HERO SECTION ========== */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 2rem;
  min-height: 90vh;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.hero-text .title-svg {
  width: 350px;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  padding: 1rem 0 2rem 0;
}

.cta-button {
  background-color: var(--primary-color);
  border: none;
  width: 18rem;
  height: 4rem;
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.cta-button:hover {
  cursor: pointer;
  background-color: var(--primary-hover);
}

.hero-image {
  flex: 1;
  text-align: center;
  padding: 1rem;
}

.hero-image img {
  height: 70vh;
  object-fit: cover;
  transform: scale(1.1);
  transform-origin: 40% 20%;
}

/* ========== OUR STORY SECTION ========== */
.our-story {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 1rem 2rem;
  text-align: left;
}

.title-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  font-size: 100px;
  color: var(--text-light);
  font-weight: 100;
  margin: 0 15px;
}

.line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--text-light);
}

.our-story-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 2rem auto;
}

.our-story p {
  width: fit-content;
  font-weight: 200;
  line-height: 2.2;
  margin: 2rem;
}

.regular-text {
  font-weight: 400;
}

.video-container {
  position: relative;
  width: 45vw;
  height: 85vh;
  overflow: hidden;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.2); /* Blurry effect */
  backdrop-filter: blur(10px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.play-button span {
  color: var(--text-dark);
  font-size: 30px;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ========== WEEK SCHEDULE SECTION ========== */
.week-schedule {
  padding: 1rem 2rem;
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.title-dark {
  font-size: 80px;
  color: var(--schedule-dark);
  font-weight: 100;
  margin: 0 15px;
}

.line-dark {
  flex-grow: 1;
  height: 1px;
  background-color: var(--schedule-dark);
}

.week-schedule p {
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.schedule {
  width: 100%;
}

table {
  align-items: center;
  border-collapse: collapse;
  background-color: var(--bg-light);
}

th, td {
  border: 1px solid var(--table-border);
  padding: 15px;
  text-align: center;
}

th {
  font-weight: bold;
}

td {
  font-size: 14px;
}

.schedule-mobile {
  display: none;
}

#location-map {
  margin: 0 auto;
  width: 100%;
  height: 700px;
}

.location-map h3 {
  margin: 2rem 0;
  font-weight: 600;
}
iframe{
  border:solid 1px black;
  max-width: 1100px;
  width: 100%;
  height: 400px;
}

/* ========== PRICES SECTION ========== */
.prices {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 1rem 2rem;
  text-align: center;
}

.price-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
}

.price-card {
  background-color: none;
  padding: 2rem;
  border: var(--border-color) 1px solid;
  flex: 1;
  max-width: 500px;
  min-height: 500px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.price-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-value{
    margin-bottom: 1rem;
    font-size: 24px;
    font-weight: 600;
}
.price-unit{
    font-size: 18px;
    font-weight: 200;
}

.price-card li {
  list-style: none;
  text-align: left;
  margin: 0 2rem;
  color: whitesmoke;
  font-size: 16px;
  font-weight: 100;
}

.price-card li:before {
  content: '\2022';
  display: block;
  position: relative;
  max-width: 0px;
  max-height: 0px;
  left: -20px;
  top: -5px;
  color: grey;
  font-size: 25px;
}

.cta-price {
  margin: 2rem 0 0 0;
  font-size: 1.15rem;
  letter-spacing: 2px;
  font-weight: 300;
  width: 100%;
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 1rem 2rem 4rem 3rem;
  text-align: center;
}

.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 4rem;
}

.contact-form {
  width: 40%;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid gray;
  background-color: transparent;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.contact-form button {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background-color: var(--primary-hover);
}

.contact-info {
  width: 40%;
  text-align: left;
}

.info-inside-container {
  margin-bottom: 24px;
}

.contact-info h3 {
  font-size: 21px;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 400;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 2rem;
}

.social-icons img {
  cursor: pointer;
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 40px 2rem;
}

.footer-container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  margin: 0 1rem;
}

.footer-left {
  width: 80%;
}

.footer-center, .footer-right {
  width: 10%;
}

.footer-left h3 {
  font-size: 1.5rem;
  margin-bottom: .3rem;
}

.footer-left p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-decoration: underline;
}

.footer-center ul, .footer-right ul {
  list-style: none;
}

.footer-center ul li, .footer-right ul li {
  margin-bottom: 8px;
}

.footer-center a, .footer-right a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 200;
}

.footer-center a:hover, .footer-right a:hover {
  text-decoration: underline;
}

.scroll-top {
  margin-top: 20px;
}

.scroll-top a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: var(--scroll-top-bg);
  color: var(--text-light);
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 64px;
  font-size: 0.8rem;
  color: var(--footer-text);
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */

/* Desktop: Hide hamburger and show desktop nav */
@media (min-width: 850px) {
  .hamburger {
    display: none;
  }
  .desktop-nav {
    display: block;
  }
}

@media (max-width: 1200px) {
  .hero-image {
    display: none;
  }
}

/* Mobile*/
@media (max-width: 830px) {
  .header {
    padding: 1rem 2rem;
  }
  .desktop-nav {
    display: none;
  }
  .header-right {
    display: none;
  }
  .header-left {
    display: flex;
  }
  .header {
    display: flex;
    justify-content: space-between;
  }
  .hero-text{
      padding: 0rem;
  }
  .hero-text .title-svg {
    width: 70vw;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-image {
    display: none;
  }
  .title {
    font-size: 15vw;
  }
  .title-dark {
    font-size: 4.5rem;
    margin:  0 0;
  }
  .line {
    display: none;
  }
  .line-dark{
      display: none;
  }
  .our-story-container {
    flex-direction: column;
  }
  .our-story p {
    order: 1;
    font-size: 16px;
    width: 100%;
  }
  .video-container {
    order: 2;
    width: 100%;
  }
  .schedule-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  table {
    width: 100vw; /* Make the table span the full viewport width */
    max-width: 100%;
    border-collapse: collapse;
  }
  .schedule-desktop {
    display: none;
  }
  .price-cards {
    flex-direction: column;
  }
  .contact {
    padding: 1rem 2rem 4rem 2rem;
  }
  .contact-content {
    flex-direction: column;
  }
  .contact-form, .contact-info {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left, .footer-center, .footer-right {
    width: 100%;
    margin: 0 0;
  }
  .footer-center{
    margin: 2rem 0;
  }
}