:root {
    --color-primary: #0c1a37;
    --color-headings: #ab8262;
    --color-accent: #d3d1cb;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

html {
    font-size: 62.5%;
}

body {
    font-family: Zalando Sans Expanded, sans-serif;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    background: var(--color-primary);
    margin: 0;
}

html, body {
  overflow-x: hidden;
}


h1 {
    color: var(--color-accent);
    font-size: 7rem;
}

h2 {
    color: var(--color-headings);
    font-size: 3.5rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

h3 {
    color: var(--color-headings);
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

p {
    color: var(--color-accent);
    font-size: 1.75rem;
    letter-spacing: 0.1rem;
}

/* Hero */
.hero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;
  
  display: flex;
  flex-direction: column;   /* stack children vertically */
  align-items: center;      /* horizontally center all children */
  justify-content: center;  /* vertically center if needed */
  text-align: center;       /* for inline/inline-block children like buttons */
  gap: 3rem;                /* space between logo and button */
}

.logo__main {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .hero {
    padding: 6rem 2rem;
  }

  .btn {
    padding: 2rem 5rem;
    font-size: 1.6rem;
  }
}


/* Button */ 
.btn {
  display: inline-block;            /* inline-block works well with text-align:center */
  padding: 2rem 4rem;
  background-color: var(--color-primary);
  color: var(--color-headings);
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  border: 0.5px solid var(--color-headings);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  color: white;
  border-color: var(--color-accent);
}

/* Lists */ 
.list {
    list-style: none;
    padding-left: 0;
}

/* Links */
a {
    text-decoration: none;
}

/* Navigation Bars */
.nav {
    background: var(--color-primary);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 1rem;
    align-items: center;
    position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.nav__toggle {
  font-size: 3rem;
  background: none;
  border: 0;
  color: var(--color-headings);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 11;

}

.nav__list {
   position: fixed;
   inset: 0;
   background: var(--color-primary);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   opacity: 0;
   transform: translateY(-2rem);
   transition: opacity 0.3s ease, transform 0.3s ease;
   pointer-events: none;
}

.nav__list--open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__item {
    font-size: 3rem;
    padding: 1.5rem 0;
    letter-spacing: 0.2rem;
    text-align: center;
    
}

.nav__item > a {
    color: var(--color-headings);
    transition: color 0.3s;
}

.nav__item > a:hover {
    color: var(--color-accent);

}

@media screen and (min-width: 768px) {
  .nav__list {
    width: auto;
    font-size: 1.6rem;
    max-height: 100%;
    margin-left: auto;
  }

  .nav__item {
    padding: 1.5rem 2.5rem;
  }

}

/* Image Gallery */ 
.gallery {
  display: grid;
  grid-template-columns: 1fr; /* mobile: 1 column */
  gap: 4rem;
  width: 100%;
  max-width: 1200px; /* optional: constrain max width */
  margin: 0 auto;
  padding: 4rem 1.75rem;
  box-sizing: border-box;
  
}

/* Gallery images */
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}


/* Desktop and up */
@media (min-width: 768px) {
    .gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 4rem;                          /* space between images */
    padding-left: 4rem;                 /* match gap */
    padding-right: 4rem;                /* match gap */
    max-width: 1200px;                  /* optional: constrain width */
    margin: 0 auto;                     /* center the grid */
    box-sizing: border-box;
  }
}

/* Base grid layout */
.grid--1x2 {
  display: grid;
  gap: 4rem;
  padding: 2rem;
}

/* Story spacing */
.story {
  margin-bottom: 8rem;
}

.story__heading {
    text-align: center;
    margin: 6rem 0;
}

/* Text content */
.stories__content {
  padding: 0 2rem; /* horizontal padding only */
  display: flex; /* allows text wrapper to define height */
}

.stories__text {
  display: flex;
  flex-direction: column; /* normal text flow */
  margin: 0;
  padding: 0;
}

/* Remove default margins */
.stories__content h3,
.stories__content p {
  margin: 0;
  padding: 0;
}

/* Image styling */
.stories__image {
  display: block;
}

/* Mobile: image fits naturally below text */
.stories__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Desktop layout */
@media (min-width: 768px) {
  .grid--1x2 {
    grid-template-columns: 1fr 1fr;
    align-items: stretch; /* ensures columns are same height */
  }

  .grid--1x2:nth-of-type(even) .stories__content {
    order: 2;
  }

  .story {
    display: flex;
    gap: 4rem;
    align-items: stretch;
  }

  .stories__image {
    display: flex;
    flex: 1; /* image takes same height as text wrapper */
  }

  .stories__image img {
    width: 100%;
    max-height: 600px ;
    height: 100%; /* now flush with text top and bottom */
    object-fit: cover;
    display: block;
  }

  .stories__content {
    display: flex;
    flex: 1; /* equal width with image */
    flex-direction: column;
}
}



/* Footer Section */
.footer {
    background: var(--color-primary);
    position: relative;
    padding-top: 10rem;
    text-align: center;
    padding-top: 20px; /* optional spacing above content */
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: var(--color-headings);
}

.footer a {
    color: var(--color-headings);
}

.footer a:hover {
    color: var(--color-accent);
}

.footer__section {
    padding: 2rem;
}

.footer__section .list {
    margin: 0;
}

.footer li {
    padding-bottom: 2rem; 
}

.footer__content {
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 1.5;
}

.footer__brand {
    margin-top: 5rem;
}

.footer__brand img {
    max-width: 60%;
    display: block;
    margin: 0 auto;
}

.footer__instagram {
    display: block;
    margin: 0 auto 1.5rem;
}

.footer__instagram img {
    width: 3.2rem;
    height: 3.2rem;
    transition: transform 0.2s, opacity 0.2s;
}

.footer__copyright {
    font-size: 1.5rem;
    color: var(--color-headings);
    opacity: 0.4;
}

@media (min-width: 768px) {
  .footer {
    display: block; /* remove grid */
    text-align: center; /* center all content */
    padding: 5rem 2rem; /* optional spacing */
  }

  .footer__brand,
  .footer__section,
  .footer__instagram,
  .footer__copyright {
    margin: 2rem 0; /* spacing between sections */
  }

  .footer__content .list {
    display: block; /* stack list items */
  }

  .footer__content .list li {
    margin: 1rem 0;
  }

   .footer__brand img {
   max-width: 250px;
   width: 100%;
   height: auto;
  
 }

}


.menu {
     width: 100%;
  max-width: 800px;   /* optional: keeps it smaller */
  height: auto;       /* IMPORTANT */
  display: block;
  margin: 0;
}

.contact__heading {
   display: flex;
    flex-direction: column;
    margin: 2rem 3rem;
}


.contact__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 3rem 3rem;
}

