/* CSS Reset & Variables */
:root {
  --color-bg-light: #fbf9f6;
  --color-bg-footer: #f2eee9;
  --color-text-dark: #2c2421;
  --color-text-muted: #6b625e;
  --color-accent: #b8926a;
  --color-border: #e8e3dc;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", sans-serif;
  --transition: all 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

/* Reusable Components & Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.08em;
}

p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.divider-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--color-accent);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
header {
  background-color: var(--color-text-dark);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
  position: relative;
  z-index: 1000;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-area {
  display: flex;
  width: 300px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}
.logo-icon {
  font-size: 1.5rem;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  width: 100%;
  justify-content: center;
}

.nav-menu a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: var(--color-border);
}

.nav-menu a:hover {
  color: var(--color-accent);
}
.logo-area img.logo-image {
  width: 100%;
}
/* Mobile Hamburger Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  /* position: absolute; */
  right: 1.5rem;
  top: 2.5rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-border);
  margin: 6px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background-image: url("/images/luxury-wineglass-reflects-candlelit-elegance-celebration-generated-by-ai1.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.hero-overlay-card {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8rem 5rem;
  text-align: center;
  max-width: 990px;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.hero h2 {
  font-size: 2rem;
  color: #ffffff;
  margin: 1rem 0;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.hero p {
  color: #ffffff;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero .divider-icon {
  color: rgba(255, 255, 255, 0.75);
}

/* Collection Section */
.collection-section {
  padding: 6rem 0;
  text-align: center;
}

.collection-intro {
  margin-bottom: 4.5rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.collection-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
}

.card-image-wrapper {
  width: 100%;
  border: 1px solid var(--color-border);
  padding: 1.2rem;
  background-color: #ffffff;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.card-image-container {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #1a1513;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  opacity: 0.9;
}

.collection-card:hover .card-image-container img {
  transform: scale(1.05);
  opacity: 1;
}

.collection-card:hover .card-image-wrapper {
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(184, 146, 106, 0.05);
}

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.card-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  padding: 0 1rem;
}

/* Philosophy Section */
.philosophy-section {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.philosophy-image-wrapper {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  border: 1px solid var(--color-border);
  padding: 1rem;
  background-color: #ffffff;
}

.philosophy-image-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.philosophy-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-content p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.philosophy-content p:last-child {
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--color-text-dark);
  padding: 4rem 0 2rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
}
.footer-logo-title .logo-image {
  width: 100%;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin-bottom: 2rem; */
}

.footer-logo-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
  width: 300px;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  /* padding-top: 1.5rem; */
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e8e3dc;
  /* border-top: 1px solid #e8e3dc; */
  /* max-width: 500px; */
  margin: 0 auto;
}
.footer-links a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #e8e3dc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  /* flex-wrap: wrap; */
  gap: 1rem;
  padding-top: 30px;
  border-top: 1px solid #e8e3dc;
}
.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom span {
  font-size: 0.75rem;
  color: #e8e3dc;
  /* width: 100%; */
}

/* Responsive Styles */
@media (max-width: 991px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom span {
    width: 100%;
  }
  .logo-area {
    width: 190px;
    margin-bottom: 0;
  }
  .header-inner {
    flex-direction: inherit;
    align-items: center;
    justify-content: space-between;
  }
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    display: flex;
  }

  /* Hamburger animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 20px;
  }

  .hero {
    height: 70vh;
  }

  .hero-overlay-card {
    padding: 2.5rem 1.5rem;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
