/* Base Styles */
body {
    font-family: 'Great Vibes', cursive;
    background-color: #00674F;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #004D3B;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    color: #D4AF37;
}

/* Footer */
footer {
    background-color: #004D3B;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Main */
main {
    padding: 40px 20px 80px;
    text-align: center;
}

/* Upload Section */
.upload-section {
    max-width: 500px;
    margin: auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Buttons */
button, .upload-button {
    background-color: #D4AF37;
    color: #000;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover, .upload-button:hover {
    background-color: #bfa130;
    color: #fff;
}

/* Progress Bar */
#progress-wrapper {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

#progress-container {
    width: 300px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
    display: none;
}

#progress-bar {
    width: 0%;
    height: 20px;
    background-color: #D4AF37;
    text-align: center;
    color: black;
    line-height: 20px;
    border-radius: 10px 0 0 10px;
    transition: width 0.4s ease;
}

/* Gallery */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.gallery-grid img, .gallery-grid video {
    border-radius: 8px;
    object-fit: cover;
    max-width: 150px;
    height: 150px;
}

a {
    color: #D4AF37;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}
.gallery-link {
    display: inline-block;
    margin-top: 20px;
    color: gold;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bold;
}
.gallery-link:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    h1 {
        font-size: 2.5em;
        text-align: center;
    }
    h2 {
        font-size: 2em;
        text-align: center;
    }
    .upload-button {
        font-size: 1.8em;
        padding: 18px 40px;
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
        display: block;
    }
    .gallery-link {
        font-size: 1.5em;
        display: block;
        text-align: center;
        margin-top: 20px;
    }
    #progress-container {
        width: 90%;
        max-width: 400px;
        margin: 20px auto;
    }
}
