/* Base Reset and Box Sizing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body and Typography */
body {
    font-family: Arial, sans-serif;
    line-height: 1.4;
    background-color: #f0f0f0;
    color: #1d1616;
    padding: 0 1em;
}

/* Header and Logo */
header {
    background: #56B5B5;
    color: #fff;
    padding: 1em 0;
    text-align: center;

}

.h2 {
    color: #A94A4A;
}

/* Mobile view: logo is 100% width */
.logo,
.logo img {
    width: 100%;
    min-width: 100%;
}

/* Tablet and Desktop view: logo is 33% width with a minimum width of 600px, centered in the header */
@media (min-width: 600px) {
    .logo {
        width: 33%;
        min-width: 600px;
        margin: 0 auto;
    }

    .logo img {
        width: 100%;
        /* Inherit min-width from the container */
    }
}

/* Secondary Navigation - Default button styling */
.navbar2 button {
    min-width: 90px;
    margin: 1px;
    /* Using browser default styling */
}

/* Control Container (formerly column1) spans full width below header */
.controlContainer {

    padding: 0.1em;
    text-align: center;
    width: 100%;
    background-color: #FFF6DA;
    color: #FFF6DA;
    border: solid 4px;
    border-color: #56B5B5;
}

.column1Controls button {
    margin: 0.5em;
    padding: 0.5em 1em;
    background: #007BFF;
    border: none;
    color: #fff;
    cursor: pointer;
}

.column1Controls button:hover {
    background: #0056b3;
}

/* Revised Column3 */
.column1 {
    background: #fff;
    padding: 0.3em;
    text-align: center;
    margin: 0.1em 0;
}

/* Landing Information Area */
.landing-info {
    margin-bottom: 1.5em;
    border: 2px, #F4D793;
}

.landing-info nav.start-play {
    margin-bottom: 0.5em;
}

.start-play button {
    margin: 0 0.5em;
    padding: 0.5em 1em;
    background: #007BFF;
    border: 4px #56B5B5;
    color: #fff;
    cursor: pointer;
}

.start-play button:hover {
    background: #0056b3;
    cursor: pointer;
}

.landing-info h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.landing-info p {
    margin-bottom: 0.5em;
}

/* Accessibility Section */
.accessibility {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
    /* optional spacing between the items */
    max-height: 100px;

    background: #fff;
    padding: 2px;
    text-align: center;
    margin-bottom: 2em;
    margin-top: 2em;
}

.accessibility h3,
h3 {
    margin-bottom: 0.5em;
    background-color: #0056b3;
}

.access-header {
    width: 160px;
}



.access-buttons {
    height: 40px;
    width: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 0.5em;
    /* Optional: controls spacing between buttons */
}

.access-buttons img {
    width: 40px;
    height: 40px;
    float: left;
    cursor: pointer;
}

.play-buttons button {
    background-color: #1d1616;
    color: #FFF6DA;
    border: solid 6px;
    margin: 4px;
    border-color: #56B5B5;
    min-height: 80px;
    min-width: 80px;
    cursor: pointer;
}

/* Additional Content Area */
/* Mobile-First Styles for contentBox */
#contentBox {
    background: #fff;
    padding: 1em;
    /* reduced padding for mobile */
    text-align: center;
    margin-bottom: 1em;
}

#contentBox h2 {
    font-size: 1.5em;
    /* heading size for mobile */
    margin-bottom: 0.5em;
    color: #A94A4A;
}

#contentBox p {
    font-size: 1em;
    /* paragraph size for mobile */
    margin-bottom: 1em;
}

/* Tablet and Desktop Adjustments */
@media (min-width: 600px) {
    #contentBox {
        padding: 2em;
        /* increased padding for larger screens */
    }

    #contentBox h2 {
        font-size: 2em;
        color: #A94A4A;
        /* larger heading for better readability */
    }

    #contentBox p {
        font-size: 1.125em;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 1em 0;
    background: #F4D793;
    color: #333;
}

/* Optional Responsive Adjustments */
@media (min-width: 600px) {

    /* Additional responsive styling can be added here if needed */
    .accessibility {
        max-width: 460px;
    }

    .column1 {


        align-items: center;
        justify-content: center;
        gap: 1em;
        ;
    }

}