.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid #be8a32;
    padding: 7px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #be8a32;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-placeholder {
    height: 20px;
    width: 100px;
}

body {
    padding-top: 80px;
}

#main-footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    border-top: 1px solid #be8a32;
    padding: 20px 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    pointer-events: auto;
    overflow: visible;
    max-height: none !important;
}

#main-footer.visible {
    bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    overflow: visible;
}

.footer-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px; 
    min-height: 80px;
}

.footer-image img {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    border: 2px solid #be8a32;
    border-radius: 8px; 
    background: rgba(255, 255, 255, 0); 
    padding: 4px; 
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #be8a32;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    gap: 30px;
    text-align: right;
}

.contact-numbers p,
.contact-emails p,
.contact-address p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #ffffff;
}

.contact-numbers p:first-child,
.contact-emails p:first-child,
.contact-address p:first-child {
    font-weight: 600;
    color: #be8a32;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    body {
        padding-top: 70px;
    }
    
    #main-footer {
        max-height: none !important;
        overflow: visible !important;
        height: auto !important;
        padding: 15px 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 0 15px;
        overflow: visible;
        height: auto;
    }
    
    .footer-contact {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        width: 100%;
    }
    
    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .footer-image {
        min-width: 70px;
        min-height: 70px;
    }
    
    .footer-image img {
        max-width: 100px;
        max-height: 100px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    
    .logo-image {
        height: 30px;
    }
    
    body {
        padding-top: 60px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-contact {
        gap: 10px;
    }
    
    .contact-numbers p,
    .contact-emails p,
    .contact-address p {
        font-size: 12px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-image {
        min-width: 60px;
        min-height: 60px;
    }
    
    .footer-image img {
        max-width: 80px;
        max-height: 80px;
    }
}

@media (max-width: 300px) {
    #main-footer {
        display: block !important;
    }
}

@media (max-height: 500px) {
    #main-footer {
        max-height: none !important;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .footer-image {
        min-width: 100px;
        min-height: 100px;
    }
    
    .footer-image img {
        max-width: 140px;
        max-height: 140px;
    }
}

.header-cta {
    display: inline-block;
    padding: 6px 12px;
    background: transparent;
    color: #be8a32;
    border: 2px solid #be8a32;
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #be8a32;
    color: #000;
}