:root {
    --font-primary: 'Barlow', sans-serif;
    --font-secondary: 'Mulish', sans-serif;
    --font-accent: 'Bayon', sans-serif;
    --color-text: #ffffff;
    --color-heading: #ffffff;
    --color-link: #5271ff;
    --color-bg: #5271FF;
    --container-width: 1140px;
    --spacing-unit: 1rem;
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.site-header {
    padding: 0;
    text-align: center;
}

.splash-image {
    max-width: 100%;
    height: auto;
    width: 600px;
}

/* Intro Section */
.intro {
    text-align: center;
    max-width: 1140px;
    margin: 0 auto 40px;
}

.main-heading {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    margin-top: 65px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.instagram-link {
    margin-top: 40px;
    margin-bottom: 45px;
    font-family: var(--font-accent);
    font-size: 43px;
    line-height: 43px;
    color: #ffffff;
}

.instagram-link a {
    background-color: transparent;
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    transition: color 0.3s;
}

.instagram-link a:hover {
    color: #fc3c3c;
}

.description {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    max-width: 1100px;
    margin: 0 auto;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    border-top: 1px dashed #000;
    margin: 15px 0;
    opacity: 0.2;
}

/* Merch Section */
.merch {
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
    padding-top: 15px;
}

.merch .section-title {
    font-family: var(--font-accent);
    font-size: 72px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 40px;
    color: #ffffff;
    line-height: 1;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-items: center;
}

.merch-item img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.merch-item img:hover {
    transform: scale(1.02);
}

/* Newsletter Section */
.newsletter {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 60px;
}

.newsletter .section-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: #4356b1;
    font-weight: 600;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    padding: 0 20px;
    background-color: #FAFBFC;
    border: 1px solid #E9E9EE;
    border-radius: 5px;
    font-size: 1rem;
    width: 300px;
    max-width: 100%;
    height: 50px;
    color: #797F89;
}

.newsletter-form button {
    padding: 0 35px;
    height: 50px;
    background-color: #fc3c3c;
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    border-radius: 4px;
    font-family: var(--font-primary);
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #e03636;
}

/* Socials */
.socials {
    text-align: center;
    margin-bottom: 40px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #262626;
    color: white;
    border-radius: 50%;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0 40px;
    font-size: 0.9rem;
    color: #91a2fc;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 1.5rem;
    }
    
    .instagram-link {
        font-size: 32px;
        line-height: 1.3;
    }

    .merch .section-title {
        font-size: 48px;
    }

    .description {
        font-size: 1.1rem;
    }

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

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input[type="email"] {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}
