/* Glamour Daze - Dual Theme Styles */

/* Light Theme (Default) - Burgundy/Maroon */
:root {
    --primary-coral: #8B3A3A;
    --primary-peach: #C97B7B;
    --gold: #D4AF37;
    --cream: #FFF5F0;
    --dark: #2C2C2C;
    --light-gray: #F8F8F8;
    --white: #FFFFFF;
    --shadow: rgba(139, 58, 58, 0.15);
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F8F8;
    --text-primary: #2C2C2C;
    --text-secondary: #5A5255;
}

/* Dark Theme - Midnight Blush */
[data-theme="dark"] {
    --primary-coral: #E8A5B0;
    --primary-peach: #C98A95;
    --gold: #F4D58D;
    --cream: #1C1618;
    --dark: #FAFAFA;
    --light-gray: #2A2225;
    --white: #0F0D0E;
    --shadow: rgba(232, 165, 176, 0.3);
    --bg-primary: #1C1618;
    --bg-secondary: #2A2225;
    --text-primary: #FAFAFA;
    --text-secondary: #E5E5E5;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bodoni Moda', serif;
    font-weight: 600;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo {
    width: 50px;
    height: 50px;
    background: var(--primary-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Bodoni Moda', serif;
    font-weight: 600;
    font-size: 1.3rem;
}

.logo-text {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-coral);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-coral);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-coral);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--bg-secondary);
    border: 2px solid var(--primary-coral);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--primary-coral);
    transform: scale(1.1);
}

/* Page Header */
.page-header {
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--cream), var(--primary-peach));
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    font-family: 'Lato', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-coral), var(--gold));
    color: white;
    box-shadow: 0 5px 20px var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow);
}

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

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

/* Service Cards */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-coral);
}

/* Footer */
footer {
    background: var(--white);
    color: var(--text-primary);
    padding: 3rem 1.5rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--light-gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-coral);
}

.footer-text {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-coral);
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .nav-toggle {
        display: flex;
        order: 1;
        z-index: 1001;
    }

    .theme-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 1rem;
        order: 2;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--bg-primary);
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        order: 3;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
