/* ============================================
BASE SHARED STYLES
============================================ */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-pink: #f5e6e8;
--primary-rose: #e8c4c8;
--secondary-mint: #d4e8d9;
--secondary-sage: #b8d4c1;
--accent-gold: #f4e4bc;
--accent-cream: #faf8f3;
--text-charcoal: #2c2c2c;
--text-slate: #4a5568;
--text-light: #718096;
--white: #ffffff;
--black: #000000;

--gradient-primary: linear-gradient(135deg, #f5e6e8 0%, #d4e8d9 50%, #f4e4bc 100%);
--gradient-hero: linear-gradient(135deg, rgba(245, 230, 232, 0.95) 0%, rgba(212, 232, 217, 0.95) 50%, rgba(244, 228, 188, 0.95) 100%);
--gradient-text: linear-gradient(135deg, #d4a574 0%, #c8966a 100%);

--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
--shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

--spacing-xs: 0.5rem;
--spacing-sm: 1rem;
--spacing-md: 2rem;
--spacing-lg: 4rem;
--spacing-xl: 6rem;

--transition-fast: 0.2s ease;
--transition-base: 0.3s ease;
--transition-slow: 0.5s ease;
}

html {
scroll-behavior: smooth;
font-size: 16px;
}

body {
font-family: 'Poppins', sans-serif;
color: var(--text-charcoal);
line-height: 1.7;
overflow-x: hidden;
background: var(--white);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 700;
line-height: 1.2;
color: var(--text-charcoal);
}

h1 { font-size: clamp(1.5rem, 5vw, 3rem) }
h2 { font-size: clamp(2rem, 4vw, 1.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
font-size: 1rem;
color: var(--text-slate);
line-height: 1.8;
}

/* Navigation */
.navbar {
position: fixed;
top: 0;
width: 100%;
/* background: rgba(250, 248, 243, 0.95); */
background: #395137;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
z-index: 1000;
transition: all var(--transition-base);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar::before {
content: '';
position: absolute;
inset: 0;
background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.02) 1px, transparent 0);
background-size: 20px 20px;
pointer-events: none;
opacity: 0.5;
}



.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 1rem 40px;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
position: relative;
z-index: 1;
}

.logo {
display: flex;
align-items: center;
}

.logo-link {
font-family: 'Poppins', sans-serif;
font-size: 1.9rem;
font-weight: 700;
color: var(--white);
text-decoration: none;
letter-spacing: -0.5px;
transition: opacity var(--transition-base);
}

.logo-link:hover {
opacity: 0.7;
}

.nav-menu {
display: flex;
list-style: none;
gap: 3.5rem;
align-items: center;
justify-self: center;
margin: 0;
padding: 0;
}

.nav-link {
text-decoration: none;
color: var(--white);
font-weight: 300;
font-size: 0.95rem;
transition: opacity var(--transition-base);
letter-spacing: 0.5px;
}

.nav-link:hover {
opacity: 0.6;
}

.nav-link.active {
font-weight: 400;
opacity: 1;
}

.hamburger {
display: none;
flex-direction: column;
gap: 8px;
cursor: pointer;
padding: 0.5rem;
justify-self: end;
z-index:9999;
}

.hamburger span {
width: 32px;
height: 2.5px;
background: var(--white);
border-radius: 2px;
transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
transform: rotate(-45deg) translate(4px, -4px);
}
.nav-container .social-links {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 10px;
}

.nav-container .social-links .social-icon-wrap {
display: flex;
gap: 1rem;
}

.nav-container .social-links a.social-link {
display: flex;
width: auto;
height: auto;
justify-content: center;
align-items: center;
text-decoration: none;
background: #eeebe5;
border-radius: 10px;
gap:5px;
padding: 5px 10px;
font-size: 12px;
color:var(--text-charcoal);
}

.nav-container .social-links a.social-link i {
font-size: 20px;
color: #2c2c2c;
}

.nav-container .social-links a.social-link:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}
.nav-container .social-links a.social-link:hover i {
    color: var(--white);
}
.social-links.mobile {
display: none;
}

section.page-header {
margin-top: 120px;
padding-bottom: 50px;;
}


/* Section headings */
.section-header {
text-align: center;
margin-bottom: 4rem;
}

.section-label {
display: inline-block;
padding: 0.5rem 1.5rem;
background: var(--primary-pink);
border-radius: 50px;
font-size: 0.875rem;
font-weight: 500;
color: var(--text-slate);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 1rem;
}

