/* CSS Reset & Variables */
:root {
    --color-navy: #0B0C10;
    --color-gold: #F7D117;
    --color-white: #FFFFFF;
    --color-silver: #E0E0E0;
    --color-accent: #1F2833;
    
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-navy);
    color: var(--color-white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header & Navigation */
.main-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute; /* overlay on top of hero background */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

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

.logo-script {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--color-white);
    line-height: 0.8;
}

.logo-sans {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-left: 2rem;
    color: var(--color-silver);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--color-gold);
}

.search-icon {
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    /* User specified background image */
    background-image: url('../images/slide-bg-one_D-Irims.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    /* Adjust based on the image's non-transparent subject location. Assuming subject is on left, text goes right. */
    justify-content: flex-end; 
    padding-right: 10%;
}

/* Add a subtle overlay so text stands out if needed */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 12, 16, 0.2) 0%, rgba(11, 12, 16, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
}

.hero-content .pre-header {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--color-silver);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.hero-content .main-header {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-navy);
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #e0bc14;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-accent);
    color: var(--color-silver);
    font-size: 0.9rem;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-content .main-header {
        font-size: 3.5rem;
    }
    .hero-section {
        justify-content: center;
        padding-right: 0;
    }
    .nav-menu {
        display: none; /* Mobile menu implementation for later */
    }
}
