@font-face {
    font-family: 'HelvNeue'; 
    src: url('assets/fonts/helvetica-neue-light.woff2') format('woff2'), /* Preferred format */
         url('assets/fonts/helvetica-neue-light.woff') format('woff'); /* Fallback */
    font-weight: 300; /* Adjust if your font has weights like bold (e.g., 400, 700) */
    font-style: normal; /* Adjust if italic, etc. */
    font-display: swap; /* Modern best practice: Shows fallback font while custom loads */
}

@font-face {
    font-family: 'HelvNeue'; 
    src: url('assets/fonts/helvetica-neue-roman.woff2') format('woff2'), /* Preferred format */
         url('assets/fonts/helvetica-neue-roman.woff') format('woff'); /* Fallback */
    font-weight: normal; /* Adjust if your font has weights like bold (e.g., 400, 700) */
    font-style: normal; /* Adjust if italic, etc. */
    font-display: swap; /* Modern best practice: Shows fallback font while custom loads */
}


body {
    font-family: 'HelvNeue', Arial, sans-serif;
    font-weight: normal;
    background-color: #eeedea;    
    margin: 0;   
    height: 100vh; 
}

h1 {
    font-family: 'HelvNeue', Arial, sans-serif;
    font-weight: 300;
}


/* =================================
   Header
   ================================= */

header {    
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;    
    align-items: center;        
    padding: 2.75rem 5.5rem; /* ~45px ~90px */     
    color: black;
}

/* --- Left Column --- */
.header-left h1 {
    margin: 0; 
    font-size: 2.25rem; /* 36px */
    text-transform: uppercase;
    letter-spacing: 1px;    
}

/* --- Right Column --- */
.header-right {
    display: flex;
    align-items: center;      
    gap: 1.5rem;
    
}

/* --- Links & Icons --- */
header a {
    color: inherit;    
    transition: opacity 0.2s ease;
}

header a:hover {
    opacity: 0.7; 
}

header a.contact-link {
    text-decoration: none;
    font-size: 2rem; /* 32px */
    letter-spacing: 1px;
}



.social-link img {
    /* This makes the icon's color match the text color automatically */
    /* fill: currentColor; */
    display: block; /* Helps prevent extra space below the icon */
    width: 35px;
    height: 35px;
}

.separator {
    height: 55px;
    border-left: 1px solid #000000; 
}


/* =================================
   Responsive Adjustments
   ================================= */

   
@media (max-width: 768px) {
    header {
        padding: 2.2rem 4.4rem; 
    }

    .header-left h1 {
        font-size: 1.8rem; 
    }

    .header-right {
        gap: 1.2rem; 
    }

    .header-right a.contact-link {
        font-size: 1.6rem;
    }

    .social-link img {
        width: 28px;
        height: 28px;
    }

    .separator {
        height: 44px;
    }
}

@media (max-width: 480px) {

    header {
        padding: 1.375rem 2.75rem; 
    }

    .header-left h1 {
        font-size: 1.125rem;
    }

    .header-right {
        gap: 0.75rem; 
    }
   
    .header-right a.contact-link {
        font-size: 1rem;
    }

    .social-link img {
        width: 25px;
        height: 25px;
    }

    .separator {
        height: 30px;
    }
    
}

/* =================================
   Background Slideshow
   ================================= */

#slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Behind your content */
}

#slideshow div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out; /* Adjust duration/timing as needed */
}

/* --- desktop override (for screens >768px wide and landscape) --- */
@media (min-width: 768px) and (orientation : landscape) {

    #slideshow div { 
        background-size: cover;
        background-position: center;
    }
}