body {
    background: #FFFFFF;
    color: #282828;
    margin: 0;
    padding: 0 40px; /* 40px left and right padding */
    font-family: 'Arial', sans-serif;
}

.headertop {
    background-color: #000000; /*#f00909;*/
    padding: 5px;
    text-align: center;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 2px;
    box-shadow: 0 4px 6px #D3D3D3;
    margin-top: 1px;
    margin-bottom: 3px;
    border-radius: 15px;
}

.header {
    background-color: #a63034; /*#f00909;*/
    padding: 5px;
    text-align: center;
    color: #FFFFFF;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 4px 6px #D3D3D3;
    margin-top: 1px;
    margin-bottom: 3px;
}

.mynavbar {
    background-color: #8B0000;
    /*overflow: auto;*/
    text-align: center;
    box-shadow: 0 2px 5px #D3D3D3;
}

    .mynavbar a {
        display: inline-block;
        color: #FFFFFF;
        /*padding: 16px 20px;*/
        padding: 10px 10px;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        transition: 0.3s;
        /*font-family: 'Playfair Display', serif;*/
        /*font-family: 'Cormorant Garamond', serif;*/
        font-family: 'Cinzel', serif;
        /*font-family: 'EB Garamond', serif;*/
    }

        .mynavbar a:hover {
            background-color: #f00909;
            color: #FFFFFF;
        }

.gallery {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Fixed 4 columns */
    gap: 20px;
    justify-items: center;
    background: #FFFFFF;
}

    .gallery img {
        width: 100%;
        aspect-ratio: 1/1.2; /* Width:Height ratio, slightly taller */
        object-fit: cover;
        border: 2px solid #f00909; /* Primary color border */
        background: #FFFFFF;
        box-shadow: 0 2px 8px #D3D3D3;
        transition: transform 0.4s, border-color 0.3s;
        border-radius: 15px; /* Rounded corners */
        cursor: pointer;
    }

        .gallery img:hover {
            transform: scale(1.08);
            border-color: #8B0000; /* Secondary color on hover */
        }

/* Optional for smaller devices */
@media screen and (max-width: 768px) {
    .gallery img {
        height: 180px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 800px;
    height: 600px;
    object-fit: contain;
    background: #FFFFFF;
    border-radius: 10px;
    transition: transform 0.4s ease; /* Smooth zoom effect */
    cursor: zoom-in;
}

    .modal-content:hover {
        transform: scale(1.1); /* Zoom on hover */
        cursor: zoom-out;
    }

.counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #FFFFFF;
    font-size: 20px;
    background: rgba(40, 40, 40, 0.7);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

    .prev:hover, .next:hover {
        color: #f00909;
    }

@media screen and (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .modal-content {
        width: 95%;
    }
}

.banner-header {
    width: 100%;
    margin-bottom: 1px; /* Space between banner and gallery */
}

    .banner-header img {
        width: 100%;
        height: auto;
        /*border-radius: 15px;*/ /* Optional: rounded corners for banner */
        box-shadow: 0 4px 10px #D3D3D3; /* Optional: nice shadow */
        object-fit: cover;
    }

.footer {
    width: 100%; /* <-- Full width */
    background-color: #000000;
    color: #FFFFFF;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 40px 60px;
    flex-wrap: wrap;
    margin-top: 50px;
    border-top: 3px solid #8B0000; /* Optional top border with secondary color */
    box-sizing: border-box; /* Make sure padding doesn't overflow */
    font-family: 'Playfair Display', serif; /* or any elegant font */
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    text-align: center;
}

.footer h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #FFFFFF;
}

.footer p {
    font-size: 20px;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin: 10px 0;
    }

    .footer-links a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 20px;
    }

        .footer-links a:hover {
            color: #f00909; /* Primary color on hover */
        }

.store-badge {
    width: 150px;
    margin: 10px 0;
}

.footer-logo {
    width: 350px;
    margin-bottom: 15px;
}

/*.mytophead {
    color: #ffffff;*/ /* default text color, change as needed */
/*text-decoration: none;
    transition: color 0.3s ease;
}*/

.mytophead {
    color: #ffffff; /* default text color, change as needed */
    text-decoration: none;
    transition: color 0.3s ease;
}

    .mytophead:hover {
        color: #f00909; /* your primary red color */
        text-decoration: none;
        cursor: pointer;
    }

