@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary-blue: #1d2d4d;
    --gold: #c59d3f;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Deep dark blue/black background */
    color: var(--white);
    line-height: 1.6;
}

h1, h2, .logo-text {
    font-family: 'Playfair Display', serif;
}

/* --- Frosted Glass Navbar --- */
/* --- Updated Frosted Glass Navbar --- */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    background: var(--glass-bg); /* Default: very light white */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    
    /* Smooth transition for the color flip */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li a {
    color: var(--white); /* Start as white */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.4s ease;
}

.nav-links li a:hover {
    color: var(--gold);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.8); /* Whiter glass */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Darker border */
    top: 10px; /* Moves up slightly for a sleeker look on scroll */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

nav.scrolled .nav-links li a {
    color: var(--primary-blue); /* Text flips to dark blue */
}

nav.scrolled .nav-links li a:hover {
    color: var(--gold); /* Keep gold hover for consistency */
}
/* --- Hero Section with Logo Incorporation --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.296), rgb(0, 0, 0)), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero-branding {
    max-width: 800px;
}

/* Stylized Logo within Landing Page */
.main-logo {
    margin-bottom: 20px;
}
.maino-logogo {
    max-height: 320px;
}

.brand-sub {
    color: var(--gold);
    letter-spacing: 5px;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

/* Formal Buttons */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-formal {
    padding: 15px 40px;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.4s;
}

.btn-formal.primary {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-formal:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Sections */
.section {
    padding: 100px 10%;
    background: #ffffff;
    color: var(--primary-blue);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title .underline {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
}

.blueblock {
    background-color: var(--primary-blue);
    min-height: 200px;
}