/* Main Style for Zega Gabinet - Inspired by V Line Cosmetic Clinic */

:root {
    /* Color Palette */
    --color-primary: #1a1a1a;
    /* Dark Black/Gray for text */
    --color-secondary: #c5a47e;
    /* Gold/Beige for accents - Vline style */
    --color-background: #ffffff;
    /* White background */
    --color-light-gray: #f9f9f9;
    /* Light gray for section backgrounds */
    --color-dark-overlay: rgba(0, 0, 0, 0.4);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 80px;

    /* Transitions */
    --transition: all 0.3s ease-in-out;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-primary);
    background-color: var(--color-background);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Elegant thin look */
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: var(--space-md);
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-secondary);
    margin: var(--space-sm) auto 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    /* Adjust based on logo aspect ratio */
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--color-primary);
}

nav a:hover {
    color: var(--color-secondary);
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    margin-top: 0;
    /* Since header is fixed */
    padding-bottom: 3vh;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Darken video for text readability */
    z-index: -1;
}

.seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* .hero-content h1 {
    color: #9B8448;
    font-size: 2.2rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
} */

.hero-content p {
    font-size: 1rem;
    margin-bottom: 40px;
    letter-spacing: 3px;
    font-weight: 300;
    text-transform: uppercase;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section General */
section {
    padding: var(--space-xl) 0;
}

/* About Section */
.about-section {
    background: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid */
.services-section {
    background: var(--color-light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--color-secondary);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    display: block;
}

/* Footer (Vline Style) */
footer {
    background: #111;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-col p,
.footer-col a {
    color: #aaa;
    line-height: 1.8;
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding-top: 20px;
    color: #555;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-container nav {
        display: none;
        /* Hide default nav */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-container nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Pricing Section */
.pricing-section {
    background-color: #fff;
    padding: var(--space-xl) 0;
}

.pricing-category {
    margin-bottom: 60px;
}

.pricing-category h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.pricing-list {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    flex: 1;
    padding-right: 20px;
}

.pricing-price {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-secondary);
    font-size: 1.1rem;
    white-space: nowrap;
}

.pricing-package {
    font-size: 0.9rem;
    color: #888;
    margin-left: 10px;
}

.pricing-item:hover {
    background-color: #fafafa;
    padding-left: 10px;
    padding-right: 10px;
    transition: var(--transition);
}