/* Awards Table/Row Layout */
.award-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 3em;
    padding: 2em 1em;
}
.award-image-col {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2em;
}
.award-text-col {
    flex: 1 1 400px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
/* styles.css */
@font-face {
    font-family: Barbaro;
    src: url('fonts/barbaro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: Calibri, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

header {
    background-color: black; /* Copper background color */
    color: white; /* White text color */
    text-align: center; /* Center the text */
    padding: 20px; /* Add padding for spacing */
    font-size: 40px; /* Increase font size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    background: url(/images/banner.jpg);
}

header h1 {
    margin: 0;
    font-family: Barbaro;
    font-variant: small-caps;
    /*! text-shadow: aqua; */
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    background-color: rgba(184, 115, 51, 0.8); /* Glass effect copper background */
/*     background-color: #B87333; */
    padding: 50px 20px;
    color: white;
}

.hero h2 {
    margin: 0 0 20px;
    font-size: 2.5em;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.hero p {
    font-size: 1.2em;
}

.section {
    margin: 40px 0;
}

.section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.section p {
    font-size: 1.1em;
    line-height: 1.6;
}

.responsive-img {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.5); /* Box shadow for glass effect */
    border-radius: 10px;
    padding: 20px;
    background-color: white;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-img {
    max-width: 28%;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 1.8%;
    margin-right: 1%;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.5); /* Box shadow for glass effect */
    padding: 10px;
    background-color: white;
}

.contact {
    text-align: center;
}

.contact p {
    font-size: x-large;
}
/* Button styles */
.email-button {
    display: inline-block;
    padding: 15px 30px; /* Adjust padding as needed */
    width: 300px; /* Limit button width to 300px */
    font-size: 25px;
    text-decoration: none;
    color: white;
    background-color: rgba(184, 115, 51, 0.8); /* Glass effect copper background */
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative; /* Position for overlay */
    overflow: hidden; /* Ensure content does not overflow */
    margin: 10px;
    border: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6), -2px -2px 5px rgba(255, 255, 255, 0.2), inset 1px 1px 2px rgba(255, 255, 255, 0.2), inset -1px -1px 2px rgba(0, 0, 0, 0.4);
}

.email-button:hover {
/*    background-color: rgba(232, 143, 61, 0.8); /* Lighter copper color on hover */
    background-color: rgba(232, 143, 61, 0.8); /* Lighter copper color on hover */
    transform: translateY(-3px); /* Lift the button slightly on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.5); /* Enhanced shadow on hover */
}

.email-button:active {
    transform: scale(0.95) translateY(1px); /* Scale down slightly and push down when clicked */
    box-shadow: none; /* Remove shadow when clicked */
}

.email-button:focus {
    outline: none; /* Remove outline on focus */
}

.email-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 80%);
    transition: opacity 0.3s, transform 0.3s;
    z-index: -1; /* Behind the button */
    opacity: 0; /* Initially transparent */
    transform: scale(0.8); /* Initial scale */
    mix-blend-mode: overlay; /* Blend with background */
}

.email-button:hover::before {
    opacity: 1; /* Show overlay on hover */
    transform: scale(1.2); /* Full scale */
}

.email-button a {
    position: relative; /* Ensure text is above overlay */
    z-index: 1; /* Place text above overlay */
    display: block; /* Ensure full button area is clickable */
    padding: 0;
    margin: 0;
    line-height: inherit; /* Inherit line height */
    text-align: center; /* Center text */
    color: white; /* Text color */
    text-shadow: 1px 1px 2px black, 0 0 25px white, 0 0 5px darkblue; /* Text shadow for edging */
}


.about-us-content {
}

.about-us-content img {
    float: left;
    max-width: 50%;
    margin: 20px 40px 30px 20px;
    padding: 40px;
    background: white;
}

.about-us-text p {
    margin-bottom: 1em;
}

#age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#age-verification.active {
    display: flex;
}

#age-verification .content {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

#age-verification .content button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 1em;
}

/* New Awards Section Styles */
.awards {
    margin: 2em 0;
}

.award-content {
    display: block;
}

.award-image {
    float: right;
    max-width: 80%;
    margin: 20px 40px 30px 40px;
    padding: 10px;
    background: white;
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.5);
    border-radius: 10px;
}

.award-tags {
    margin-top: 1.5em;
}

.award-tags span {
    display: inline-block;
    margin-right: 1em;
    color: rgba(184, 115, 51, 0.8);
    font-weight: bold;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .gallery-img {
        max-width: 75%;
        display: block;
        margin: 0 auto;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .responsive-img {
        max-width: 75%;
        padding: 15px;
        background-color: white;
    }

    footer {
        text-align: center;
        background-color: #f1f1f1;
        padding: 10px;
    }

    .about-us-content img {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 10px;
        margin-right: 20px;
        height: auto;
        padding: 10px;
        background-color: white;    
    }

    .award-image {
        float: none;
        max-width: 75%;
        margin: 10px auto;
        padding: 15px;
    }
    
    .award-tags span {
        display: block;
        margin-bottom: 0.5em;
    }
}
