/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
    background: #001440;
    color: #fff;
    line-height: 1.6;
}

body, html {height:100%; margin:0;}

body {background:#12365a; min-height:100vh; overflow-x:hidden;
	padding-top: 100px;}


/* HEADER */

.site-header {
    position: fixed;
    top: 0;
        left: 0;
    width: 100%;
    height: 100px;
    background: rgba(8, 18, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid silver;
}

.header-container {
    max-width: 1400px;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}


    .logo img {
        width: 133px;
        height: 100px;
        object-fit: contain;
        display: block;
    }



/* NAVIGATION */

.navbar {
    display: flex;
  justify-content:space-between;
    align-items: center;
        margin-left: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: silver;
    text-decoration: none;
    font-size: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s;
}

.nav-links a:hover {
    color: #fff;
}



.welcome {
  font-size: clamp(3rem, 7.5vw, 6rem);
  color: white;
  text-shadow: 0 3px 8px rgba(0,0,0,.25);
  line-height: 1;
  font-weight: 400;
}





/* SLIDESHOW */

    header{
        position:relative;
        width:100%;
        height:100vh;
        overflow:hidden;
    }

    .slide{
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background-size:cover;
        background-position:center;
        opacity:0;
        animation:fade 9s infinite;
    }

    .slide:nth-child(1){
        background-image:url('/assets/slide-sunset-breakfast.jpg');
        animation-delay:0s;
    }

    .slide:nth-child(2){
        background-image:url('/assets/slide-sunset-drinks.jpg');
        animation-delay:3s;
    }

    .slide:nth-child(3){
        background-image:url('/assets/slide-sunset-dinner.jpg');
        animation-delay:6s;
    }

    @keyframes fade{
        0%{opacity:0;}
        10%{opacity:1;}
        30%{opacity:1;}
        40%{opacity:0;}
        100%{opacity:0;}
    }







/* CONTENT SECTIONS */

.info-section,
.about-section {
    padding: 20px 10px;
    text-align: center;
    width: 1000px;
	max-width:90%;
    margin: auto;
}

.info-section h2,
.about-section h2 {
    font-size: 2rem;
    color: silver;
    margin-bottom: 10px;
}

.info-section p,
.about-section p {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

/* FOOTER */

footer {
    background: #050b14;
    border-top: 1px solid silver;
    text-align: center;
    padding: 30px 20px;
    color: silver;
}








/* MOBILE */

/* ===== MOBILE RESPONSIVE ===== */

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {

  a, p a {color:inherit;}

    body {
        padding-top: 80px;
    }

    /* Header */
    .site-header {
        height: 80px;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo img {
        width: auto;
        height: 70px;
    }

    /* Navigation */
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-links a {
        font-size: 1rem;
    }

    /* Slideshow */
    header {
        height: 60vh;
    }

    /* Content */
    .info-section,
    .about-section {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
    }

    .info-section h2,
    .about-section h2 {
        font-size: 1.6rem;
    }

    .info-section p,
    .about-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {

/*    .header-container {
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }
*/

    .site-header {
        height: 100px;
    }

    body {
        padding-top: 100px;
    }

    .logo img {
        height: 50px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    header {
        height: 50vh;
    }

    .info-section p,
    .about-section p {
        font-size: 1rem;
    }
}