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

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    background-image: url('Website_background.jpg');
    background-repeat: repeat;
    padding-bottom: 60px;
}

.container {
    max-width: 776px;
    margin: 0 auto;
    width: 100%;
}

/* Header Section */
.header {
    background-image: url('Website_header.jpg');
    background-size: cover;
    background-position: center;
    min-height: 184px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
    max-width: 776px;
    margin: auto;
}

/* Navigation */
.nav {
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 20px 0;
    text-align: center;
}

.nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.nav li {
    min-width: 120px;
}

.nav li a {
    color: rgb(232 189 85);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.nav li a:hover {
    color: #FFF;
    text-shadow: 0 0 10px rgb(232 189 85);
}

/* Logo */
.logo {
    position: relative;
    z-index: 10;
    text-align: center;
    margin: 30px 0;
}

.logo img {
    max-width: 400px;
    height: auto;
}

/* Main Content */
.main-content {
    /* background: rgba(0, 0, 0, 0.8); */
    color: #000;
    line-height: 2;
    margin: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 776px;
        /* min-height: 400px; */
        background-image: url('Website_background.jpg');
}

/* Video Section */
.video-section {
    position: relative;
}
.restart-video,
    .activate-audio {
        font-size: 12px;
        position: absolute; /* Positioning the element absolutely within its containing block */
        font-weight: bold; /* Makes the text bold */
        padding-left: 0.5rem; /* 4px padding on the left side */
        padding-right: 0.5rem; /* 4px padding on the right side */
        padding-top: 0.25rem; /* 2px padding on the top */
        padding-bottom: 0.25rem; /* 2px padding on the bottom */
        text-align: center; /* Centers the text horizontally */
        background-color: #C1E1FF; /* Onahau color as background (Hex color #C1E1FF) */
        transition: background-color 0.3s ease; /* Smooth transition for hover effect */
        text-transform: uppercase; /* Converts text to uppercase */
        cursor: pointer; /* Changes the cursor to a pointer when hovering */
        z-index: 10; /* Places the element on a layer above the normal flow */
        border-radius: 0.25rem; /* Rounds the corners of the element */
        
    }
    .restart-video:hover,
    .activate-audio:hover {
        background-color: #ADD8E6; /* Changes background color to light blue on hover */
    }

    .activate-audio {
        right: -1rem; /* Positions the element 4px from the right edge of the containing block */
        top: -1rem; /* Positions the element 4px from the top edge of the containing block */
    }
    .restart-video {
        display: none;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
    }

.video-section {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: solid #000 20px;
    border-left: solid #000 20px;
    border-right: solid #000 20px;
}

.video-section video {
    height: 100%;
    width: 100%;
}

.video-placeholder {
    position: relative;
    z-index: 2;
    text-align: center;
    color: rgb(232 189 85);
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
}

/* Page Title */
.page-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

/* Program Schedule */
.program-schedule {
    max-width: 600px;
    margin: 0 auto;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

.schedule-time {
    font-size: 1.2em;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

.schedule-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 8px;
}

.schedule-description {
    line-height: 1.6;
    opacity: 0.9;
}

.event-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.event-info h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #007bff;
}

.event-details {
    font-size: 1.1em;
    line-height: 1.8;
}

.highlight {
    color: #007bff;
    font-weight: bold;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info, .contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.contact-info h2, .contact-form h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #007bff;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.1em;
    color: #007bff;
    margin-bottom: 5px;
}

.contact-item p {
    line-height: 1.6;
    opacity: 0.9;
}

.contact-item a {
    color: #007bff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: solid 1px #ccc;
}

.form-group button {
        padding: 5px 10px;
    border-radius: 13px;
    border: solid 1px #000;
    cursor: pointer;



    background: #000;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    width: 100%;

}

.form-group button:hover {
    background: rgb(232 189 85);
    color: #000;
}
.form-group textarea {
    height: 120px;
    resize: vertical;
}

.button-wrapper {
    display: flex;
    justify-content: flex-end;
    /* margin-top: 20px; */
}

.submit-btn {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #0056b3;
}

/* RSVP Page Styles */
.rsvp-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

/* RSVP page main content styling */
.rsvp-page .main-content {
    padding: 40px 20px;
    text-align: center;
}

.rsvp-form .form-group {
    text-align: left;
}

/* Program Page Styles */
.program {
    color: #000;
}

.schedule {
    border-top: solid #000 20px;
    border-left: solid #000 20px;
    border-right: solid #000 20px;
        line-height: 2;
        min-height: 400px;

}

.schedule, .tshirt-details {
    background-image: url('../assets/ContentBackground.jpg');
    padding: 0 20px;
    display: flex;
}

.tshirt-details .left, .schedule .left {
    padding-right: 20px;
}

.tshirt-details .program-art, .schedule .program-art {
    padding-left: 20px;
}

.schedule > div, .tshirt-details > div {
    padding-block: 10px;
}

.tshirt-details a {
    text-decoration: underline;
}

.schedule .timeblock {
    display: flex;
    gap: 20px;
}

.schedule .timeblock div {
    min-width: 74px;
}

.schedule .timeblock p {
    margin-top: 0;
}

section .program-art {
    /* border-left: 2px solid #000; */
}

/* Sponsor Section */
.sponsor-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 50px 0 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 776px;
    margin: 0 auto;
    width: 100%;
    /* margin-top: 60px; */
}

.sponsor-logo {
    max-width: 300px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.sponsor-logo:hover {
    opacity: 1;
}

.sponsor-text {
    color: rgb(232 189 85);
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.sponsor-subtitle {
    color: #ccc;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav li a {
        font-size: 12px;
    }

    .logo img {
        max-width: 300px;
    }

    .video-placeholder {
        font-size: 36px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 450px) {
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .container {
        /* padding: 0 10px; */
    }

    .video-placeholder {
        font-size: 24px;
    }
}

@media screen and (max-width: 779px) {
    body > main {
        width: 100%;
    }

    nav ul {
        padding: 0;
        /* margin-left: 32vw; */
        width: 44vw;
        top: 20vw;
    }

    section .program-art {
        border-left: none;
    }

    .program-art img {
        display: block;
        margin: auto;
        max-width: 100%;
    }

    .schedule, .tshirt-details {
        flex-direction: column;
    }

    .schedule .timeblock {
        flex-direction: column;
    }

    .tshirt-details .program-art, .schedule .program-art {
        padding-left: 0;
    }
}



.contact-section {
        width: 45%;
    }

    @media screen and (max-width: 779px) {
        .contact-section {
            width: 100%;
        }
    }