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

:root {
    --primary-red: #DC143C;
    --primary-orange: #FF6B35;
    --primary-yellow: #FFD700;
    --gradient-start: #FFF8E7;
    --gradient-mid: #FFE5CC;
    --gradient-end: #FF6B35;
    --dark-red: #B22222;
    --text-dark: #2C2C2C;
    --text-light: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Images responsives */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-heart {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.logo-heart a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

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

.brand-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-red);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .logo-heart {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .logo-heart {
        width: 80px;
        height: 80px;
    }
    
    .logo-img {
        max-width: 100%;
        max-height: 100%;
    }
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-coming-soon {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .nav-coming-soon {
        font-size: 0.75rem;
        padding: 8px 12px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
}

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

.btn-primary {
    background: var(--primary-red);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--text-light);
}

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

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-red);
}

.cta-buttons .btn-outline {
    background: #FFFFFF;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.cta-buttons .btn-outline:hover {
    background: var(--primary-red);
    color: var(--text-light);
}

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1571008887538-b36bb32f4571?w=1920&q=80') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-dark);
    padding: 2rem;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    transform: rotate(-2deg);
    letter-spacing: 3px;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-red);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    text-align: center;
    width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.hero-ribbons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.ribbon {
    position: absolute;
    width: 200px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    opacity: 0.3;
    transform: rotate(45deg);
    border-radius: 20px;
}

.ribbon-1 {
    top: -100px;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.ribbon-2 {
    top: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite 1s;
}

.ribbon-3 {
    bottom: 10%;
    right: 20%;
    animation: float 7s ease-in-out infinite 2s;
}

.ribbon-4 {
    bottom: 30%;
    left: 15%;
    animation: float 9s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(45deg); }
}

