/* ==========================
   CUSTOM FONT
========================== */

@font-face {
    font-family: 'PlayfairDisplay';
    src: url('./PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* ==========================
   GLOBAL
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'PlayfairDisplay', Arial, sans-serif;
}

html,
body{
    width:100%;
    height:100%;
    overflow-x:hidden;
}

/* ==========================
   SLIDESHOW
========================== */

.slideshow{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    z-index:-3;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    opacity:0;
    transition:opacity 2s ease-in-out;
}

.slide.active{
    opacity:1;
}

/* ==========================
   DARK OVERLAY
========================== */

.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.35);
    z-index:-2;
}

/* ==========================
   NAVIGATION BAR
========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:60px;
    background:#FFD400;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 40px;
    z-index:9999;
    box-shadow:0 2px 10px rgba(0,0,0,.25);
}

.logo{
    font-family:'PlayfairDisplay', Arial, sans-serif;
    font-weight:700;
    font-size:15px;
    color:#000;
    white-space:nowrap;
    line-height:1;
    margin-left: 5px;
    text-transform:uppercase;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:35px;
}

.nav-links li a{
    text-decoration:none;
    font-family:Arial, Helvetica, sans-serif;
    font-weight:700;
    color:#000;
    text-transform:uppercase;
    font-size:18px;
    letter-spacing:1px;
    transition:.3s;
}

.nav-links li a:hover{
    opacity:.65;
}

/* ==========================
   PAGE CONTENT
========================== */

.content{
    position:relative;
    z-index:10;
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding: 150px 0px 0px 0px;
	
}

.content h1{
    font-family:'PlayfairDisplay', Arial, sans-serif;
    font-size:clamp(48px,8vw,100px);
    margin-bottom:20px;
    text-shadow:0 0 15px rgba(0,0,0,.8);
    text-transform:uppercase;
}

.content h2{
    font-family:'PlayfairDisplay', Arial, sans-serif;
    font-size:clamp(28px,5vw,60px);
    margin-bottom:20px;
    text-shadow:0 0 15px rgba(0,0,0,.8);
}

.content p{
    max-width:800px;
    font-size:clamp(18px,2vw,28px);
    line-height:1.5;
    text-shadow:0 0 10px rgba(0,0,0,.8);
}

.btn{
    margin-top:30px;
    display:inline-block;
    padding:15px 40px;
    background:#FFD400;
    color:#000;
    text-decoration:none;
    font-weight:700;
    border-radius:5px;
    transition:.3s;
    text-transform:uppercase;
	font-family:Arial, Helvetica, sans-serif;
}

.btn:hover{
    background:#ffffff;
}

/* ==========================
   GENERAL TEXT ELEMENTS
========================== */

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:'PlayfairDisplay', Arial, sans-serif;
    font-weight:700;
}

p,
li,
span,
div,
a,
button{
    font-family:'PlayfairDisplay', Arial, sans-serif;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:1100px){

    .navbar{
        flex-direction:column;
        justify-content:center;
        height:auto;
        padding:15px;
    }

    .logo{
        margin-left:0;
        margin-bottom:15px;
        text-align:center;
        font-size:16px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .nav-links li a{
        font-size:15px;
    }

    .content h1{
        font-size:clamp(40px,10vw,70px);
    }

    .content p{
        font-size:18px;
    }

}