/* =============================================
   CAROLYN'S CREATIONS 208 — MAIN STYLESHEET
   Color Palette:
   - Cream:      #FAF7F2
   - Deep Green: #2D5016
   - Cranberry:  #8B1A2F
   - Gold:       #C9A84C
   - Charcoal:   #2C2C2C
   - Light Green:#4A7C28
============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: #1a2e12;
  background-attachment: fixed;
  color: #F0EDE6;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #FFFFFF;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: #d4e0cc;
  max-width: 620px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #2D5016;
  color: #FAF7F2;
  border-color: #2D5016;
}
.btn-primary:hover {
  background-color: #4A7C28;
  border-color: #4A7C28;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,80,22,0.3);
}

.btn-outline {
  background-color: transparent;
  color: #FAF7F2;
  border-color: #FAF7F2;
}
.btn-outline:hover {
  background-color: #FAF7F2;
  color: #2D5016;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: transparent;
  color: #2D5016;
  border-color: #2D5016;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}
.btn-outline-dark:hover {
  background-color: #2D5016;
  color: #FAF7F2;
  transform: translateY(-2px);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(20, 40, 12, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; flex-direction: column; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #F0EDE6;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C9A84C;
  transition: width 0.25s;
}
.nav-links a:hover { color: #C9A84C; }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #2D5016;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}
.hero-dot.active {
  background: #C9A84C;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 35, 10, 0.55) 0%,
    rgba(20, 35, 10, 0.65) 60%,
    rgba(20, 35, 10, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FAF7F2;
  padding: 0 24px;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #FAF7F2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(250,247,242,0.9);
  margin-bottom: 8px;
  font-style: italic;
}

.hero-tagline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #C9A84C;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: #2D5016;
  padding: 20px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FAF7F2;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.trust-icon {
  color: #C9A84C;
  font-size: 0.7rem;
}

/* ---- GALLERY ---- */
.gallery-section {
  padding: 96px 0;
  background: rgba(15, 28, 8, 0.3);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(201, 168, 76, 0.6);
  background: transparent;
  color: #F0EDE6;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: #2D5016;
  color: #FAF7F2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.gallery-card {
  background: linear-gradient(180deg, #243d18 0%, #1e3313 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}
.gallery-card.hidden { display: none; }

.featured-card {
  border: 2px solid rgba(201, 168, 76, 0.6);
  box-shadow: 0 6px 32px rgba(0,0,0,0.45);
}
.featured-card .card-tag {
  background: rgba(139, 26, 47, 0.9);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-card:hover .card-image-wrap img { transform: scale(1.05); }

.card-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
}
.card-tag {
  background: rgba(45, 80, 22, 0.88);
  color: #FAF7F2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.card-body {
  padding: 20px 22px 22px;
  background: transparent;
}
.card-body h3 {
  font-size: 1.15rem;
  color: #C9A84C;
  margin-bottom: 8px;
}
.card-body p {
  font-size: 0.9rem;
  color: #c8d4be;
  line-height: 1.6;
  margin-bottom: 14px;
}
.card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #C9A84C;
  transition: color 0.2s;
}
.card-link:hover { color: #C9A84C; }

/* ---- CUSTOM ORDERS ---- */
.custom-section {
  padding: 96px 0;
  background: rgba(15, 28, 8, 0.4);
}

.custom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.custom-text .section-title { text-align: left; }

.custom-text p {
  color: #d4e0cc;
  margin-bottom: 16px;
  font-size: 1rem;
}

.custom-list {
  list-style: none;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.custom-list li {
  font-size: 0.9rem;
  font-weight: 700;
  color: #F0EDE6;
  padding-left: 20px;
  position: relative;
}
.custom-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #C9A84C;
  font-size: 0.6rem;
  top: 4px;
}

.custom-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.custom-image {
  position: relative;
}
.custom-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.custom-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #8B1A2F;
  color: #FAF7F2;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(139,26,47,0.4);
}
.badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ---- EMAIL SIGNUP ---- */
.signup-section {
  padding: 80px 0;
  background: #2D5016;
  text-align: center;
}

.signup-inner {
  max-width: 640px;
  margin: 0 auto;
}

.signup-icon {
  font-size: 2.5rem;
  color: #C9A84C;
  margin-bottom: 20px;
}

.signup-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #FAF7F2;
  margin-bottom: 14px;
}

