@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body{
    font-family: 'Montserrat', sans-serif;
    background: #000;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    min-height: 100vh;
}

.page{
    width: 100vw;
    height: 100vh;
    max-width: none;
    margin: 0;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    background-image: url('./assets/images/bg.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.page::before{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
    pointer-events: none;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding: 0 24px;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 46px 0 46px 0;
    border-bottom: #FFFFFF20 1px solid;
    position: relative;
    z-index: 2;
}

.site-logo{
    height: 100%;
    width: 100%;
    display: block;
}

section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 168px;
    height: 100%;
    flex: 1 1 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

section .container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
}



.section-title{
    font-size: 130px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 93px;
    margin-bottom: 32px;
    color: white;
}

.section-description{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    color: white;
}


@media (max-width: 900px){
    section{ padding-top: 80px; }
    .section-title{ font-size: clamp(7rem, 9.5vw, 4.5rem); line-height: 1.1;}
    .section-description{margin-top: 15px;}
    .cta-button{ margin-top: 50px; }

    header{ padding: 20px 0; }
}

@media (max-width: 480px){
    .section-title{ font-size: 5rem; line-height: 1.1; }
    .hero__footer-row{ flex-direction: column; gap: 6px; align-items: flex-start; }

    
}

.hero__footer{
    background:#231F20;
    color: #fff;
    padding: 37px 24px;
    z-index: 2;
    flex: 0 0 auto;
}

.hero__footer-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero__copy{
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 100%;
    color: #bbb;
}

.hero__credit{
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.hero__credit img{
    width:66px;
    height: 12px;
    width: auto;
    display: block;
}
