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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f7fc 100%);
    color: #1a3a52;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #74ACDF 0%, #5a9ed6 100%);
    color: #ffffff;
    padding: 2rem 0 3rem;
    text-align: center;
    box-shadow: 0 6px 24px rgba(116, 172, 223, 0.3);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.03)" width="50" height="50"/><rect fill="rgba(255,255,255,0.03)" x="50" y="50" width="50" height="50"/></svg>');
    opacity: 0.5;
}

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

.logo-container {
    margin: 0 auto 1.5rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInScale 1s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.logo-container:hover img {
    transform: scale(1.1) rotate(5deg);
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

header p {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 3rem 0;
    margin-top: -2rem;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    padding: 1rem;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #74ACDF;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero h2.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gathering Info */
.gathering-info {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 700px;
    box-shadow: 0 8px 32px rgba(116, 172, 223, 0.15);
    border: 1px solid rgba(116, 172, 223, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.gathering-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.gathering-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #74ACDF;
    font-weight: 600;
}

.info-row {
    display: flex;
    align-items: center;
    margin: 1.2rem 0;
    font-size: 1.05rem;
    padding: 0.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.info-row.visible {
    opacity: 1;
    transform: translateX(0);
}

.info-row:nth-child(2) {
    transition-delay: 0.1s;
}

.info-row:nth-child(3) {
    transition-delay: 0.2s;
}

.info-row:nth-child(4) {
    transition-delay: 0.3s;
}

.info-row svg {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    fill: #74ACDF;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.info-row:hover svg {
    transform: scale(1.2) rotate(10deg);
}

.info-label {
    font-weight: 600;
    margin-right: 0.5rem;
    color: #74ACDF;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    text-align: center;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #74ACDF;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-section h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a3a52;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(116, 172, 223, 0.12);
    border-top: 4px solid #74ACDF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.visible {
    animation: slideInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(116, 172, 223, 0.25);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #74ACDF;
    font-weight: 600;
}

.feature-card p {
    color: #1a3a52;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #74ACDF 0%, #5a9ed6 100%);
    color: #ffffff;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

footer p {
    margin: 0.5rem 0;
    font-weight: 300;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
    font-weight: 400;
}

footer a:hover {
    border-bottom: 1px solid #ffffff;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #74ACDF 0%, #5a9ed6 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    margin-top: 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(116, 172, 223, 0.4);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px);
}

.cta-button.visible {
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(116, 172, 223, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 0 2.5rem;
    }

    .logo-container {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 0.95rem;
    }

    .hero {
        padding: 2rem 0;
        margin-top: -1.5rem;
        border-radius: 20px 20px 0 0;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .gathering-info {
        padding: 1.5rem;
    }

    .gathering-info h3 {
        font-size: 1.3rem;
    }

    .info-row {
        font-size: 0.95rem;
        flex-direction: row;
        align-items: center;
    }

    .info-row svg {
        width: 20px;
        height: 20px;
        margin-right: 0.75rem;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-content {
        font-size: 1rem;
    }

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

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

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

    header h1 {
        font-size: 1.5rem;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .info-row {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}
