body {
    font-family: 'Bebas Neue', sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.logo {
    width: 45%;
    height: auto;
    opacity: 1;
}

.gradient-text {
    font-family: 'Bebas Neue', sans-serif;
    background: linear-gradient(45deg, #d4af37, #f00);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 2.5em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.subtext {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2em;
    color: #000000;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
}

.welcome-section {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff0000;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    font-size: 1.2em;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: #cc0000;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.4);
}

.image-gallery {
    padding: 20px;
    background-color: #ffffff;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 309px);
    grid-template-rows: repeat(2, 309px);
    gap: 10px;
    justify-content: center;
}

.image-container {
    width: 309px;
    height: 309px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.4);
}

.instagram-feed {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    opacity: 1;
    transform: translateY(0);
}

.instagram-feed img {
    width: 100%;
    max-width: 48%;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-feed img:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.4);
}

footer {
    background-color: #ffffff;
    color: #000000;
    padding: 10px;
    text-align: center;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
}

.responsive-logo {
    width: 45%;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(3, 150px);
        grid-template-rows: repeat(2, 150px);
    }

    .image-container {
        width: 150px;
        height: 150px;
    }
    
    .cta-button {
        font-size: 1.5em;
        padding: 15px 30px;
        width: 100%;
        max-width: 90%;
        text-align: center;
    }
    
    .responsive-logo {
        width: 65%;
        margin: 0 auto;
    }
}

@media (max-width: 468px) {
    .image-grid {
        grid-template-columns: repeat(2, 220px);
        grid-template-rows: repeat(3, 220px);
    }

    .image-container {
        width: 220px;
        height: 220px;
    }
    
    .cta-button {
        font-size: 1.5em;
        padding: 15px 30px;
        width: 100%;
        max-width: 90%;
        text-align: center;
    }
    
    .responsive-logo {
        width: 75%;
        margin: 0 auto;
    }
}

@media (max-width: 320px) {
    .image-grid {
        grid-template-columns: repeat(1, 250px);
        grid-template-rows: repeat(6, 250px);
    }

    .image-container {
        width: 250px;
        height: 250px;
    }
    
    .cta-button {
        font-size: 1.5em;
        padding: 15px 30px;
        width: 100%;
        max-width: 90%;
        text-align: center;
    }
    
    .responsive-logo {
        width: 85%;
        margin: 0 auto;
    }
}