/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #800220;
    --secondary: #e4d5d6;
    --accent: #b1707e;
    --white: #fcfdfc;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.cta-nav:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.cta-nav::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
}

/* Page Header */
.page-header {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
    text-align: center;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 2, 32, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

/* Footer */
 .footer { background: #800220 !important; color: #e4d5d6 !important; padding: 40px 0 0 !important; }
        .footer-content { display: grid !important; grid-template-columns: 1.8fr 1fr 1fr !important; gap: 28px !important; padding-bottom: 28px !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; margin-bottom: 0 !important; }
        .footer-brand { max-width: 240px !important; }
        .footer-logo { height: 40px !important; width: 40px !important; margin-bottom: 10px !important; display: block !important; }
        .tagline { font-family: 'Playfair Display', serif !important; font-size: 0.92rem !important; color: #fff !important; margin-bottom: 6px !important; }
        .footer-description { color: rgba(228,213,214,0.7) !important; font-size: 0.8rem !important; line-height: 1.6 !important; margin-bottom: 14px !important; }
        .footer-socials { display: flex !important; gap: 12px !important; }
        .footer-social-link { color: rgba(228,213,214,0.7) !important; font-size: 0.8rem !important; text-decoration: none !important; }
        .footer-social-link:hover { color: #fff !important; }
        .footer-social-sep { color: rgba(255,255,255,0.25) !important; }
        .footer-column h3 { font-family: 'Playfair Display', serif !important; font-size: 0.9rem !important; font-weight: 600 !important; color: #fff !important; margin-bottom: 12px !important; padding-bottom: 0 !important; border-bottom: none !important; position: static !important; }
        .footer-column h3::after { display: none !important; }
        .footer-column ul { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex !important; flex-direction: column !important; gap: 7px !important; }
        .footer-column ul li a { font-size: 0.8rem !important; color: rgba(228,213,214,0.65) !important; text-decoration: none !important; padding: 0 !important; display: block !important; }
        .footer-column ul li a:hover { color: #fff !important; }
        .footer-bottom { padding: 14px 0 !important; display: flex !important; justify-content: space-between !important; align-items: center !important; flex-wrap: wrap !important; gap: 8px !important; border-top: none !important; text-align: left !important; }
        .footer-bottom p { font-size: 0.75rem !important; margin: 0 !important; }
        .footer-bottom a { color: rgba(228,213,214,0.6) !important; text-decoration: none !important; font-size: 0.75rem !important; }
        .footer-bottom a:hover { color: #fff !important; }
        @media (max-width: 768px) {
            .footer-content { grid-template-columns: 1fr !important; gap: 20px !important; }
            .footer-bottom { flex-direction: column !important; text-align: center !important; }
        }

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
    }
}


