/* Global Styles for Indian Royal Exports */
/* Theme Variables */
:root {
  --primary-green: #4CAF50;
  --earthy-brown: #8D6E63;
  --gold-accent: #FFD700;
  --white: #FFFFFF;
  --soft-gray: #F5F5F5;
  --text-dark: #333333;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--soft-gray);
  overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navigation */
/* .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-green);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar a:hover {
  color: var(--gold-accent);
} */
/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* INNER CONTAINER */
.nav-container {
  max-width: 1600px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #0f3d2e;
  letter-spacing: 1px;
}

.logo span {
  color: #0f3d2e;
  font-weight:bold ;
}

.logo strong {
  color: #0f3d2e; /* gold accent */
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  color: #0f3d2e;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

/* UNDERLINE ANIMATION */
.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #d4af37;
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #1f7a5a;
}

/* ORDER BUTTON (CTA) */

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    gap: 1.2rem;
  }

  .logo {
    font-size: 1.3rem;
  }
}

/* Footer */
.footer {
  background: var(--earthy-brown);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.footer .social-icons {
  margin: 1rem 0;
}

.footer .badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  background: var(--primary-green);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  transition: var(--transition);
  display: inline-block;
}

.btn:hover {
  background: var(--gold-accent);
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }
}