/* General Body and Typography */
body {
    font-family: 'Oswald', sans-serif;
    color: #fff; /* Default text color */
    background: linear-gradient(to bottom, #1a1a1a, #000000); /* Dark background */
    margin: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

a {
    color: #B0C4DE; /* LightSteelBlue for links, mimicking silver */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Art Deco Header */
.art-deco-header {
    background: linear-gradient(to right, #000000, #4f4f4f, #000000); /* Black to dark grey gradient */
    padding: 40px 20px;
    text-align: center;
    border-bottom: 5px solid;
    border-image: linear-gradient(to right, #FFD700, #B0C4DE, #FFD700) 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.art-deco-header h1 {
    font-size: 3.5em;
    margin: 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(to right, #FFD700, #FFFFFF, #FFD700); /* Gold to White gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.art-deco-header p {
    font-size: 1.2em;
    color: #B0C4DE; /* Silver */
    letter-spacing: 2px;
}

/* Main Content Area */
main {
    flex: 1;
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Art Deco Frame Styling for Sections */
.art-deco-frame {
    background-color: rgba(25, 25, 25, 0.9); /* Slightly transparent dark background */
    border: 3px solid;
    border-image: linear-gradient(to right, #B0C4DE, #FFD700, #B0C4DE) 1; /* Silver and Gold border */
    padding: 30px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); /* Gold glow */
    position: relative;
    overflow: hidden;
    margin-bottom: 20px; /* Space between sections */
}

.art-deco-frame::before,
.art-deco-frame::after {
    content: '';
    position: absolute;
    background: linear-gradient(to bottom right, transparent 45%, #FFD700 50%, transparent 55%); /* Decorative corners */
    width: 30px;
    height: 30px;
    z-index: 0;
}

.art-deco-frame::before {
    top: -10px;
    left: -10px;
    transform: rotate(45deg);
}

.art-deco-frame::after {
    bottom: -10px;
    right: -10px;
    transform: rotate(225deg);
}

.info-section p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1em;
    text-align: justify;
    color: #E0E0E0; /* Light grey for readability */
}

/* Poster Section */
.poster-container {
    text-align: center;
    padding: 20px;
    background-color: #0a0a0a;
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.poster-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 2px solid #B0C4DE; /* Silver border for the image */
}

/* Gallery Section */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 10px;
}

.image-grid img {
    width: 100%;
    height: 200px; /* Fixed height for gallery images */
    object-fit: cover; /* Cover the area, crop if necessary */
    border: 2px solid #FFD700; /* Gold border for gallery images */
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}


/* Art Deco Footer */
.art-deco-footer {
    background: linear-gradient(to right, #000000, #4f4f4f, #000000);
    color: #B0C4DE; /* Silver */
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 5px solid;
    border-image: linear-gradient(to right, #FFD700, #B0C4DE, #FFD700) 1;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
}

.art-deco-footer p {
    margin: 0;
    font-size: 0.9em;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    main {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Two columns on larger screens */
    }

    .art-deco-header h1 {
        font-size: 4.5em;
    }
}

@media (min-width: 1024px) {
    main {
        grid-template-columns: repeat(3, 1fr); /* Three columns on very large screens for main content */
    }

    .poster-section {
        grid-column: span 2; /* Poster takes 2 columns */
    }

    .gallery-section {
        grid-column: span 3; /* Gallery takes full width */
    }
}
