:root {
    --color-blue: #061132;
    --color-blue-dark: #0d1b4d;
    --color-gold: #b98e54;
    --color-gold-light: #cfa66c;
    --color-white: #ffffff;
    --color-text-main: #f0f0f0;
    --color-text-muted: #cccccccc;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;

    --gradient-gold: linear-gradient(135deg, #b98e54 0%, #e6c88b 50%, #b98e54 100%);
    --shadow-gold: 0 4px 15px rgba(185, 142, 84, 0.3);

    --header-height: 120px;
}

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

body {
    background-color: var(--color-blue);
    color: var(--color-text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.cta-button,
.button-gold {
    background: var(--gradient-gold);
    color: var(--color-blue-dark);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-gold);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 142, 84, 0.5);
}

.cta-button.static-phone {
    cursor: default;
    /* Non-clickable */
    text-decoration: none;
    /* Ensure no underline if it inherited any */
}

.cta-button.static-phone:hover {
    transform: none;
    /* Disable hover movement if desired, or keep it for effect. Keeping it minimal. */
    box-shadow: var(--shadow-gold);
    /* Reset shadow to default on hover if we want no interaction feeling */
    cursor: default;
}

/* Header */
.site-header {
    background-color: rgba(6, 17, 50, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    /* Added shadow for depth */
}

.gold-line {
    height: 4px;
    /* Slightly thicker to be a 'perch' */
    background: var(--gradient-gold);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1001;
    /* Line is high z-index */
}

.header-content {
    height: var(--header-height);
    display: flex;
    justify-content: flex-start;
    /* Start from left */
    align-items: center;
    position: relative;
}

.logo-container {
    position: relative;
    z-index: 1002;
    /* Logo is higher than the line to 'sit' on it */
    height: 100%;
    display: flex;
    align-items: center;
}

.logo {
    /* Large logo that hangs down */
    height: 120px;
    width: auto;
    position: absolute;
    top: 0px;
    left: -70px;
    /* More to the left */
    transition: transform 0.3s;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    color: var(--color-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 130px;
    /* Increased margin to clear the logo */
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
    /* Push to right */
    margin-right: 30px;
    /* Space between nav and button */
}

.nav-link {
    color: var(--color-white);
    font-size: 0.9rem;
    /* Reduced slightly */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    background: none;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
    transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-blue);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    color: var(--color-gold);
    font-size: 3rem;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
}

.mobile-link:hover {
    color: var(--color-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        height: 80px;
        /* Reduced height for mobile */
    }

    .header-content {
        height: 100%;
        justify-content: center;
        /* Center the logo/name */
    }

    .border-gold {
        /* If used elsewhere, ensure it doesnt break */
    }

    .logo-container {
        justify-content: center;
        width: auto;
    }

    .logo {
        height: 50px;
        /* Smaller logo */
        width: auto;
        position: relative;
        /* Reset absolute positioning */
        top: auto;
        left: auto;
        margin-right: 10px;
        /* Space between logo and text */
        filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    }

    .company-name {
        margin-left: 0;
        /* Reset heavy margin */
        font-size: 1.1rem;
        /* Smaller text */
        white-space: nowrap;
    }

    .desktop-nav {
        display: none;
    }

    .header-actions {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger {
        display: flex;
    }

    .header-actions .cta-button {
        display: none;
    }

    /* Hide generic hello button on mobile header to save space, show in menu */
}

/* Page Layouts */
.page-container {
    padding: 120px 20px 60px;
    min-height: 100vh;
}

.page-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

/* Footer */
.site-footer {
    background: var(--color-blue-dark);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(185, 142, 84, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Utility Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}