.signup-section p {
  color: rgba(250,247,242,0.8);
  font-size: 1rem;
  margin-bottom: 32px;
}

.signup-form .form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-form input {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(250,247,242,0.3);
  background: rgba(250,247,242,0.1);
  color: #FAF7F2;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input::placeholder { color: rgba(250,247,242,0.5); }
.signup-form input:focus { border-color: #C9A84C; }

.signup-form .btn-primary {
  background: #C9A84C;
  border-color: #C9A84C;
  color: #2D5016;
  white-space: nowrap;
}
.signup-form .btn-primary:hover {
  background: #e0bf5c;
  border-color: #e0bf5c;
}

.form-note {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.5);
  margin-top: 14px;
  margin-bottom: 0;
}

.signup-success p {
  color: #C9A84C;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 20px;
  background: rgba(201,168,76,0.15);
  border-radius: 12px;
}

/* ---- ABOUT ---- */
.about-section {
  padding: 96px 0;
  background: rgba(15, 28, 8, 0.3);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-img-secondary {
  position: absolute;
  width: 55%;
  bottom: -30px;
  right: -30px;
  border-radius: 14px;
  border: 5px solid #FAF7F2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-text .section-title { text-align: left; }
.about-text p {
  color: #d4e0cc;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-creators {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.creator {
  display: flex;
  align-items: center;
  gap: 14px;
}
.creator-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2D5016;
  color: #FAF7F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.creator div { display: flex; flex-direction: column; }
.creator strong {
  font-family: 'Playfair Display', serif;
  color: #FFFFFF;
  font-size: 1rem;
}
.creator span {
  font-size: 0.8rem;
  color: #a8c09a;
}

/* ---- CONTACT ---- */
.contact-section {
  padding: 96px 0;
  background: rgba(15, 28, 8, 0.4);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: linear-gradient(180deg, #243d18 0%, #1e3313 100%);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.contact-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.facebook-icon { background: #1877F2; color: #fff; }
.instagram-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.email-icon { background: #2D5016; color: #FAF7F2; }

.contact-card h3 {
  font-size: 1.2rem;
  color: #FFFFFF;
}
.contact-card p {
  font-size: 0.9rem;
  color: #c8d4be;
}
.contact-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #C9A84C;
  margin-top: 4px;
  transition: color 0.2s;
}
.contact-card:hover .contact-card-link { color: #C9A84C; }

/* ---- FOOTER ---- */
.footer {
  background: #1a2e0a;
  color: rgba(250,247,242,0.8);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,247,242,0.1);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #FAF7F2;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(250,247,242,0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(250,247,242,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,242,0.7);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: #C9A84C;
  color: #1a2e0a;
}

.footer-links h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 18px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(250,247,242,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: #FAF7F2; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(250,247,242,0.4);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  color: rgba(250,247,242,0.4);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: #C9A84C; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .custom-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }
  .custom-image { order: -1; }
  .custom-badge { bottom: 10px; right: 10px; }
  .about-img-secondary { display: none; }
  .contact-cards { grid-template-columns: 1fr; max-width: 420px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(238, 240, 236, 0.97);
    flex-direction: column;
    padding: 20px 24px;
    gap: 20px;
    border-bottom: 2px solid rgba(201,168,76,0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .trust-items { gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .custom-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .signup-form .form-row { flex-direction: column; }
  .signup-form input { min-width: unset; width: 100%; }
  .signup-form .btn { width: 100%; }
}
