/* Base Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #FFD700, #FFBF00); /* Golden gradient */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* Stronger shadow for 3D effect */
    height: 95px; /* Increased height for better space */
    display: flex;
    flex-direction: column; /* Stack logo and menu vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    padding: 0 15px;
    box-sizing: border-box;
    transition: background 0.3s ease; /* Smooth background transition */
}

/* Adjust the body to account for the fixed header */
body {
    margin-top: 80px; /* Adjust based on header height */
}

/* Logo Styles */
header .logo a {
    display: flex;
    flex-direction: row;
    justify-content: center; /* Center menu items horizontally */
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 2.2rem; /* Increased font size */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 10px; /* Slightly increase letter spacing for a premium feel */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow for the logo */
    margin-bottom: 1px; /* Space between logo and navigation */
}

/* Navigation Styles */
nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center; /* Center menu items horizontally */
    gap: 15px; /* Larger gap between buttons for a cleaner look */
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
}

/* Navigation Link Styles */
nav ul li a {
    display: inline-block;
    text-decoration: none;
    color: white;
    font-size: 1rem; /* Adjust font size */
    padding: 8px 16px; /* Comfortable padding for luxury feel */
    border-radius: 8px; /* Rounded corners */
    background-color: rgba(0, 0, 0, 0.25); /* Darker base background */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}

/* Hover Effect for Navigation Links */
nav ul li a:hover {
    background-color: #FF6F00; /* Golden orange on hover */
    color: white;
    transform: translateY(-5px); /* Slight lift effect */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8); /* Glowing text effect */
}

/* Active State for Navigation Links */
nav ul li a:active {
    transform: translateY(2px); /* Slight downward press effect */
    background-color: #FFC107; /* Slightly darker golden on active */
}

/* Mobile View Buttons */
@media (max-width: 768px) {
    nav ul {
        flex-wrap: wrap; /* Allow buttons to wrap if needed */
        gap: 10px; /* Smaller gap between buttons */
        justify-content: center; /* Spread buttons evenly */
    }

    nav ul li {
        flex: 2; /* Equal width for all buttons */
        text-align: center;
    }

    nav ul li a {
        font-size: 0.9rem; /* Slightly smaller font size for mobile */
        padding: 8px 12px; /* Adjust padding */
        border-radius: 6px; /* Slightly smaller rounded corners */
    }
}

/* Extra Small Device Adjustments */
@media (max-width: 480px) {
    nav ul {
        gap: 3px; /* Minimize spacing for smaller screens */
    }

    nav ul li a {
        font-size: 0.8rem; /* Further reduce font size */
        padding: 6px 10px; /* Smaller padding */
    }
    
    header .logo a {
    
    font-size: 1.6rem; /* Increased font size */
    
    
    letter-spacing: 0.6px; /* Slightly increase letter spacing for a premium feel */
    
}
}
