@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-bg: #1a1a1a;
    --secondary-bg: #222222;
    --accent: #c5a059;
    --accent-hover: #b38f4d;
    --text-main: #ffffff;
    --text-muted: #cccccc;
    --header-bg: #ffffff;
    --nav-text: #333333;
    --top-bar-bg: #111111;
    --max-width: 1200px;
    --section-padding: 80px 20px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--primary-bg);
    overflow-x: hidden;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.top-bar {
    background-color: var(--top-bar-bg);
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
}

.top-bar a {
    margin: 0 15px;
    color: var(--text-muted);
}

.top-bar a:hover {
    color: var(--accent);
}

header {
    background: var(--header-bg);
    color: var(--nav-text);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 15px;
}

.site-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    align-items: center;
}

nav li {
    margin-left: 25px;
    position: relative;
}

nav a {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}

nav a:hover, nav li.active a {
    color: var(--accent);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
}

nav li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-transform: none;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background: #f9f9f9;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-tagline {
    font-size: clamp(20px, 4vw, 32px);
    font-style: italic;
    color: var(--accent);
}

/* Sections */
section {
    padding: var(--section-padding);
}

.dark-section {
    background-color: var(--secondary-bg);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 18px;
}

.about-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--accent);
}

/* Advocates slider style */
.advocate-slider-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.advocate-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}
.advocate-card {
    flex: 0 0 280px;
    background: #222;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #333;
    scroll-snap-align: start;
}
.advocate-card h3 {
    margin-bottom: 10px;
    color: var(--accent);
}
.advocate-card p {
    color: var(--text-muted);
    font-size: 14px;
}
.slider-button {
    background: var(--accent);
    border: none;
    color: #111;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
}

/* FAQ styling */
.faq-item {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.faq-item h3 {
    margin-bottom: 10px;
    color: var(--accent);
}
.faq-item p {
    color: var(--text-muted);
}

/* Footer style */
footer {
    background: #111;
    padding: 60px 0 30px;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.social-icons a {
    font-size: 20px;
    margin-right: 15px;
}

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 30px;
    font-size: 14px;
}

/* Mobile Nav Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: 0.4s;
        z-index: 1001;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        text-align: center;
        background: #f4f4f4;
    }
}

/* Appointment Button */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-appointment {
    background: var(--accent);
    color: #111;
    font-size: 16px;
}

.btn-appointment:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* Floating Appointment Button - Mobile */
.floating-appointment-btn {
    display: none;
}

@media (max-width: 768px) {
    .floating-appointment-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        padding: 14px 30px;
        background: var(--accent);
        color: #111;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 4px 12px rgba(197, 160, 89, 0.4);
        transition: all 0.3s ease;
    }

    .floating-appointment-btn:active {
        transform: translateX(-50%) scale(0.95);
    }

    .floating-appointment-btn:hover {
        background: var(--accent-hover);
        box-shadow: 0 6px 16px rgba(197, 160, 89, 0.5);
    }

    footer .btn-appointment {
        display: none;
    }
}
