/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Sen', sans-serif;
    font-size: 4.5em;
    font-weight: 800;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 1.5rem;
}

.hero-title strong {
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.639);
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Section */
.gallery {
    padding: 2rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

/* Newsletter Card */
.newsletter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000000;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 200px;
}

.newsletter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.newsletter-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    margin-bottom: 1rem;
}

.newsletter-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #333;
}

.newsletter-name {
    font-family: 'Anton', sans-serif;
    font-size: 1.375em;
    text-align: center;
    line-height: 1.3;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-family: 'Sen', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000000;
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    background-color: #000000;
    color: #FFF5F5;
    text-decoration: none;
    border-radius: 2.5rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-btn:hover {
    background-color: #333333;
    transform: scale(1.02);
}

.contact-btn:active {
    transform: scale(0.98);
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
    text-align: center;
    color: rgba(0, 0, 0, 0.522);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 736px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 1.5rem 1rem;
    }

    .hero {
        padding: 2rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .newsletter-card {
        padding: 1rem 0.5rem;
    }

    .newsletter-logo {
        width: 60px;
        height: 60px;
    }

    .newsletter-name {
        font-size: 1.1em;
    }

    .contact {
        padding: 3rem 1rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