.contact__content a {
    color: #ab8262;
    margin: 1rem 2rem;
}

@media screen and (min-width: 768px) {
.contact__heading {
   display: flex;
   flex-direction: column;
    margin: 1rem 8rem;
}


.contact__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 3rem 8rem;
}
}

/* ========== Sunday Packages ========== */

.signature-experience {
  padding: 8rem 2rem;
  background-color: var(--color-primary);
  text-align: center;
}

.signature-container {
  max-width: 100%;
  margin: 0 auto;
}

.signature-experience h2 {
  font-size: 2.75rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.signature-text {
  font-size: 2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: var(--color-accent);
}

.price {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--color-accent);
}

.divider {
  width: 50px;
  height: 1px;
  background-color: #c6a75e;
  margin: 0 auto 25px auto;
}

.cta {
  font-size: 2rem;
  letter-spacing: 0.5px;
  color: var(--color-headings);
  margin: 2rem 2rem 0 2rem;
  
}

/* ========== Tablet & Desktop (768px and up) ========== */

@media (min-width: 768px) {

  .signature-experience {
    padding: 0 2rem 6rem 2rem;
  }

  .signature-container {
    max-width: 700px;
  }

  .signature-experience h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .signature-text {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .price {
    font-size: 1.55rem;
    margin-bottom: 30px;
  }

  .divider {
    width: 60px;
    margin-bottom: 30px;
  }

  .cta {
    font-size: 1.6rem;
  }
}


.menu__content {
  padding: 2rem 2rem;
  background-color: var(--color-primary);
  text-align: center;
}

.menu-text {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--color-accent);
}