/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

/* Header Styling */
.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #333;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-contact {
    display: flex;
    gap: 2rem;
}

.contact-item {
    font-size: 1rem;
    font-weight: 500;
    color: #f1f1f1;
    display: flex;
    align-items: center;
}

.contact-item span {
    font-weight: bold;
    color: #ffd700;
    margin-right: 0.5rem;
}

.header-contact a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact a:hover {
    color: #fff;
}

/* Responsive Header */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .header-contact {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }
}

/* Navbar Styling */
.navbar {
    background-color: #333;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 45px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    background-color: #b8860b;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.3rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: transform 0.3s ease;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        padding: 1rem;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Footer Styling */
.footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    border-top: 3px solid #ffd700;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.1);
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 1rem 0;
}

.footer-links a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 1rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    font-size: 24px;
    background-color: #ffd700;
    color: #333;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-to-top:hover {
    background-color: #e5ac00;
    color: #fff;
}
