@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* Modern Premium Indian Palette */
  --color-primary: #263F34;       /* Deep Indian Forest Green */
  --color-bg: #F5EBDD;            /* Warm Ivory (Primary Background) */
  --color-bg-sec: #E8D8BE;        /* Natural Sand (Secondary Background) */
  --color-text: #30261F;          /* Dark Espresso (Text) */
  --color-accent-1: #A85D40;      /* Muted Terracotta */
  --color-accent-2: #A9854A;      /* Antique Gold */
  
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Layout & Utility */
  --radius-sm: 4px;
  --radius-md: 8px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: clip;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Subtle Handmade Paper Texture - Extremely subtle (10%) */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  background-repeat: repeat;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: multiply;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-primary);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Navigation (Modern, Thin, Elegant) --- */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  transition: var(--transition);
  background: transparent;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(245, 235, 221, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(169, 133, 74, 0.2); /* Thin gold/green divider */
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  font-family: var(--font-sans);
  align-items: center;
}

.nav-links > a {
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links > a::after {
  content: '';
  position: absolute;
  width: 0; height: 1px;
  bottom: 0; left: 0;
  background-color: var(--color-accent-2);
  transition: var(--transition);
}

.nav-links > a:hover::after,
.nav-links > a.active::after {
  width: 100%;
}

.nav-btns {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-primary);
  cursor: pointer;
}

/* --- Buttons (Premium Custom) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md); /* Medium corner radius, not pill */
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

/* Primary: Deep Indian Green, Cream text, Subtle gold border */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border: 1px solid var(--color-accent-2);
}

.btn-primary:hover {
  background-color: #1a2c24; /* Darker green */
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(38, 63, 52, 0.15);
}

/* Secondary: Warm ivory, Deep green text, Thin green/gold border */
.btn-outline {
  background-color: var(--color-bg);
  color: var(--color-primary);
  border: 1px solid rgba(169, 133, 74, 0.6); /* Gold-ish border */
}

.btn-outline:hover {
  background-color: var(--color-accent-2);
  color: #FFFFFF;
  border-color: var(--color-accent-2);
}

/* --- Typography Hierarchy --- */
.text-overline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-accent-1);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.text-body {
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.8;
  font-weight: 300;
}

/* --- Utilities --- */
.section {
  padding: 10rem 0;
}

.bg-sand {
  background-color: var(--color-bg-sec);
}

.bg-green {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

.bg-green h2, .bg-green h3, .bg-green p {
  color: var(--color-bg);
}

/* Subtle Indian Botanical / Ornamental Divider */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
}
.divider-ornament::before,
.divider-ornament::after {
  content: "";
  height: 1px;
  width: 60px;
  background-color: var(--color-accent-2);
  opacity: 0.3;
}
.divider-ornament-icon {
  margin: 0 1.5rem;
  color: var(--color-accent-2);
  font-size: 1.2rem;
  opacity: 0.7;
}

/* --- Premium Photography --- */
.premium-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(48, 38, 31, 0.08);
}

.premium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  display: block;
}

.premium-image:hover img {
  transform: scale(1.03);
}

/* --- Animations --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Footer --- */
footer {
  background-color: var(--color-primary);
  color: var(--color-bg);
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
}

/* Very subtle Indian pattern */
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' opacity='0.02'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z' fill='%23F5EBDD'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent-2);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col p, .footer-col li, .footer-col a {
  color: rgba(245, 235, 221, 0.7);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(169, 133, 74, 0.15);
  color: rgba(245, 235, 221, 0.5);
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
}

/* --- Footer Form --- */
.footer-form input,
.footer-form textarea {
    width: 100%;
    background-color: rgba(245, 235, 221, 0.05);
    border: 1px solid rgba(169, 133, 74, 0.3);
    color: var(--color-bg);
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(245, 235, 221, 0.4);
}

.footer-form input:focus,
.footer-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-2);
    background-color: rgba(245, 235, 221, 0.1);
}

.footer-form textarea {
    resize: vertical;
}

/* --- Responsive Architecture --- */
@media (max-width: 1024px) {
  .nav-links > a { display: none; }
  .nav-btns { display: none; }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background-color: var(--color-bg);
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(48, 38, 31, 0.1);
    border-bottom: 1px solid rgba(169, 133, 74, 0.2);
  }
  
  .nav-links.active > a {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .nav-links.active .nav-btns {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 2rem 0 0 0;
  }
  
  .nav-links.active .nav-btns .btn { width: 100%; }
  
  .mobile-menu-btn { display: block; }
}

@media (max-width: 992px) {
  .footer-content { grid-template-columns: 1fr 1fr; gap: 3rem; }
  
  .editorial-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 6rem 0; }
}
