/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Apply font to all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.nav-actions {
    display: flex;
    align-items: center;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    padding: 0.3rem clamp(1rem, 5vw, 2rem) 0.7rem;
    background-color: white;
    z-index: 1000;
    height: 60px;
    width: 100%;
    position: absolute;
    top: 0;
    box-sizing: border-box;
    position: fixed;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.company-name {
    color: Black;
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.company-name:hover {
    color: #daa520;
}

@media (max-width: 768px) {
    .company-name {
        display: none;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    height: 45px;
    width: auto;
}

.brand-text {
    color: white;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: clamp(1rem, 4vw, 3rem);
    margin-right: clamp(0.5rem, 3vw, 2rem);
}

.nav-link {
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}


.nav-link:hover {
    color: #daa520;
    transform: scale(1.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #daa520;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile menu button - only shows on small screens */
.mobile-menu-btn {
    display: none; 
    background: none;
    border: none;
    color: black; 
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    z-index: 1001; 
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
    color: #daa520; 
}

@media (max-width: 768px) {
    .nav-links {
        display: none; 
        position: fixed;
        top: 80px; 
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

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


    .mobile-menu-btn {
        display: block; 
    }

    /* When menu is active, switch to X icon */
    .mobile-menu-btn.active .fa-times {
        display: block;
    }

    .nav-link {
        color: white;
        font-size: 1.5rem; 
        text-align: center;
    }

    .nav-brand {
        position: relative;
        z-index: 1001;
    }
}

/* Container for all sections */
.container {
    /* Responsive container to ensure content scales on smaller screens */
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

/* Footer Styles */
.footer {
    background-color: black;
    padding: 40px 20px;
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    padding: 0 1rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.follow-us-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.follow-us-links {
    flex: 1;
}

.footer-section h3 {
    text-align: left;
    margin-bottom: 1rem;
}

.footer-section p {
    text-align: left;
    margin: 0;
    line-height: 1.5;
}

.footer-section .contact-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
    line-height: 1.2;
    width: auto;
    gap: 0;
    align-items: flex-start;
}

.footer-section .contact-link i {
    margin-right: 8px;
}

.footer-section .contact-link:hover {
    color: #daa520;
    transform: none; 
}

.footer-logo-tag {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    margin-top: 0;
    background-color: #DBDBDB;
    border-radius: 20px;
}

.footer-logo-img {
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: 0;
    border-radius: 20px;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo-img {
        height: 60px;
    }
    
    .footer-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section p {
        text-align: center;
    }
} 