/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Porsche Next';
    src: url('./fonts/PorscheNextArabicTT-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Porsche Next';
    src: url('./fonts/PorscheNextArabicTT-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-color: #213E7C;
    --background-color: #EFEADC;
    --text-color: #213E7C;
    --white-color: #FFFFFF;
    --border-radius: 0.5rem;
}

html {
    font-size: 62.5%; /* 1rem = 10px (62.5% of 16px) */
}

body {
    font-family: 'Porsche Next', Arial, sans-serif;
    line-height: 1.4;
    color: var(--text-color);
    font-size: 1.6rem; /* 16px */
    background-color: var(--background-color);
}

.container {
    max-width: 40rem;
    margin: 0 auto;
    position: relative;
}
h1 {
    padding: 10rem 0 0 0;
    font-size: 5.4rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 600;
    margin-bottom: auto;
    color: var(--white-color);
}
a {
    text-decoration: none;
    color: var(--text-color);
}
.hero {
    background-image: url(https://pcee-porsche.com/911mediadrivegreece/images/bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: var(--primary-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    padding: 0 3rem 3rem 3rem;
}

.hero img {
    width: 100%;
    display: block;
    height: auto;
    margin: 0 auto 1.5rem auto;
}
.hero .spacer {
    height: 55vw;
    height: 55svw;
    max-height: 23rem;
}
.btn {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
}
.btn-secondary {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 1.5rem;
    margin: 3.5rem 0 1.5rem 0;
    padding: 1.5rem;
    border: solid 0.1rem var(--white-color);
    border-radius: var(--border-radius);
    color: var(--white-color);
    text-align: center;
    font-weight: 600;
}
.btn strong {
    display: block;
    padding: 0 1rem;
}

.btn small {
    font-size: 1rem;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    opacity: 0.5;
}
header {
    padding: 4rem 3rem 6rem 3rem;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
header img {
    width: 100%;
    max-width: 24.8rem;
}


footer {
    padding: 2rem 0 4rem 0;
    text-align: center;
}

@media (min-width: 500px) {
    .hero {
       
    }
    .hero .spacer {
        
    }
}