/* Reset & Base Variables */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #05070A;
    --text-light: #F3F4F6;
    --text-muted: #8E95A2;
    --accent: #A3B1C6;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
}

html, body {
    height: 100%;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

/* Fullscreen Splash Setup with Local Background Asset */
.splash-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    /* Decoupled asset linking ensuring instantaneous local display */
    background-image: linear-gradient(
          to bottom, 
          rgba(5, 7, 10, 0.75) 0%, 
          rgba(5, 7, 10, 0.85) 40%, 
          rgba(5, 7, 10, 0.95) 100%
        ), 
        url('../images/bosphorus.jpg');
    
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: var(--bg-dark);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.italic {
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 300;
}

/* Header */
.navbar {
    padding: 3.5rem 0;
}

.logo {
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--text-light);
    display: inline-block;
}

/* Hero Centered Section */
.hero-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 6rem;
}

.slogan {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.divider {
    width: 30px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 2.5rem auto;
}

.location {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-email {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    font-weight: 300;
}

.contact-email:hover {
    color: var(--text-light);
}

/* Footer & Disclaimers */
.footer {
    padding: 3.5rem 0;
}

.disclosure {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.3);
    max-width: 720px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.disclosure strong {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.copyright {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.18);
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    html, body {
        overflow: auto;
    }
    .slogan {
        font-size: 2.6rem;
    }
    .navbar {
        padding: 2.5rem 0;
    }
    .hero-container {
        padding: 5rem 0;
    }
}
