/* Navbar Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: transparent;
    transition: all 0.3s ease;
}

.navbar.sticky {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0px 5%;
}

.logo img {
    height: 95px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 10px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.navbar.sticky .nav-links a {
    color: #333;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ce9233;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ce9233;
}

.nav-links a:hover::after {
    width: 100%;
}

.contact-btn .btn {
    display: inline-block;
    background-color: #ce9233;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-btn .btn:hover {
    background-color: transparent;
    border-color: #ce9233;
    color: #ce9233;
    transform: translateY(-3px);
}

.navbar.sticky .contact-btn .btn {
    background-color: #ce9233;
    color: white;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.navbar.sticky .hamburger span {
    background-color: #333;
}

/* Responsive Navbar */
@media (max-width: 992px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: #202020;
        flex-direction: column;
        justify-content: center;
        transition: left 0.5s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-links a {
        color: whitesmoke;
        font-size: 1.1rem;
        padding: 12px 20px;
        transition: all 0.3s ease;
        display: block;
        border: none;
        background-color: transparent;
    }
    
    .nav-links a:hover {
        background-color: rgba(206, 146, 51, 0.2);
        color: #ce9233;
        transform: translateX(5px);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .contact-btn {
        display: none;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -5px);
    }
    
    .navbar.sticky .nav-links a {
        color: whitesmoke;
    }
    
    .navbar.sticky .hamburger span {
        background-color: #333;
    }
}

@media (max-width: 768px) {
    main > div h1{
        font-size: 1.5rem;
    }
    .nav-links{
        justify-content: start;
    }
    .nav-links .firstli{
        margin-top: 40px;
    }
    .logo img {
        height: 45px;
    }
    
    .hamburger span {
        width: 22px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 80px;
    }
    
    .hamburger span {
        width: 20px;
    }
} 