:root {
    --primary-color: #db4f8d;
    --secondary-color: #f2a8ca;
    --tertiary-color: #FFFFFF;
    --dark-accent: #333333;
    --light-accent: #f9f9f9;
    --premium-gradient: linear-gradient(135deg, #db4f8d, #f2a8ca);
    --free-gradient: linear-gradient(135deg, #4fb0db, #a8daf2);
    --social-gradient: linear-gradient(135deg, #8e44ad, #9b59b6);
    --adult-gradient: linear-gradient(135deg, #e74c3c, #ff7675);
}

body {
    font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
    background-color: var(--tertiary-color);
    color: var(--dark-accent);
    min-height: 100vh;
}

/* Header Section */
.header-section {
    background: var(--premium-gradient);
    color: var(--tertiary-color);
    padding: 5rem 0 6rem;
    border-radius: 0 0 30% 30% / 50px;
    box-shadow: 0 10px 30px rgba(219, 79, 141, 0.2);
    position: relative;
    overflow: hidden;
}

.header-section h1 {
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.header-section .lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.header-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.header-section .container {
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.site-logo {
    max-height: 220px;
    height: 220px; /* Hauteur fixe */
    width: auto; /* Largeur automatique pour conserver les proportions */
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
    object-fit: contain; /* Garantit que l'image s'adapte sans déformation */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Ajustements pour mobile */
@media (max-width: 576px) {
    .site-logo {
        max-height: 180px;
        height: 180px;
    }
}

.site-logo:hover {
    transform: scale(1.05);
}

.heart {
    position: absolute;
    font-size: 30px;
    animation: float-heart 8s infinite ease-in-out;
    opacity: 0.7;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.heart-1 {
    top: 15%;
    left: 10%;
    font-size: 25px;
    animation-delay: 0s;
    color: rgba(255, 192, 203, 0.8);
}

.heart-2 {
    top: 45%;
    right: 15%;
    font-size: 40px;
    animation-delay: 1.5s;
    color: rgba(219, 79, 141, 0.8);
}

.heart-3 {
    bottom: 20%;
    left: 20%;
    font-size: 35px;
    animation-delay: 3s;
    color: rgba(242, 168, 202, 0.8);
}

.heart-4 {
    top: 30%;
    right: 30%;
    font-size: 22px;
    animation-delay: 4.5s;
    color: rgba(255, 255, 255, 0.8);
}

.heart-5 {
    bottom: 40%;
    left: 40%;
    font-size: 28px;
    animation-delay: 6s;
    color: rgba(255, 105, 180, 0.8);
}

@keyframes float-heart {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    25% { transform: translateY(-15px) scale(1.1) rotate(5deg); }
    50% { transform: translateY(0) scale(1) rotate(0deg); }
    75% { transform: translateY(15px) scale(0.9) rotate(-5deg); }
    100% { transform: translateY(0) scale(1) rotate(0deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(219, 79, 141, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-icon:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(242, 168, 202, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse-section 3s infinite;
}

@keyframes pulse-section {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin: 1rem 0;
    position: relative;
    display: inline-block;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.divider-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    display: inline-block;
    margin: 0 10px;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
}

.section-subtitle {
    color: #777;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* QR Code Section */
.qr-section {
    padding: 5rem 0;
    background-color: var(--light-accent);
    position: relative;
}

.qr-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light-accent);
    clip-path: ellipse(70% 50% at 50% 50%);
}

.qr-card {
    background-color: var(--tertiary-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.qr-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(219, 79, 141, 0.25);
}

.qr-card.premium {
    border-top: 5px solid var(--primary-color);
}

.qr-card.premium.unlockt {
    border-top: 5px solid #18CF00;
}

.qr-card.premium.onlyfans-payant {
    border-top: 5px solid #4fb0db;
}

.qr-card.premium.onlyfans-payant .qr-icon {
    color: #4fb0db;
}

.qr-card.premium.onlyfans-payant .btn-primary {
    background: var(--free-gradient);
    border-color: #4fb0db;
}

.qr-card.premium.onlyfans-payant .btn-primary:hover,
.qr-card.premium.onlyfans-payant .btn-primary:focus {
    background: linear-gradient(135deg, #3a9ac0, #8fcbe9);
    border-color: #3a9ac0;
}

.qr-card.free {
    border-top: 5px solid #4fb0db;
}

.qr-card.social {
    border-top: 5px solid #8e44ad;
}

.qr-card.adult {
    border-top: 5px solid #e74c3c;
}

.qr-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--premium-gradient);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(219, 79, 141, 0.2);
}

.qr-card.free .qr-badge {
    background: var(--free-gradient);
    color: white;
}

.qr-card.premium.unlockt .qr-badge {
    background: linear-gradient(135deg, #18CF00, #5dff4e);
}

.qr-card.premium.unlockt .qr-icon {
    color: #18CF00;
}

.qr-card.premium.unlockt .btn-primary {
    background: linear-gradient(135deg, #18CF00, #5dff4e);
    border-color: #18CF00;
}

.qr-card.premium.unlockt .btn-primary:hover,
.qr-card.premium.unlockt .btn-primary:focus {
    background: linear-gradient(135deg, #15b600, #4aee43);
    border-color: #15b600;
}

.qr-card.premium.onlyfans-payant .qr-badge {
    background: var(--free-gradient);
}

.qr-card.social .qr-badge {
    background: var(--social-gradient);
}

.qr-card.adult .qr-badge {
    background: var(--adult-gradient);
}

.qr-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: rgba(219, 79, 141, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.qr-card.free .qr-icon {
    background: rgba(79, 176, 219, 0.1);
    color: #4fb0db;
}

.qr-card.social .qr-icon {
    background: rgba(142, 68, 173, 0.1);
    color: #8e44ad;
}

.qr-card.adult .qr-icon {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.qr-card:hover .qr-icon {
    transform: scale(1.1);
}

.qr-card h3 {
    color: var(--dark-accent);
    font-weight: 600;
    margin: 1rem 0 1.5rem;
    font-size: 1.25rem;
}

/* QR Code Styles */
.qr-image {
    background-color: var(--tertiary-color);
    padding: 0.8rem;
    border-radius: 15px;
    margin: 15px auto;
    max-width: 200px;
    display: inline-block;
    border: 2px dashed var(--secondary-color);
    transition: all 0.3s ease;
}

.qr-card.free .qr-image {
    border-color: #a8daf2;
}

.qr-card.social .qr-image {
    border-color: #9b59b6;
}

.qr-card.adult .qr-image {
    border-color: #ff7675;
}

.qr-image img {
    border-radius: 10px;
    max-width: 150px;
}

.qr-card p {
    color: #666;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.btn-action {
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--premium-gradient);
    border: none;
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, #c23c78, #e08ab3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(219, 79, 141, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background: var(--premium-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(219, 79, 141, 0.3);
}

.qr-card.free .btn-outline-primary {
    color: #4fb0db;
    border-color: #4fb0db;
}

.qr-card.free .btn-outline-primary:hover, .qr-card.free .btn-outline-primary:focus {
    background: var(--free-gradient);
    color: white;
}

.qr-card.social .btn-outline-primary {
    color: #8e44ad;
    border-color: #8e44ad;
}

.qr-card.social .btn-outline-primary:hover, .qr-card.social .btn-outline-primary:focus {
    background: var(--social-gradient);
    color: white;
}

.qr-card.adult .btn-outline-primary {
    color: #e74c3c;
    border-color: #e74c3c;
}

.qr-card.adult .btn-outline-primary:hover, .qr-card.adult .btn-outline-primary:focus {
    background: var(--adult-gradient);
    color: white;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--light-accent), var(--tertiary-color));
}

.gallery-hero {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.gallery-hero img {
    width: 100%;
    height: auto;
    transition: transform 0.7s ease;
    filter: brightness(0.85);
}

.gallery-hero:hover img {
    transform: scale(1.03);
}

.gallery-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    text-align: center;
}

.gallery-hero-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-hero-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Fancy Gallery Styles */
.fancy-gallery-item {
    margin-bottom: 2.5rem;
    position: relative;
}

.gallery-frame {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: perspective(1000px) rotateY(0deg);
    background-color: white;
    padding: 10px;
    border: 1px solid rgba(242, 168, 202, 0.3);
}

.fancy-gallery-item:nth-child(odd) .gallery-frame {
    transform: perspective(1000px) rotate(1deg);
}

.fancy-gallery-item:nth-child(even) .gallery-frame {
    transform: perspective(1000px) rotate(-1deg);
}

.gallery-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--premium-gradient);
    z-index: 1;
}

.gallery-frame img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: all 0.5s ease;
    transform: scale(1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(219, 79, 141, 0.6);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.gallery-zoom {
    color: white;
    font-size: 2rem;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

/* Hover Effects */
.fancy-gallery-item:hover .gallery-frame {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(219, 79, 141, 0.25);
}

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

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

/* SimpleLightbox Customization */
.sl-overlay {
    background-color: rgba(0, 0, 0, 0.85);
}

.sl-wrapper .sl-navigation button {
    color: var(--tertiary-color);
}

.sl-wrapper .sl-navigation button:hover {
    color: var(--secondary-color);
}

.sl-wrapper .sl-counter {
    color: var(--tertiary-color);
    font-family: 'Poppins', sans-serif;
}

.sl-wrapper .sl-close {
    color: var(--tertiary-color);
}

.sl-wrapper .sl-close:hover {
    color: var(--secondary-color);
}

.sl-wrapper .sl-caption {
    font-family: 'Poppins', sans-serif;
    background-color: rgba(219, 79, 141, 0.8);
    color: var(--tertiary-color);
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 1rem;
}

/* Animation pour la galerie */
.sl-wrapper .sl-image {
    transition: all 0.3s ease;
}

/* Footer */
.footer-section {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    padding: 2rem 0;
    position: relative;
}

.footer-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--primary-color);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.footer-social {
    margin-bottom: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--tertiary-color);
    border-radius: 50%;
    margin: 0 5px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--tertiary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Media Queries */
@media (max-width: 991px) {
    .header-section {
        padding: 4rem 0 5rem;
        border-radius: 0 0 25% 25% / 40px;
    }
    
    .gallery-hero-overlay h3 {
        font-size: 1.5rem;
    }
    
    .gallery-hero-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .header-section {
        padding: 3rem 0 4rem;
    }
    
    .header-section h1 {
        font-size: 2.5rem;
    }
    
    .qr-image img {
        max-width: 120px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-hero-overlay {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .header-section {
        border-radius: 0 0 20% 20% / 30px;
    }
    
    .qr-card {
        padding: 1.5rem 1rem;
    }
    
    .qr-image img {
        max-width: 100px;
    }
    
    .btn-action {
        padding: 0.4rem 1.2rem;
        font-size: 0.75rem;
    }
    
    .gallery-hero-overlay h3 {
        font-size: 1.3rem;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(219, 79, 141, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(219, 79, 141, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(219, 79, 141, 0);
    }
}

.qr-image {
    animation: pulse 2s infinite ease-in-out;
    background-color: var(--tertiary-color);
    padding: 0.8rem;
    border-radius: 15px;
    margin: 15px auto;
    max-width: 200px;
    display: inline-block;
    border: 2px dashed var(--secondary-color);
    transition: all 0.3s ease;
}

.qr-canvas {
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.qr-card.free .qr-image {
    animation: pulse-blue 2s infinite ease-in-out;
}

.qr-card.social .qr-image {
    animation: pulse-purple 2s infinite ease-in-out;
}

.qr-card.adult .qr-image {
    animation: pulse-red 2s infinite ease-in-out;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 176, 219, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79, 176, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 176, 219, 0);
    }
}

@keyframes pulse-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(142, 68, 173, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(142, 68, 173, 0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}
