/* 1. VARIABLES & RESET */
:root {
  --bg-color: #fcfaf7;
  --primary-dark: #1a2e26;
  --accent-gold: #c5a35d;
  --text-main: #2d2d2d;
  --white: #ffffff;
  --transition: 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* 2. NAVIGATION (Updated for Logo + Text) */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 8%;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.nav-logo-img {
  height: 80px;
  width: auto;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.6rem;
  color: var(--primary-dark);
  line-height: 1;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--accent-gold);
  letter-spacing: 4px;
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
}

nav a:hover {
  color: var(--accent-gold);
}

/* 3. HERO SECTION */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2c4a3e 100%);
  color: var(--white);
  margin: 10px;
  border-radius: 0 0 40px 40px;
  padding: 0 10%;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  font-weight: 900;
  letter-spacing: -2px;
}

.hero p {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
}

.btn {
  padding: 1.2rem 3rem;
  background: var(--accent-gold);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: var(--transition);
}

.btn:hover {
  transform: scale(1.05);
  background: var(--white);
  color: var(--primary-dark);
}

/* 4. ABOUT & FEATURES SECTIONS */
.about-section,
.features-section {
  padding: 100px 10%;
  background-color: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
}

.since-tag,
.subtitle {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h2 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  padding: 40px 25px;
  background: var(--bg-color);
  border-radius: 15px;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
}

.feature-card:hover {
  background: var(--white);
  border-color: var(--accent-gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* 5. GALLERY SECTION */
.gallery {
  padding: 5rem 5%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

.card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

/* 6. CONTACT SECTION */
.contact-section {
  padding: 80px 5%;
  background-color: var(--primary-dark);
  color: var(--white);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-link {
  display: block;
  color: #ffd700 !important;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
  transition: 0.3s;
}

.contact-link:hover {
  color: var(--white) !important;
  text-decoration: underline;
}

.contact-form-wrapper {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  color: #333;
}

/* 7. MODAL (Lightbox) */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 46, 38, 0.95);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80vh;
  margin-top: 50px;
}

/* 8. MOBILE RESPONSIVENESS */
@media (max-width: 900px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  nav ul {
    gap: 1rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
  }

  .card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .hero {
    height: 60vh;
  }
}

/* --- MOBILE STYLES (For screens smaller than 768px) --- */
@media (max-width: 768px) {
  /* Keep Logo and Text on the same line */
  .navbar {
    flex-direction: column; /* This stacks the Logo and the Menu Links */
    padding: 10px 5%;
    gap: 10px;
  }

  .logo-link {
    display: flex;
    flex-direction: row; /* Forces Logo and Name onto one line */
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px; /* Tighten space for mobile */
  }

  /* Shrink the icon so it fits on one line with text */
  .nav-logo-img {
    height: 45px !important;
  }

  /* Shrink the Text sizes for mobile screens */
  .brand-name {
    font-size: 1.2rem !important;
    letter-spacing: 1px;
  }

  .brand-sub {
    font-size: 0.6rem !important;
    letter-spacing: 2px;
  }

  /* Menu Links layout */
  .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }

  .nav-links a {
    font-size: 0.75rem;
  }
}
/* --- CTA BRIDGE --- */
.cta-bridge {
  background-color: var(--primary-dark);
  padding: 100px 10%;
  text-align: center;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-subtitle {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.cta-bridge h2 {
  color: white !important; /* Forces white on dark background */
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-line {
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 0 auto 30px;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.btn-gold {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--accent-gold);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-gold:hover {
  background-color: white;
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* --- MOBILE TWEAK --- */
@media (max-width: 768px) {
  .cta-bridge {
    padding: 60px 5%;
  }
}

.site-footer {
  background-color: var(--primary-dark);
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}

.footer-content span {
  color: var(--accent-gold);
  font-weight: 700;
  margin: 0 5px;
}

/* MOBILE ADJUSTMENT */
@media (max-width: 600px) {
  .footer-content p {
    font-size: 0.75rem;
    padding: 0 20px;
    line-height: 1.5;
  }
}
/* Container for the logo and the text wrapper */
.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

/* Vertical stack for the Title and the Subtitle */
.brand-wrapper {
  display: flex;
  flex-direction: column; /* This keeps them vertically stacked */
  justify-content: center;
}

/* Main Title styling */
.brand-name {
  font-weight: 800;
  font-size: 1.6rem;
  color: #1a2e26;
  letter-spacing: 2px;
  line-height: 1.2;
  white-space: nowrap;
}

/* New Subtitle styling */
.brand-tagline {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 40px !important;
  }
  .brand-name {
    font-size: 1.1rem !important;
  }
  .brand-tagline {
    font-size: 0.6rem !important;
  }
}
