/* =========================
   BASE
========================= */

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #fbfaf7;
  color: #2f2f2f;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  margin: 0;
}

/* =========================
   NAVIGATION
========================= */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(251, 250, 247, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

/* logo */
.nav-logo {
  height: 40px;
  width: auto;
}

/* links */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* prevent content hiding behind nav */
body {
  padding-top: 90px;
}

/* mobile */
@media (max-width: 768px) {

  .nav {
    padding: 20px;
  }

  .nav-links {
    gap: 15px;
    font-size: 0.85rem;
  }

  .nav-logo {
    height: 32px;
  }
}

/* =========================
   HERO (IMAGE BACKGROUND)
========================= */

.hero {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fbfaf7;
  padding: 40px;
}

.hero-content {
  max-width: 700px;
}

.logo {
  max-width: 320px;
  width: 80%;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 10px;
  color: #444;
}

.subtag {
  font-size: 0.9rem;
  color: #777;
}

html {
  scroll-behavior: smooth;
}

/* inline nav under hero */
.nav-inline {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.nav-inline a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.nav-inline a:hover {
  opacity: 0.5;
}

/* =========================
   SECTIONS
========================= */

section {
  padding: 140px 20px;
  max-width: 1100px;
  margin: auto;
}

section {
  scroll-margin-top: 100px;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

/* =========================
   INTRO
========================= */

.intro {
  text-align: center;
  max-width: 750px;
  font-size: 1.2rem;
  color: #444;
}

/* =========================
   COLLECTIONS
========================= */

.collections {
  text-align: center;
}

.section-intro {
  max-width: 600px;
  margin: 0 auto 50px;
  color: #666;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.collection-content {
  padding: 24px;
}

.collection-content h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.collection-content p {
  color: #555;
  margin-bottom: 20px;
}

.view-link {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/*===============
PAGES
=============== */

.page-header {
  text-align: center;
  padding: 100px 20px 40px;
  max-width: 700px;
  margin: auto;
}

.page-header h1 {
  font-size: 2.5rem;
}

.page-header p {
  color: #555;
  margin-top: 10px;
}



/* =========================
   GALLERY
========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
}

/* =========================
   PROCESS
========================= */

.process {
  text-align: center;
  max-width: 750px;
  font-size: 1.1rem;
  color: #444;
}

/* =========================
   CONTACT
========================= */

.contact {
  text-align: center;
}

.email {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.2rem;
  color: #2f2f2f;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

.email:hover {
  border-bottom: 1px solid #2f2f2f;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .logo {
    max-width: 240px;
  }

  section {
    padding: 80px 20px;
  }

  .collection-card img {
    height: 240px;
  }

  .gallery img {
    height: 220px;
  }
}