/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --light-gray: #404040;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gold: #f4e04d;
    --gold-light: #f9ed8e;
    --gold-dark: #e6d03a;
    --beige: #f5f5dc;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background-color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 2px solid var(--beige);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    color: var(--beige);
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--beige);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('111.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.3);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.3);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 60vh;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--off-white);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--beige);
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--beige);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--dark-gray);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--beige);
    border-color: var(--dark-gray);
}

.btn-primary:hover::before {
    left: 0;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.section-subtitle {
    font-size: 18px;
    color: var(--off-white);
    margin-top: 20px;
}

/* Angela Introduction Section */
.angela-intro {
    padding: 80px 0;
}

/* Preis Section */
.preis-section {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 20px;
    background: var(--white);
}

.preis-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.preis-image {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* LA BIOSTHETIQUE PARIS Section */
.labiosthetique {
    background: var(--medium-gray);
    padding: 80px 0;
}

.labio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.labio-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.labio-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.labio-text {
    padding: 20px;
}

.labio-title {
    font-size: 36px;
    color: var(--beige);
    margin-bottom: 20px;
    font-weight: 700;
}

.labio-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--off-white);
}

/* Angela Introduction Section */
.angela-intro {
    padding: 80px 0;
}

.angela-white {
    background: var(--white);
}

.angela-white .intro-title {
    color: var(--dark-gray);
}

.angela-white .intro-description p {
    color: var(--medium-gray);
}

.angela-white .btn-secondary {
    color: var(--dark-gray);
    border-color: var(--gold);
}

.angela-white .btn-secondary:hover {
    color: var(--white);
    background: var(--dark-gray);
    border-color: var(--dark-gray);
}

.angela-reverse .angela-content {
    direction: ltr;
}

.angela-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.angela-image {
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.angela-image img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.angela-text {
    padding: 20px;
}

.intro-title {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.intro-description {
    margin-bottom: 30px;
}

.intro-description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--off-white);
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--dark-gray);
}

.btn-secondary:hover::before {
    left: 0;
}

/* Services Section */
.services {
    background: var(--medium-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-gray);
    padding: 40px 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gold);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--off-white);
}

.price {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-gray);
    color: var(--gold);
    font-weight: 600;
    border: 1px solid var(--gold);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 3px solid var(--gold);
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-placeholder span {
    font-size: 24px;
    color: var(--gold);
    font-weight: 600;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1);
}

/* About Section */
.about {
    background: var(--medium-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--off-white);
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--dark-gray);
    border: 2px solid var(--gold);
}

.stat h3 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat p {
    color: var(--white);
    font-size: 14px;
}

.about-image {
    height: 500px;
}

.about-image.team-image {
    height: auto;
}

.team-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--gold);
}

.image-placeholder span {
    font-size: 32px;
    color: var(--gold);
    font-weight: 600;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--medium-gray);
    border-left: 3px solid var(--gold);
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 8px;
}

.info-item p {
    color: var(--off-white);
}

.contact-form {
    background: var(--medium-gray);
    padding: 40px;
    border: 2px solid var(--gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form .btn-primary {
    width: 100%;
    cursor: pointer;
    border: 2px solid var(--gold);
}

/* Footer */
.footer {
    background: var(--medium-gray);
    padding: 60px 0 20px;
    border-top: 3px solid var(--beige);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    color: var(--beige);
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 18px;
    color: var(--beige);
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--off-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--off-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--beige);
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.social-logo {
    height: 40px;
    width: auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    color: var(--off-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        background-size: cover;
        background-position: center center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-gray);
        flex-direction: column;
        padding: 20px;
        border-top: 2px solid var(--gold);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .angela-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .angela-image img {
        height: 400px;
    }

    .labio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .labio-title {
        font-size: 28px;
        text-align: center;
    }

    .labio-text {
        text-align: center;
    }

    .intro-title {
        font-size: 32px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-photo {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
        background-size: cover;
        background-position: center center;
    }

    .hero-title {
        font-size: 32px;
    }

    .labio-title {
        font-size: 24px;
    }

    .labio-text p {
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-form {
        padding: 20px;
    }
}

/* Gallery Styles */
.gallery-hero {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    padding: 150px 0 80px;
    text-align: center;
    border-bottom: 3px solid var(--beige);
}

.gallery-section {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.gallery-intro h2 {
    font-size: 42px;
    color: var(--beige);
    margin-bottom: 20px;
    font-weight: 600;
}

.gallery-intro p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--medium-gray);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-row: span 1;
}

.gallery-item:nth-child(2) {
    grid-row: span 1;
    margin-top: 80px;
}

.gallery-item:nth-child(3) {
    grid-row: span 1;
    margin-top: -40px;
}

.gallery-item:nth-child(4) {
    grid-row: span 1;
    margin-top: 40px;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    color: var(--beige);
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.gallery-info p {
    color: var(--white);
    font-size: 16px;
    opacity: 0.9;
}

.gallery-cta {
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--beige);
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--beige);
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--beige);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--beige);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 245, 220, 0.3);
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        margin-top: 0;
    }

    .gallery-item:nth-child(2) {
        margin-top: 50px;
    }

    .gallery-item:nth-child(4) {
        margin-top: 30px;
    }

    .gallery-image-wrapper {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        margin-top: 0;
    }

    .gallery-image-wrapper {
        height: 500px;
    }

    .gallery-intro h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-image-wrapper {
        height: 450px;
    }

    .gallery-intro h2 {
        font-size: 28px;
    }

    .gallery-intro p {
        font-size: 16px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 18px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--beige);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-content {
        max-width: 98%;
        max-height: 90vh;
    }
}