* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 200vh;
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.5s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: relative;
}

.navbar.scrolled {
    background-color: rgba(10, 20, 30, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .navbar-container {
    padding: 15px 50px;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

/* Navigation links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #958e8e;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ff7e5f;
}

/* Underline animation */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Booking button */
.booking-btn {
    position: relative;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #feb47b, #ff7e5f);
    border-radius: 50px;
    z-index: -1;
    transition: all 0.5s ease;
    opacity: 0;
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.booking-btn:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.booking-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.booking-btn:hover i {
    transform: translateX(5px);
}

/* Progress bar */
.progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    transition: width 0.1s ease-out;
}

/* Placeholder content */
.content-placeholder {
    height: 200vh;
    padding-top: 100vh;
    text-align: center;
    color: white;
    font-size: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
}

/* Hamburger Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: center;
}

/* Responsive styles */
@media (max-width: 1100px) {
    .navbar-container {
        padding: 20px 30px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links li a {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .navbar-container {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(10, 20, 30, 0.98);
        padding: 30px 20px;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .booking-btn {
        position: absolute;
        top: 20px;
        right: 80px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .navbar.scrolled .navbar-container {
        padding: 15px 30px;
    }
    
    .navbar.scrolled .booking-btn {
        top: 15px;
    }
}

@media (max-width: 600px) {
    .booking-btn {
        display: none;
    }
    
    .nav-links {
        padding: 20px;
    }
    
    .navbar-container {
        padding: 15px 20px;
    }
    
    .navbar.scrolled .navbar-container {
        padding: 10px 20px;
    }
}