.logo-container {
    background: rgb(0, 0, 0,0.7);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 10px 10px;
    border-bottom: 1px solid #807f7f;
}


.logo-text{
    z-index: 10;
}
.logo-text img{
    width: 400px;
}

.style {
    width:100%;
    position: absolute;
    top:2px;
    height: 210px;
    min-width: 600px;
    z-index: 1;
}

.img1{
    height: 210px;
    position: absolute;
    left:0px;
}

.img2{
    height: 210px;
    transform: rotate(180deg);
    position: absolute;
    right: 0px;
}



.instagram-link{
    display:flex;
    text-decoration: none;
    font-size: 18px;
    font-weight: light;
    padding: 0 15px;
    gap: 6px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    color: #bcbcbc;
    font-family: sans-serif,'Anton';
    margin-top: 20px;
    font-size: 20px;
    z-index: 10;
}

.instagram-link img{
    height: 28px;
    width: 28px;
}

.instagram-link:hover {
    color: #333;
    background: #eee;
}


.instagram-link text{
    font-size: 24px;
}


.menu-container {
    font-family: sans-serif,'Anton';
    position: absolute;
    display: flex;
    flex-direction: row;
    right: 10px; 
    top: 220px
}




.gallery-navigation, .back-button{
    background: linear-gradient(45deg, #a54efd, #ff5fc2);
    animation: gradientAnimation 8s infinite linear;
    box-shadow: 1px 1px 5px  #a54efd; 
    color: rgb(255, 253, 253);
    transition: 0.3s;
    border: none;
    display: flex;
    font-size: 18px;
    cursor: pointer;
    margin: 10px;
    font-weight: 300;
    align-items: center;
    padding: 5px 10px;
    border-radius: 10px;
    gap:6px;
    user-select: none;
    outline: none;
}


.gallery-navigation:hover, .back-button:hover{
    animation: gradientAnimation 6s infinite linear;
    transform: scale(1.06);
    color: rgb(74, 81, 84);
    background-color:rgb(238, 239, 240);

}

.back-button:active, .gallery-navigation:active {
    opacity: 0.7;
    position: block;
}

.gallery-navigation img , .back-button img {
    width:18px;
}


.burger-menu {
    padding-top: 5px;
    padding-right: 10px;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    background-color: rgb(0, 0, 0, 0);
    text-shadow: 1px 1px 20px rgb(65, 64, 64);
    color: rgb(166, 166, 166);

}

.burger-menu:active{
    margin-top: 1px;
    color: #edebeb;
}

.dropdown-menu {
    display: none;
    position: absolute;
    overflow-x: hidden;
    top: -80px;
    right: 0px;
    width: 180px;
    gap: 8px;
    height:fit-content;
    overflow: hidden;
    z-index:1001;
    transform: translatey(-120px);
    opacity: 0;
    transition: transform .6s ease-in, opacity .6s ease-in-out;
    width: clamp(112px, 30vw, 225px); 
    max-height: clamp(200px, 50vh, 400px);
    

    background-color: #f6f4f4;
    border-radius: 6px;
}


.menu-link img {
    width: clamp(14px, 3vw, 20px);
    height: auto;
}

.menu-link text {
    font-size: clamp(16px, 4vw, 32px);
}




.dropdown-menu.show {
    display: block;
    position: absolute;
    transform: translateY(0);
    opacity: 1;
}

.dropdown-menu a {
    display: flex;
    align-items: start;
    padding: 0px;
    margin: 2px;
    text-decoration: none;
    transition: background 0.3s;
    font-size: clamp(16px, 2vw, 18px);
    align-items: start;
    gap:6px;
    color: rgb(100, 100, 100);

}

.dropdown-menu a:hover {
    color: rgb(11, 11, 11);
}

.dropdown-menu button {
    background-color: rgb(0, 0, 0, 0);
    border: none;
    color: #000000;
    font-size: 20px;
    width:60px;
    height: 30px;
    display: block;
}




/* Modal for Zoomed Image */
#zoom-modal {
    transition: opacity .4s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    z-index: 1000;

    
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(16, 15, 15, 0.8);
}

/* Zoomed Image */
#zoomed-photo {
    z-index: 1001;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1001;
    border-radius: 12px;
    border: 5px solid #FFF;
    box-shadow: 20px 20px 25px rgba(0, 0, 0, 0.4);
}

/* Close Button */
#close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 35px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1002;
}

/* Show Zoom Modal */
#zoom-modal.show {
    visibility: visible;
    opacity: 1;
}




/* Footer base styles */
footer {
    background-color: #121212e0;
    padding: 50px 0 20px;
    font-family: 'Roboto', 'Arial', sans-serif;
    color: white;
    /* font-size: clamp(18px, 3vw, 18px); */
    font-size: 16px;
}

/* Footer container */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-width: 1050px; */
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}


/* Footer column */
.footer-column {
    flex: 2;
    min-width: 200px;
    padding: 20px;
}
/* Business Name & Logo */
.footer-logo {
    box-shadow: 0 0 60px #142c6d65;
    width: 120px;
    margin-bottom: 10px;
    border-radius: 2px;
    object-fit: cover;
}


.business-name {
    font-size: 22px;
    font-weight: bold;
    color: #dbe038;
    
}

.business-tagline {
    font-size: 16px;
    color: #bbb;
}

/* Quick Links & Contact */
.footer-column h3 {
    font-weight: bold;
    margin-bottom: 15px;
    color: #dbe038;
    
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 8px 0;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bbb;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-column ul li a img {
    width: 15px;
    height: 15px;
}
.footer-column ul li a:hover {
    color: #ffffff;
}

.table-head{
    margin-right:100%;    
}

.Category {
    color: #bbb;
}
.Category:hover {
    color: #fff;
}

/* Contact Info */
.footer-contact-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-text img {
    width: 20px;
}

.footer-contact-text span {
    align-self: center;
}

/* Social Media Icons */
.social-icons{
    display: flex;
}
.social-icons a {
    display: inline-block;
    margin-inline: 2px;
}

.social-icons img {
    width: 22px;
    transition: opacity 0.3s ease;
}

.social-icons a:hover img {
    opacity: 0.8;
}

/* Developer Section */
.footer-column p {
    color: #bbb;
    margin: 5px 0;
}

.footer-column p a {
    color: #dbe038;
    text-decoration: none;
    font-weight: bold;
    
}

.footer-column p a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    color: #bbb;
}

.footer-bottom a {
    color: #dbe038;
    text-decoration: none;
    font-weight: bold;
}


.footer-bottom a:hover {
    color: white;
}



/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .table-head{
        margin: auto;
    }
    .social-icons{
        display: block;
    }
    .footer-column {
        padding: 15px 0;
    }

    .footer-contact-text {
        justify-content: start;
    }

    .social-icons a {
        margin: 5px;
    }
}


@media (min-width: 768px) and (max-width: 1000px) {
    .location-section{
        display: block;
        align-items: center;
        text-align: center;
        margin: auto;
    }
}

.dvs-section{
    min-width: 300px;
}
