:root {
  --bg-color: #fefcf7;
  --accent-color: #c2b5e2;
  --text-color: #6b4e36;
  --secondary-color: #a4856d;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
}

/* Make footer stick to bottom when content is short */
html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  width: 100%;

  /* REQUIRED for sticky footer */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper {
  flex: 1;
}

.site-footer {
  margin-top: auto;
}

/* GLOBAL STYLES */
body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  width: 100%;
   display: flex;
  flex-direction: column;
  min-height: 100vh; /* ensures full height */
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* HEADER + NAV */
header {
  width: 100%;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; /* same as your container width */
  width: 100%;
  padding: 1rem 2rem;
  box-sizing: border-box;
  gap: 3rem;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  letter-spacing: 0.05em;
}

nav a:hover {
  color: var(--accent-color);
  transition: color 0.3s ease;
}



/* HERO SECTION */
.hero {
  width: 100%;
  padding: 7rem 0;
}

/* FLEX CONTAINER */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  box-sizing: border-box;
}

/* LEFT SIDE */
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers everything horizontally in this block */
  justify-content: center;
  text-align: center;  /* ensures the button centers under the logo visually */
}

.hero-text .logo {
  max-width: 480px; /* increased from 420px */
  width: 100%;
  height: auto;
  align-self: center; /* keeps it centered above the button */
}

.shop-button {
  display: inline-block;
  background: var(--accent-color);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.25rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.shop-button:hover {
  background: var(--secondary-color);
  transition: background 0.3s ease;
}

/* RIGHT SIDE */
.hero-image {
  flex: 1;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  align-self: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Adjust spacing so logo + photo feel equal height */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem; /* slightly tighter to match proportions */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  box-sizing: border-box;
}

/* MOBILE LAYOUT */
@media (max-width: 900px) {
  .hero {
    padding: 4rem 0;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    padding: 0 2rem;
  }

  .hero-text {
    align-items: center;
  }

  .hero-text .logo {
    max-width: 280px;
    margin-bottom: 1rem;
  }

  .hero-image {
    max-width: 360px;
  }
}


/* WELCOME SECTION */
section.welcome {
  width: 100%;
  padding: 4rem 0;
  text-align: center;
}

section.welcome h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

section.welcome p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--text-color);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    align-items: center;
    text-align: center;
  }

  .hero-text .logo {
    max-width: 250px;
    margin-bottom: 1.5rem;
  }

  .hero-image {
    max-width: 350px;
  }
}

/* ============================
   CAROUSEL
============================ */

.carousel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem auto;
}

.carousel-wrapper {
  width: 100%;
  max-width: 900px;
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  background: #fff;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s ease;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none; /* prevents ghost clicks during swipe */
}

/* HOVER ZOOM */
.carousel-track img:hover {
  transform: scale(1.03);
}

/* ARROWS */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 2rem;
  padding: 0.4rem 1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-50%) scale(1.15);
}

.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }

/* DOTS */
.carousel-dots {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 8px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dots .dot.active {
  background: var(--secondary-color);
  transform: scale(1.3);
}




/* ============================
   GALLERY GRID
============================ */
.gallery-page {
  padding: 3rem 2rem;
  text-align: center;
}

.gallery-page h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}


/* ============================
   FOOTER
============================ */
.site-footer {
  background: #eee7dd;
  padding: 3rem 2rem 2rem;
  margin-top: 3rem;
  color: var(--text-color);
  font-family: var(--font-body);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.5rem;
}

.footer-links a {
  display: block;
  margin-bottom: 0.3rem;
  text-decoration: none;
  color: var(--text-color);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-social p {
  margin-bottom: 0.5rem;
}

.social-icons span {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid #dcd2c5;
  padding-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ---------------------------------
   HAMBURGER MENU (Mobile)
-----------------------------------*/
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Mobile nav links container */
.nav-links {
  display: flex;
  gap: 3rem;
}

/* MOBILE BREAKPOINT */
@media (max-width: 700px) {
  .hamburger {
    display: flex;
  }

  nav {
    justify-content: space-between;
    gap: 0;
  }

  .nav-logo {
    font-weight: 600;
  }

  .nav-links {
    display: none;           /* hidden by default */
    flex-direction: column;
    background: var(--bg-color);
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    gap: 1.2rem;
    border-bottom: 1px solid #eee;
  }

  /* When menu is open */
  .nav-links.open {
    display: flex;
  }

  /* Animate hamburger into X */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

