@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Poppins:wght@400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'Haettenschweiler';
    src: local('Haettenschweiler'), local('Impact'), local('Anton');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #FFFFFF;
    --black: #000000;
    --golden: #e2af44;
}

.white {
    color: var(--white) !important;
}

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

*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #000000;
}

body {
    color: var(--white);
    font-family: 'Bebas Neue', 'Anton', sans-serif;
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { 
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    line-height: 1;
    color: var(--white);
    font-weight: 400;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
    margin-bottom: 0;
}

h1 { font-size: 60px; }
h2 { font-size: 40px; }
h3 { font-size: 36px; }
h4 { font-size: 28px; }
h5 { font-size: 24px; }
h6 { font-size: 21px; }

p {
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 15px;
}

p:last-child { margin-bottom: 0; }
ul, ol { list-style-type: none; margin: 0; padding: 0; }

a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}

span {
    display: inline-block;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn-check:focus+.btn, .btn:focus {
    box-shadow: none;
}

:focus-visible { 
    outline: none;
}

/* Home Start *********************************************/
.home {
    background-image: url(../images/banner.png);
    min-height: 100vh;
    min-height: 100dvh;
    padding: 40px 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
    color: var(--white);
}

.home-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    row-gap: 12px;
    text-align: center;
}

.home-inner .top-content-bx {
    width: 100%;
    margin: 0 auto;
}

.home-inner .top-content-bx h1 {
    font-size: 95px;
    line-height: 1;
    font-family: 'Haettenschweiler', 'Anton', 'Impact', 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.home-inner .btm-content-bx {
    max-width: 70%;
    width: 100%;
    margin: 15px auto;
}

.white-box {
    max-width: 90%;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.white-box h2 {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 38px;
    background-color: var(--white);
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    font-weight: 800;
    border-radius: 30px;
    margin: 0 auto 8px;
    padding: 4px 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.white-box h2::before,
.white-box h2::after {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    border-radius: 50%;
    background-color: var(--black);
    top: 50%;
    transform: translate(0, -50%);
}

.white-box h2::before {
    left: 18px;
}

.white-box h2::after {
    right: 18px;
}

.logo-box img {
    max-width: 48%;
    width: 100%;
    margin: 0 auto 15px;
    transition: transform 0.2s ease;
}

.logo-box img:hover {
    transform: scale(1.04);
}

.middle-text-box h3 {
    font-size: 42px;
    text-transform: uppercase;
    font-family: 'Bebas Neue', 'Anton', sans-serif;
    letter-spacing: 0.5px;
}

.center-part {
    width: 100%;
    max-width: 90%;
}

.line-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    color: var(--white);
    font-weight: 600;   
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.line-text span.line {
    width: 32%;
    height: 2px;
    background: var(--white);
}

.middle-btn-box span {
    background: var(--white);
    color: var(--black);
    padding: 3px;
    border-radius: 50px;
    text-align: center;
    width: 45%;
    font-size: 20px;
}

.middle-btn-box {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.btm-part {
    width: 100%;
}

.boxes {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin: 0 auto;
}

.boxes .box {
    padding: 8px 12px;
    text-align: center;
    flex-shrink: 0;
    font-size: 32px;
    line-height: 1.1;
    color: var(--black);
    font-family: 'Bebas Neue', 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}

.golden-gradient {
    background: url(../images/btn-bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.btm-img {
    max-width: 90%;
    margin: 25px auto 10px;
    width: 100%;
    transition: transform 0.2s ease;
}

.btm-img:hover {
    transform: scale(1.02);
}

.zoom-in {
    cursor: pointer;
}

.btm-content-bx a img {
    filter: drop-shadow(0 4px 12px rgba(226, 175, 68, 0.3));
    transition: transform 0.2s ease;
}

.btm-content-bx a:hover img {
    transform: scale(1.02);
}

/* Responsive Styles ******************************/
@media (max-width: 1399px) {
    .logo-box img {
        max-width: 40%;
    }
    .home-inner .top-content-bx h1 {
        font-size: 85px;
        line-height: 85px;
    }
    .middle-text-box h3 {
        font-size: 36px;
    }
    .home-inner .btm-content-bx {
        max-width: 60%;
        margin: 15px auto;
    }
    .boxes .box {
        padding: 6px;
        font-size: 30px;
    }
    .boxes {
        gap: 12px;
    }
    .white-box {
        max-width: 85%;
    }
    .white-box h2 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .white-box {
        max-width: 100%;
    }
    .line-text {
        font-size: 16px;
        gap: 8px;
    }
    .boxes .box {
        padding: 6px;
    }
    .home-inner .btm-content-bx {
        max-width: 72%;
        margin: 14px auto;
    }
    .boxes {
        width: 70%;
    }
}

@media (max-width: 479px) {
    .home {
        padding: 30px 0 20px;
    }
    .home-inner .top-content-bx h1 {
        font-size: 78px;
        line-height: 80px;
    }
    .white-box h2 {
        font-size: 19px;
        line-height: 32px;
        max-width: 92%;
        width: 100%;
        margin-bottom: 0;
        padding: 4px 10px;
    }
    .white-box h2::before {
        left: 12px;
        width: 10px;
        height: 10px;
    }
    .white-box h2::after {
        right: 12px;
        width: 10px;
        height: 10px;
    }
    .logo-box img {
        margin: 0 auto 10px;
        max-width: 42%;
    }
    .middle-text-box h3 {
        font-size: 30px;
    }
    .center-part {
        max-width: 100%;
        padding: 0 5px;
    }
}

@media (max-width: 360px) {
    .home-inner .top-content-bx h1 {
        font-size: 64px;
        line-height: 64px;
        margin-bottom: 5px;
    }
    .home-inner {
        row-gap: 8px;
    }
    .middle-btn-box span {
        font-size: 16px;
    }
    .logo-box img {
        max-width: 40%;
    }
    .middle-text-box h3 {
        font-size: 24px;
    }
    .btm-img {
        margin-top: 18px;
    }
    .white-box h2 {
        font-size: 16px;
        line-height: 28px;
    }
    .boxes .box {
        font-size: 26px;
    }
}
