
:root {
--primary-gold: #D4A751;
--secondary-gold: #F4E5A3;
--dark-gold: #B8932E;
--light-gold: #FDF9E8;
--cream: #FEFBF2;
--dark-text: #2C2C2C;
--gray-text: #6B7280;
--white: #FFFFFF;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
color: var(--dark-text);
line-height: 1.6;
}

/* Header */
.navbar {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 2px 20px rgba(212, 167, 81, 0.1);
padding: 1rem 0;
transition: all 0.3s ease;
}

.navbar-brand {
font-weight: 700;
font-size: 1.5rem;
color: var(--dark-gold) !important;
text-decoration: none;
}

.navbar-nav .nav-link {
color: var(--dark-text) !important;
font-weight: 500;
margin: 0 0.5rem;
transition: all 0.3s ease;
position: relative;
}

.navbar-nav .nav-link:hover {
color: var(--primary-gold) !important;
}

.navbar-nav .nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 50%;
background: var(--primary-gold);
transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
width: 100%;
left: 0;
}

/* Hero Section */
 .hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(212, 167, 81, 0.1) 0%, transparent 70%);
animation: float 6s ease-in-out infinite;
}

@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
position: relative;
z-index: 2;
}

.hero h1 {
font-size: 3.5rem;
font-weight: 700;
color: var(--dark-text);
margin-bottom: 1.5rem;
line-height: 1.2;
}

.hero-subtitle {
font-size: 1.25rem;
color: var(--gray-text);
margin-bottom: 2rem;
font-weight: 400;
}

.btn-primary-custom {
background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
border: none;
padding: 12px 30px;
font-weight: 600;
border-radius: 50px;
color: white;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(212, 167, 81, 0.3);
}

.btn-primary-custom:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(212, 167, 81, 0.4);
color: white;
}

.btn-outline-custom {
border: 2px solid var(--primary-gold);
color: var(--primary-gold);
padding: 10px 28px;
font-weight: 600;
border-radius: 50px;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
background: transparent;
}

.btn-outline-custom:hover {
background: var(--primary-gold);
color: white;
transform: translateY(-2px);
}

.logo-container {
text-align: center;
position: relative;
}

.logo-container img {
max-width: 400px;
height: auto;
filter: drop-shadow(0 10px 30px rgba(212, 167, 81, 0.3));
animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
50%, 100% { transform: translateY(0px); }
50% { transform: translateY(30px); }
}

/* Features Section */
.features {
padding: 120px 0;
background: var(--white);
position: relative;
}

.features::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100px;
background: linear-gradient(to bottom, var(--light-gold), var(--white));
}

.section-title {
text-align: center;
margin-bottom: 5rem;
}

.section-title h2 {
font-size: 2.75rem;
font-weight: 700;
color: var(--dark-text);
margin-bottom: 1.5rem;
letter-spacing: -0.02em;
}

.section-title p {
font-size: 1.15rem;
color: var(--gray-text);
max-width: 650px;
margin: 0 auto;
line-height: 1.7;
}

.feature-card {
background: var(--white);
border-radius: 24px;
padding: 3rem 2.5rem;
text-align: center;
box-shadow: 0 8px 30px var(--shadow-light);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
height: 100%;
border: 1px solid rgba(212, 167, 81, 0.1);
position: relative;
overflow: hidden;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
transform: scaleX(0);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 50px var(--shadow-medium);
}

.feature-card:hover::before {
transform: scaleX(1);
}

.feature-icon {
width: 90px;
height: 90px;
margin: 0 auto 2rem;
background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 100%);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.2rem;
color: white;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}

.feature-icon::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
opacity: 0;
transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
transform: rotate(5deg) scale(1.1);
}

.feature-card:hover .feature-icon::before {
opacity: 1;
}

.feature-icon i {
position: relative;
z-index: 1;
}

.feature-card h4 {
font-size: 1.35rem;
font-weight: 600;
margin-bottom: 1.25rem;
color: var(--dark-text);
letter-spacing: -0.01em;
}

.feature-card p {
color: var(--gray-text);
font-size: 1rem;
line-height: 1.6;
}

/* Community Section */
.community {
padding: 100px 0;
background: linear-gradient(135deg, var(--light-gold) 0%, var(--secondary-gold) 100%);
}

.stats-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.stat-item {
text-align: center;
background: rgba(255, 255, 255, 0.8);
padding: 2rem 1rem;
border-radius: 15px;
backdrop-filter: blur(10px);
}

.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--dark-gold);
display: block;
}

.stat-label {
font-size: 0.9rem;
color: var(--gray-text);
font-weight: 500;
margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
padding: 100px 0;
background: var(--dark-text);
color: white;
text-align: center;
}

.cta-section h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
}

.cta-section p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.9;
}

