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

/* ===== NEW DARK & LIGHT VARIABLES ===== */
:root {
  --primary-gold: #D4AF37;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 100%);
  
  --dark-main: #1A1A1A;        /* Deep Charcoal */
  --dark-surface: #262626;     /* Lightening the dark for contrast */
  
  --light-main: #FFFFFF;       /* Pure White Background */
  --light-surface: #F8F9FA;    /* Soft Grey for Sections */
  
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --text-muted: #6C757D;
  
  --accent-blue: #0A2342;      /* Midnight Blue for depth */
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --header-height: 80px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-main);
  color: var(--text-dark);
  line-height: 1.7;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 25px;
}

section {
  padding: 100px 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.3;
}

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

ul { list-style: none; }

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

/* ===== SHARED UI COMPONENTS ===== */
.section-tag {
  color: var(--primary-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 15px;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 601;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-dark {
  background-color: var(--dark-main);
  color: var(--text-light);
}

.btn-dark:hover {
  background-color: var(--primary-gold);
  color: var(--dark-main);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--dark-main);
  color: var(--dark-main);
}

.btn-outline:hover {
  background: var(--dark-main);
  color: #fff;
}

/* ===== MODULAR HEADER (DARK) ===== */
.header {
  height: var(--header-height);
  background-color: var(--dark-main);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.header.scrolled {
  height: 70px;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-heading);
  color: var(--primary-gold);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav__list {
  display: flex;
  gap: 40px;
}

.nav__link {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  position: relative;
}

.nav__link:hover, .nav__link.active {
  color: var(--primary-gold);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: var(--transition);
}

.nav__link:hover::after, .nav__link.active::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--primary-gold);
  cursor: pointer;
}

/* ===== HERO (SPLIT THEME) ===== */
.page-hero {
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 80px;
  background: linear-gradient(to right, var(--dark-main) 50%, var(--light-surface) 50%);
  color: var(--text-light);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero__text h1 {
  font-size: 4rem;
  margin-bottom: 25px;
}

.hero__text h1 span {
  color: var(--primary-gold);
}

.hero__text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

.hero__img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  transform: translateX(30px);
}

/* ===== CATEGORIES / FEATURED (LIGHT) ===== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feat-card {
  padding: 40px 30px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--dark-main);
  transition: var(--transition);
}

.feat-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--primary-gold);
}

.feat-icon {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

/* ===== FOOTER (DARK) ===== */
.footer {
  background-color: var(--dark-main);
  color: #fff;
  padding-top: 100px;
  padding-bottom: 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 80px;
}

.footer__title {
  color: var(--primary-gold);
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.footer__links li { margin-bottom: 12px; }

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.footer__links a:hover {
  color: var(--primary-gold);
  padding-left: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

/* ===== PAGE SPECIFIC LAYOUTS ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.contact-form-box {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 992px) {
  .contact-grid, .about-intro-grid { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  .contact-form-box { padding: 30px; }
  .about-features { grid-template-columns: 1fr 1fr; }
  
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__img { transform: none; margin-top: 40px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 2.2rem; }
  .hero__text h1 { font-size: 3rem; }
}

@media screen and (max-width: 768px) {
  section { padding: 60px 0; }
  
  .nav__list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-main);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: 0.5s;
    gap: 30px;
  }
  
  .nav__list.show-menu { right: 0; }
  .nav__toggle { display: block; z-index: 1001; }
  
  .page-hero { 
    background: var(--dark-main); 
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero__text h1 { font-size: 2.4rem; }
  .hero__text p { font-size: 1rem; margin-bottom: 30px; }
  
  .feat-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  
  .section-title { font-size: 1.8rem; }
}

@media screen and (max-width: 480px) {
  .hero__text h1 { font-size: 2rem; }
  .btn { width: 100%; justify-content: center; }
  .hero__text div { flex-direction: column; }
}
