:root {
  /* Brand Colors */
  --primary-color: #FACC15; /* Warm Yellow */
  --secondary-color: #452B1F; /* Chocolate Brown */
  --bg-color: #FDFBF7; /* Cream White */
  --text-dark: #1A1A1A; /* Matte Black */
  --text-light: #FDFBF7;
  --accent-gold: #D4AF37; /* Golden Highlights */
  --soft-beige: #F5EFEB;

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
  --glass-bg: rgba(253, 251, 247, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
}

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

ul {
  list-style: none;
}

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

/* Typography Utility */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-brown { color: var(--secondary-color); }
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-padding {
  padding: 5rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 600;
}
.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  background: transparent;
}
.btn-outline:hover {
  background-color: var(--secondary-color);
  color: var(--bg-color);
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
}

/* Navbar */
/* Navbar - Dynamic Island Style */
.navbar {
  position: fixed;
  top: 25px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: transparent !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 35px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  max-width: 1300px;
  width: 95%;
  margin: 0 auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  top: 15px;
}

.navbar.scrolled .container {
  width: 90%;
  padding: 8px 30px;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo span {
  color: var(--primary-color);
}
.nav-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  flex-shrink: 1;
}
.nav-links li a {
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: var(--transition-fast);
  padding: 0.3rem 0;
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-color) !important;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-normal);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.navbar .btn-outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.navbar .btn-outline:hover {
  background: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
}
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    top: 10px;
  }
  .navbar .container {
    padding: 6px 16px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  .logo {
    font-size: 1.1rem;
    gap: 0.4rem;
  }
  .logo img {
    height: 35px !important;
    width: 35px !important;
  }

  .nav-links, .nav-actions {
    display: none !important;
  }
  .hamburger {
    display: block;
    color: #fff;
    font-size: 1.3rem;
  }
  
  .nav-links.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
    gap: 1.2rem;
    text-align: center;
  }
  .nav-links.mobile-active li {
    width: 100%;
  }
  .nav-links.mobile-active li a {
    font-size: 1.2rem;
    color: #fff;
    width: 100%;
    display: block;
    text-align: center;
  }
}
