/* ==========================
   IMPORTED FONTS
   ========================== */
@import url('https://fonts.googleapis.com/css2?family=Grandiflora+One&display=swap'); /* Luxury Font */
@import url('https://fonts.googleapis.com/css2?family=Arial&display=swap'); /* Clean Font */

/* ==========================
   GLOBAL STYLES (Applies to all elements)
   ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

/* Darker Background for Better Contrast */
body {
    background-color: #1C1F26; /* Dark Navy-Gray */
    color: #F5F5F5; /* Light Gray */
    font-family: 'Arial', sans-serif;
}

/* ==========================
   NAVIGATION BAR
   ========================== */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    background: #29323C; /* Dark Gray-Blue */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Logo in Navbar */
.logo {
    font-family: 'Grandiflora One', serif; /* Luxury Font */
    font-size: 2.5rem;
    color: #03A9F4; /* Bright Cyan */
    text-transform: lowercase;
    font-weight: bold;
    letter-spacing: 1px;
    padding-left: 20px;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* Main Nav Items */
.nav-item {
    position: relative;
}

/* Main Nav Links */
.nav-item a {
    color: #A5C9F2; /* Soft Blue */
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px;
    display: block;
}

/* Dropdown Menus (Hidden by Default) */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #35404D; /* Slightly Lighter Gray */
    padding: 10px;
    border-radius: 5px;
    width: 160px;
}

/* Dropdown Menu Items */
.dropdown li {
    list-style: none;
}

/* Dropdown Menu Links */
.dropdown li a {
    color: #F5F5F5;
    font-size: 1rem;
    padding: 8px 12px;
    display: block;
    transition: background 0.3s ease-in-out;
}

/* Hover Effect on Dropdown Links */
.dropdown li a:hover {
    background: #03A9F4; /* Bright Cyan */
    color: #1C1F26; /* Dark Background for Contrast */
}

/* Show Dropdown Menu on Hover */
.nav-item:hover .dropdown {
    display: block;
}

/* ==========================
   HERO SECTION
   ========================== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1C1F26; /* Solid Dark Background */
}

/* Large Glimmr Text */
.glimmr-logo {
    font-family: 'Grandiflora One', serif;
    font-size: 9rem; /* Huge Impact */
    color: #03A9F4; /* Bright Cyan */
    text-transform: lowercase;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Slogan */
.tagline {
    font-size: 1.8rem;
    font-weight: 400;
    color: #A5C9F2; /* Soft Blue */
    margin-top: 5px;
}

/* "Coming Soon" */
.coming-soon {
    font-size: 1.8rem;
    font-weight: bold;
    color: #A5C9F2;
    margin-top: 20px;
    text-transform: lowercase;
}

/* ==========================
   FOOTER
   ========================== */
footer {
    padding: 20px;
    margin-top: 30px;
    background: #29323C;
    color: #A5C9F2;
    font-weight: bold;
}
