/* Luxury Boudoir Marketing Agency Styles */

:root {
    --blush-pink: #F4C2C2;
    --soft-rose: #E8B4B8;
    --champagne: #F7F3E9;
    --warm-white: #FEFCF8;
    --dusty-mauve: #D4A5A5;
    --charcoal: #2C2C2C;
    --gold-accent: #D4AF37;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--warm-white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 252, 248, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dusty-mauve);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--soft-rose);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.admin-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--blush-pink), var(--soft-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(244, 194, 194, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.admin-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(244, 194, 194, 0.6);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--champagne) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--dusty-mauve);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--blush-pink), var(--soft-rose));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(244, 194, 194, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(244, 194, 194, 0.4);
}

.hero-accent {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 194, 194, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--warm-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-subtitle {
    text-align: center;
    color: var(--dusty-mauve);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(244, 194, 194, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(244, 194, 194, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(244, 194, 194, 0.25);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-card p {
    color: var(--dusty-mauve);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.1rem;
    color: var(--soft-rose);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--dusty-mauve);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid var(--blush-pink);
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--soft-rose);
}

/* Rates Section */
.rates {
    padding: 6rem 0;
    background: var(--warm-white);
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rate-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(244, 194, 194, 0.15);
    border: 1px solid rgba(244, 194, 194, 0.2);
    transition: transform 0.3s ease;
}

.rate-card:hover {
    transform: translateY(-3px);
}

.rate-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.rate-price {
    font-size: 1.8rem;
    color: var(--soft-rose);
    font-weight: 600;
    margin-bottom: 1rem;
}

.rate-card p {
    color: var(--dusty-mauve);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--warm-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    width: 250px;
    height: 200px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(244, 194, 194, 0.1), rgba(232, 180, 184, 0.1));
    border-radius: 25px;
    box-shadow: 0 12px 35px rgba(244, 194, 194, 0.3), 0 4px 15px rgba(244, 194, 194, 0.1);
    overflow: hidden;
    border: 1px solid rgba(244, 194, 194, 0.2);
    filter: brightness(1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(244, 194, 194, 0.6), 0 8px 25px rgba(244, 194, 194, 0.3);
    filter: brightness(1.1);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.02);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 25px;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: saturate(1.1) contrast(1.05);
}

.gallery-item {
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
    z-index: 3;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .zoom-icon {
    transform: scale(1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img,
.modal-content video {
    max-width: 80%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--blush-pink);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    transition: background 0.3s ease;
    user-select: none;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(244, 194, 194, 0.8);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--warm-white) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about p {
    font-size: 1.1rem;
    color: var(--dusty-mauve);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--warm-white);
}

.contact h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 3rem;
    font-weight: 500;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid rgba(244, 194, 194, 0.3);
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blush-pink);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    padding: 1.2rem 2rem;
    background: linear-gradient(45deg, var(--blush-pink), var(--soft-rose));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(244, 194, 194, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(244, 194, 194, 0.4);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--champagne);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(254, 252, 248, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .services-grid, .rates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card, .rate-card {
        margin: 0;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .gallery-item {
        width: 180px;
        height: 150px;
    }
    
    .gallery-item img,
    .gallery-item video {
        width: 160px;
        height: 140px;
        top: 0;
        left: 0;
    }
    
    .gallery-overlay {
        top: 0;
        left: 0;
        width: 160px;
        height: 140px;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        padding: 0 1rem;
    }
    
    .section-subtitle {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .about-content {
        padding: 0 1rem;
    }
    
    .admin-bubble {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 85%;
        margin: 0 1rem;
    }
    
    .modal-close {
        right: 20px;
        top: 20px;
    }
    
    .modal-prev, .modal-next {
        font-size: 24px;
        padding: 8px 12px;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .service-card, .rate-card {
        padding: 2rem 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-item {
        width: 160px;
        height: 130px;
    }
    
    .gallery-item img,
    .gallery-item video {
        width: 140px;
        height: 120px;
        top: 0;
        left: 0;
    }
    
    .gallery-overlay {
        top: 0;
        left: 0;
        width: 140px;
        height: 120px;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}