        @font-face {
  font-family: 'Lato-Regular';
  src: url('../fonts/Lato-Regular.ttf') format('opentype');
  font-style: normal;
}





   :root {
        font-size: 16px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: "Lato-Regular";
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    /* Offer Strip */
    .offer-strip {
       background: #fe9d4e;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    height: 8.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    /* Hero Section */
    .hero {
        flex: 1;
        width: 100%;
        height: 92vh;
        position: relative;
        overflow: hidden;
    }

    .hero a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .hero picture {
        width: 100%;
        height: 100%;
    }
    
     .hero img {
        width: 100%;
        height: 92vh;
         display: block;
    }

    .hero img {
        object-fit: cover;
    }

    /* Footer */
    footer {
            background: #111;
    color: #fff;
    text-align: center;
    padding: 1.5rem 2vw;
    font-size: 1.2rem;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    footer a {
        color: #fff;
        text-decoration: none;
        margin: 0 0.5em;
        font-size: 1.2rem;
    }

    footer a:hover {
        text-decoration: underline;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
        
        .offer-strip {
    height: 8vh;
        }
        
         .hero {
        height: 82vh;
    }
    
     .hero img {
        height: 82vh;
    }
        
        .offer-strip {
            font-size: 1.3rem;
            padding: 2rem 1rem;
        }


        footer {
            font-size: 1rem;
            padding: 1rem 4vw;
        }
        
        footer a {
        margin: 0 ;
    }
    }