/* Event Info Section */
.event-info {
    background: var(--dark-red);
    color: var(--text-light);
    padding: 4rem 0;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.event-date {
    text-align: center;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: 15px;
    min-width: 150px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.date-day {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.date-year {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.event-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location, .time {
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.support-text {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE5CC 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--primary-red);
}

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

.about-card h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Group Section */
.group-section {
    position: relative;
    padding: 6.5rem 0;
    background:
        radial-gradient(60% 80% at 8% 20%, rgba(255, 224, 196, 0.55) 0%, rgba(255, 224, 196, 0) 70%),
        radial-gradient(45% 65% at 92% 88%, rgba(255, 202, 169, 0.35) 0%, rgba(255, 202, 169, 0) 70%),
        linear-gradient(165deg, #fffdfb 0%, #fff6ef 50%, #fffdf9 100%);
}

.group-section .section-header {
    margin-bottom: 2.4rem;
}

.group-section .section-subtitle {
    max-width: 780px;
    margin: 0 auto;
}

.group-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 214, 189, 0.9);
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(179, 70, 30, 0.14);
    padding: 1.2rem;
}

.group-photo {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 420px;
}

.group-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.02) 45%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.group-photo img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.group-card:hover .group-photo img {
    transform: scale(1.03);
}

.group-text {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #ffe1cf;
    border-radius: 22px;
    padding: 2rem 2.1rem;
    max-height: 560px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #e9b08e #fff3e8;
}

.group-text h3 {
    color: var(--primary-red);
    font-size: 1.95rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #ffe8d8;
}

.group-text p {
    font-size: 1.03rem;
    line-height: 1.72;
    margin-bottom: 1.05rem;
    color: #3a2f2a;
}

.group-text p:last-child {
    margin-bottom: 0;
    font-weight: 700;
    color: #9d1e40;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(220, 20, 60, 0.9), transparent);
    color: var(--text-light);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Impact Section */
.impact {
    padding: 6rem 0;
    background: #FFFFFF;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-text h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.impact-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.impact-list {
    list-style: none;
    padding-left: 0;
}

.impact-list li {
    font-size: 1.1rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.impact-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.5rem;
}

.impact-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.impact-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Registration CTA */
.registration-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
}

.cta-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-card h2 {
    font-size: 2.8rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-card > p {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.coming-soon-banner {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coming-soon-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    width: 100%;
}

.cta-note {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-style: italic;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 1rem;
    width: 100%;
    margin-bottom: 1.75rem;
}

.price-card {
    border: 1px solid #f5caa9;
    background: #fff9f2;
    border-radius: 14px;
    padding: 1rem;
    text-align: left;
}

.price-card h3 {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.price-card p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
}

.registration-info {
    margin: 1.2rem 0 1.5rem;
    width: 100%;
    background: linear-gradient(135deg, #fff8e7 0%, #ffe5cc 100%);
    border: 1px solid #ffd6b3;
    border-radius: 12px;
    padding: 1rem;
    text-align: left;
}

.registration-info h3 {
    color: var(--primary-red);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.registration-info-list {
    margin: 0;
    padding-left: 1.2rem;
}

.registration-info-list li {
    margin: 0.35rem 0;
    font-size: 0.96rem;
}

.registration-form {
    width: 100%;
    margin-top: 1rem;
}

.registration-form .cta-buttons {
    margin-top: 1.25rem;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

.registration-grid > * {
    min-width: 0;
}

.form-group-full {
    grid-column: 1 / -1;
}

.registration-form .form-group input,
.registration-form .form-group select,
.registration-form .form-group textarea {
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.registration-form .form-group textarea {
    resize: vertical;
}

.registration-form .form-group select:focus,
.registration-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.registration-feedback {
    width: 100%;
    margin: 1rem 0 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
}

.feedback-success {
    background: #e8f7ee;
    border: 1px solid #7ac49c;
    color: #1f6f45;
}

.feedback-error {
    background: #fdeced;
    border: 1px solid #ee9ca7;
    color: #a12f3b;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .registration-grid {
        grid-template-columns: 1fr;
    }

    .registration-form .form-group input,
    .registration-form .form-group select,
    .registration-form .form-group textarea {
        width: 100%;
    }
}

.hidden {
    display: none !important;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #FFFFFF;
    margin: 10% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-red);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.2);
}

.modal-content h2 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.coming-soon-message {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE5CC 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
}

.coming-soon-message p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-dark);
}

.form-footer a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-red);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

.footer-sponsors {
    margin-top: 0.5rem;
}

.footer-sponsors p {
    margin: 0.3rem 0;
    font-weight: 600;
    color: var(--primary-yellow);
}

.footer-sponsor-note {
    font-size: 0.9rem;
    font-weight: 400 !important;
    color: var(--text-light) !important;
    opacity: 0.8;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.footer-links {
    margin-top: 1rem;
}

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

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-credit {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
    color: var(--text-light);
}

.footer-credit a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-credit a:hover {
    opacity: 1;
    text-decoration: underline;
    color: var(--primary-yellow);
}

/* Legal Pages */
.legal-section {
    padding: 8rem 0 4rem;
    background: #FFFFFF;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.legal-section-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E0E0E0;
}

.legal-section-block:last-child {
    border-bottom: none;
}

.legal-section-block h2 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
    margin-top: 2rem;
}

.legal-section-block h2:first-child {
    margin-top: 0;
}

.legal-section-block h3 {
    font-size: 1.3rem;
    color: var(--dark-red);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-section-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-section-block ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section-block li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.legal-section-block strong {
    color: var(--primary-red);
    font-weight: 600;
}

.last-update {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 1rem 0;
    z-index: 1500;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.cookie-banner-content a {
    color: var(--primary-yellow);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-content a:hover {
    color: var(--primary-orange);
}

.cookie-banner-close {
    background: var(--primary-red);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.cookie-banner-close:hover {
    background: var(--dark-red);
}

/* Responsive - Tablette */
@media (max-width: 768px) {
    .logo-heart {
        width: 100px;
        height: 70px;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 70px;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
        transform: rotate(-1deg);
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        gap: 15px;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .event-date {
        min-width: auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .date-day {
        font-size: 3rem;
    }

    .event-details h2 {
        font-size: 2rem;
    }

    .location, .time {
        font-size: 1.1rem;
    }

    .impact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .impact-text h2 {
        font-size: 2rem;
    }

    .impact-text p {
        font-size: 1.1rem;
    }

    .nav-buttons {
        gap: 10px;
    }

    .nav-coming-soon {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .about {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .group-section {
        padding: 4.2rem 0;
    }

    .group-card {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1rem;
        border-radius: 20px;
    }

    .group-photo {
        min-height: 300px;
    }

    .group-photo img {
        min-height: 300px;
    }

    .group-text {
        max-height: none;
        padding: 1.35rem;
        border-radius: 16px;
    }

    .gallery {
        padding: 4rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .impact {
        padding: 4rem 0;
    }

    .registration-cta {
        padding: 4rem 0;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-card h2 {
        font-size: 2rem;
    }

    .cta-card > p {
        font-size: 1.2rem;
    }

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

    .coming-soon-banner {
        padding: 1.2rem 1.5rem;
    }

    .coming-soon-text {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .legal-section {
        padding: 10rem 0 2rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section-block h2 {
        font-size: 1.5rem;
    }

    .legal-section-block h3 {
        font-size: 1.2rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 2rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-banner-content p {
        font-size: 0.85rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .navbar {
        padding: 0.3rem 0;
    }
    
    .logo-heart {
        width: 60px;
        height: 45px;
    }
    
    .nav-buttons {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .nav-buttons .btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .nav-coming-soon {
        font-size: 0.7rem;
        padding: 6px 10px;
        white-space: normal;
        line-height: 1.2;
    }


    .hero {
        min-height: 85vh;
        padding-top: 70px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        transform: rotate(-0.5deg);
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .ribbon {
        width: 150px;
        height: 300px;
    }

    .event-info {
        padding: 2.5rem 0;
    }

    .event-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .event-date {
        padding: 1.5rem;
        max-width: 150px;
    }

    .date-day {
        font-size: 2.5rem;
    }

    .date-month {
        font-size: 1.2rem;
    }

    .date-year {
        font-size: 1rem;
    }

    .event-details h2 {
        font-size: 1.6rem;
    }

    .location, .time {
        font-size: 1rem;
    }

    .support-text {
        font-size: 1rem;
        margin-top: 1rem;
    }

    .about {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-card {
        padding: 2rem 1.5rem;
    }

    .card-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .about-card h3 {
        font-size: 1.5rem;
    }

    .about-card p {
        font-size: 1rem;
    }

    .group-text h3 {
        font-size: 1.4rem;
    }

    .group-text p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .gallery {
        padding: 3rem 0;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }

    .gallery-overlay p {
        font-size: 1rem;
    }

    .impact {
        padding: 3rem 0;
    }

    .impact-content {
        gap: 2rem;
    }

    .impact-text h2 {
        font-size: 1.6rem;
    }

    .impact-text p {
        font-size: 1rem;
    }

    .impact-list li {
        font-size: 1rem;
        padding: 0.8rem 0;
        padding-left: 1.5rem;
    }

    .registration-cta {
        padding: 3rem 0;
    }

    .cta-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .cta-card h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .cta-card > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .coming-soon-banner {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .coming-soon-text {
        font-size: 0.95rem;
    }

    .cta-note {
        font-size: 0.95rem;
    }

    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-credit {
        font-size: 0.75rem;
        margin-top: 0.75rem;
    }

    .legal-section {
        padding: 10rem 0 1.5rem;
    }

    .legal-content {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }

    .legal-content h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .legal-section-block {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .legal-section-block h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .legal-section-block h3 {
        font-size: 1.1rem;
    }

    .legal-section-block p {
        font-size: 0.95rem;
    }

    .legal-section-block li {
        font-size: 0.95rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
        border-radius: 15px;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .close-modal {
        right: 15px;
        top: 15px;
        font-size: 1.5rem;
    }

    .coming-soon-message {
        padding: 1.5rem;
    }

    .coming-soon-message p {
        font-size: 1rem;
    }

    .cookie-banner {
        padding: 0.75rem 0;
    }

    .cookie-banner-content {
        padding: 0 15px;
        gap: 0.75rem;
    }

    .cookie-banner-content p {
        font-size: 0.8rem;
    }

    .cookie-banner-close {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}

/* Responsive - Très petits écrans */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }


    .nav-coming-soon {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .event-details h2 {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .cta-card h2 {
        font-size: 1.4rem;
    }
}

/* Association Page Specific Styles */
@media (max-width: 768px) {
    .impact-content[style*="grid-template-columns: 1fr"] {
        padding: 0 1rem;
    }
    
    .impact-content[style*="grid-template-columns: 1fr"] > div > div {
        padding: 2rem 1.5rem !important;
    }
    
    .impact-content[style*="grid-template-columns: 1fr"] > div > div p {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .impact-content[style*="grid-template-columns: 1fr"] > div > div {
        padding: 1.5rem 1rem !important;
    }
    
    .impact-content[style*="grid-template-columns: 1fr"] > div > div p {
        font-size: 1rem !important;
    }
    
    .nav-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-buttons .btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* Modern Header Overrides */
.navbar {
    padding: 0.55rem 0;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
}

.navbar .container {
    gap: 1rem;
}

.nav-brand {
    flex-shrink: 0;
}

.logo-heart {
    width: 108px;
    height: 66px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #f1b898;
    background: #fff7f1;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--primary-red);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-main {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #f3d4bf;
    border-radius: 14px;
    padding: 0.15rem;
}

.nav-links .btn {
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.83rem;
    border: none;
    background: transparent;
    color: #9d1e40;
    box-shadow: none;
    font-weight: 600;
}

.nav-links .btn:hover {
    background: #fff0e6;
    color: var(--primary-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-partner-link,
.nav-back-link {
    font-size: 0.82rem;
    padding: 8px 12px;
    border: 1px solid #efb995;
    background: #fff6f0;
    color: #a0362a;
    border-radius: 999px;
}

.nav-partner-link:hover,
.nav-back-link:hover {
    background: #ffe6d6;
    color: #8f1e3a;
    border-color: #eaa57e;
}

.nav-coming-soon {
    font-size: 0.76rem;
    padding: 7px 10px;
    border-radius: 999px;
    white-space: nowrap;
    font-weight: 600;
}

@media (max-width: 980px) {
    .navbar {
        padding: 0.45rem 0;
    }

    .navbar .container {
        position: relative;
    }

    .logo-heart {
        width: 84px;
        height: 56px;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-main {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        z-index: 1200;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid #f2cfb7;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
        border-radius: 16px;
        padding: 0.85rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-main.is-open {
        display: flex;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
        background: transparent;
        border: none;
        padding: 0;
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
        background: #fff7f2;
        border: 1px solid #f4cfb7;
        border-radius: 12px;
    }

    .nav-actions {
        width: 100%;
        margin-top: 0.35rem;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
    }

    .nav-partner-link,
    .nav-back-link {
        width: 100%;
        text-align: center;
        border-radius: 12px;
        padding: 0.7rem 1rem;
    }

    .nav-coming-soon {
        width: 100%;
        text-align: center;
        white-space: normal;
    }
}