/* Footer */
  .footer {
background: linear-gradient(135deg, var(--dark-text) 0%, #1a1a1a 100%);
color: white;
padding: 4rem 0 1.5rem;
}

  .footer-content {
  display: flex;
  justify-content: space-between; 
  flex-wrap: nowrap; 
  gap: 2rem; 
}

.footer-section {
  flex: 1; 
  min-width: 180px;
}


.footer-section h5 {
color: var(--secondary-gold);
margin-bottom: 1.5rem;
font-weight: 600;
font-size: 1.1rem;
}

.footer-section a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
display: block;
margin-bottom: 0.75rem;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
padding: 0.25rem 0;
}

.footer-section a:hover {
color: var(--secondary-gold);
transform: translateX(5px);
}

.footer-bottom {
border-top: 2px solid rgba(255, 255, 255, 0.15);
padding-top: 1rem;
text-align: center;
color: rgba(255, 255, 255, 0.6);
}

 /* Responsive */
@media (max-width: 1024px) {
.hero {
padding: 2rem 0;
}

.hero h1 {
font-size: 3rem;
}

.section-title h2 {
font-size: 2.5rem;
}
}

@media (max-width: 768px) {
.hero {
min-height: 80vh;
padding: 4rem 0 2rem;
}

.hero .row {
flex-direction: column-reverse;
}

.hero-content {
text-align: center;
margin-top: 2rem;
}

.hero h1 {
font-size: 2.2rem;
line-height: 1.3;
}

.hero-subtitle {
font-size: 1.05rem;
margin-bottom: 1.5rem;
}

.logo-container {
margin-bottom: 1rem;
}

.logo-container img {
max-width: 200px;
}

.section-title h2 {
font-size: 2rem;
line-height: 1.3;
}

.section-title p {
font-size: 1rem;
padding: 0 1rem;
}

.features, .community {
padding: 60px 0;
}

.feature-card {
padding: 2rem 1.5rem;
margin-bottom: 1rem;
}

.feature-icon {
width: 70px;
height: 70px;
font-size: 1.8rem;
margin-bottom: 1.5rem;
}

.feature-card h4 {
font-size: 1.2rem;
}

.feature-card p {
font-size: 0.95rem;
}

.stats-container {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}

.stat-item {
padding: 2rem 1rem;
}

.stat-number {
font-size: 2.2rem;
}

.stat-label {
font-size: 0.9rem;
}

.cta-section {
padding: 80px 0;
}

.cta-section h2 {
font-size: 2rem;
line-height: 1.3;
}

.cta-section p {
font-size: 1.05rem;
padding: 0 1rem;
}

.btn-primary-custom, .btn-outline-custom {
display: block !important;
width: fit-content;
margin: 0 auto 1rem auto !important;
}

.footer-content {
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}

.navbar-toggler {
border: none;
padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
box-shadow: none;
}
}

@media (max-width: 576px) {
.hero {
min-height: 70vh;
padding: 3rem 0 1rem;
}

.hero h1 {
font-size: 1.8rem;
margin-bottom: 1rem;
}

.hero-subtitle {
font-size: 1rem;
margin-bottom: 1.5rem;
}

.logo-container img {
max-width: 160px;
}

.section-title h2 {
font-size: 1.75rem;
}

.features, .community, .cta-section {
padding: 50px 0;
}

.section-title {
margin-bottom: 3rem;
}

.feature-card {
padding: 1.5rem 1rem;
}

.feature-icon {
width: 60px;
height: 60px;
font-size: 1.5rem;
margin-bottom: 1rem;
}

.feature-card h4 {
font-size: 1.1rem;
margin-bottom: 0.75rem;
}

.feature-card p {
font-size: 0.9rem;
line-height: 1.5;
}

.stats-container {
grid-template-columns: 1fr;
gap: 1rem;
}

.stat-item {
padding: 1.5rem 1rem;
}

.stat-number {
font-size: 2rem;
}

.cta-section h2 {
font-size: 1.75rem;
}

.cta-section p {
font-size: 1rem;
}

.btn-primary-custom {
padding: 12px 24px;
font-size: 0.95rem;
}

.footer-content {
grid-template-columns: 1fr;
gap: 1.5rem;
}

.footer-section {
text-align: center;
}

.navbar-brand {
font-size: 1.3rem;
}

.navbar-brand img {
height: 35px !important;
}
}

::-webkit-scrollbar {
  width: 12px; 
}

::-webkit-scrollbar-track {
  background: #ffffff00; 
}

::-webkit-scrollbar-thumb {
  background-color: #FFD700; 
  border-radius: 6px;
  border: 3px solid #1717172c; 
}

::-webkit-scrollbar-thumb:hover {
  background-color: #FFC300; 
}

/* Scroll animations */
.fade-in {
opacity: 0;
transform: translateY(30px);
transition: all 0.6s ease;
}

.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
  