.section-title {
margin-bottom: 1rem;
}

.section-subtitle {
font-size: 1.125rem;
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
}

/* CTA Section */
.cta-section {
padding: var(--spacing-xl) 0;
background: var(--gradient-hero);
text-align: center;
}

.cta-content h2 {
margin-bottom: 1rem;
}

.cta-content p {
font-size: 1.25rem;
color: var(--text-light);
margin-bottom: 2.5rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.cta-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}

.cta-btn {
display: inline-flex;
align-items: center;
padding: 1rem 2.5rem;
font-family: 'Poppins', sans-serif;
font-size: 1rem;
font-weight: 600;
text-decoration: none;
border-radius: 50px;
transition: all var(--transition-base);
text-transform: uppercase;
letter-spacing: 1px;
}

.cta-btn.primary {
background: var(--text-charcoal);
color: var(--white);
box-shadow: var(--shadow-md);
}

.cta-btn.primary:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
cursor: pointer;
background: #395137;
color: #fff;
}

.cta-btn.secondary {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
color: var(--text-charcoal);
border: 2px solid rgba(44, 44, 44, 0.1);
}

.cta-btn.secondary:hover {
background: var(--white);
transform: translateY(-3px);
box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
background: var(--text-charcoal);
color: var(--white);
padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}

.footer-logo {
display: flex;
align-items: baseline;
gap: 0.5rem;
margin-bottom: 1rem;
}

.footer-logo .logo-link {
font-family: 'Poppins', sans-serif;
font-size: 1.25rem;
font-weight: 700;
color: var(--white);
text-decoration: none;
text-transform: lowercase;
letter-spacing: -0.5px;
transition: opacity var(--transition-base);
}

.footer-logo .logo-link:hover {
opacity: 0.7;
}

.footer-col p {
color: rgba(255, 255, 255, 0.7);
line-height: 1.7;
}

.footer-col h4 {
color: var(--white);
margin-bottom: 1.5rem;
font-size: 1.25rem;
}

.footer-col ul {
list-style: none;
padding: 0;
}

.footer-col ul li {
margin-bottom: 0.75rem;
}

.footer-col ul li a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: color var(--transition-base);
}

.footer-col ul li a:hover {
color: var(--white);
}

.footer .social-links {
display: flex;
gap: 1rem;
}

.footer .social-link {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.1);
color: var(--white);
border-radius: 50%;
text-decoration: none;
font-size: 1.25rem;
transition: all var(--transition-base);
}

.footer .social-link:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-3px);
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
color: rgba(255, 255, 255, 0.6);
font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Responsive */
@media (max-width: 1200px) {
.container {
padding: 0 30px;
}
}

@media (max-width: 968px) {
.nav-container {
grid-template-columns: 1fr auto;
padding: 1.25rem 30px;
}
.nav-link:hover{
letter-spacing: 1.5px;
}
.nav-menu {
position: fixed;
left: -100%;
top: 0;
flex-direction: column;
background: #395137;
backdrop-filter: blur(20px);
width: 100%;
height: 100vh;
text-align: center;
transition: left var(--transition-base);
box-shadow: var(--shadow-xl);
padding: 6rem 0 2rem;
gap: 2.5rem;
z-index: 1000;
}

.nav-menu.active {
left: 0;
}

.hamburger {
display: flex;
}
.nav-container .social-links {
display:none;
}

.social-links.mobile {
display: block;
}
}

@media (max-width: 768px) {
  section.page-header {
    margin-top: 97px;
    padding-bottom: 30px;
  }

  .page-header-content {
    padding: 0 1rem;
  }

  .page-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 0.75rem;
  }

  .page-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    line-height: 1.6;
  }

  .page-label {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  section.page-header {
    margin-top: 70px;
    padding-bottom: 25px;
  }

  .page-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 0.5rem;
  }

  .page-subtitle {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    line-height: 1.5;
  }

  .page-label {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
  }

  .nav-container {
    padding: 1rem 20px;
  }

  .logo-link {
    font-size: 1.6rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0.9rem 15px;
  }

  .logo-link {
    font-size: 1.4rem;
  }

  section.page-header {
    margin-top: 65px;
    padding-bottom: 20px;
  }

  .page-title {
    font-size: clamp(1.3rem, 8vw, 1.8rem);
  }

  .page-subtitle {
    font-size: clamp(0.8rem, 4vw, 0.95rem);
  }
}

