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

:root {
    --primary-color: #C59E01;
    --secondary-color: #2696E9;
    --text-color: #fff;
    --background-color: rgba(1, 1, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.5;
}

header {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    transition: 0.5s ease;
    background: transparent;
}

header .title {
    color: var(--text-color);
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

header .navigation {
    position: relative;
}

header .navigation .navigation-items a {
    position: relative;
    color: var(--text-color);
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:before {
    content: ' ';
    position: absolute;
    background: var(--text-color);
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before {
    width: 100%;
}

section {
    padding: 100px 5%;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: var(--secondary-color);
}

.home:before {
    z-index: 777;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
}

.home .content {
    z-index: 888;
    color: var(--text-color);
    width: 70%;
    margin-top: 50px;
    display: none;
}

.home .content.active {
    display: block;
}

.home .content h1 {
    font-size: 4em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.home .content h1 span {
    font-size: 1.2em;
    font-weight: 600;
}

.home .content p {
    margin-bottom: 65px;
}

.home .content a {
    background: var(--text-color);
    padding: 15px 35px;
    color: var(--secondary-color);
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    display: inline-block;
}

.home .media-icons {
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}

.home .media-icons a {
    color: var(--text-color);
    font-size: 1.6em;
    transition: 0.3s ease;
}

.home .media-icons a:not(:last-child) {
    margin-bottom: 20px;
}

.home .media-icons a:hover {
    transform: scale(1.3);
}

.home video {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-navigation {
    z-index: 888;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(clamp(40px, 8vw, 80px));
    margin-bottom: 12px;
    width: 100%;
    padding: 0 20px;
}

.slider-navigation .nav-btn {
    width: clamp(20px, 4vw, 30px);
    height: clamp(20px, 4vw, 30px);
    position: relative;
    cursor: pointer;
    border: 2px solid var(--text-color);
    transform: rotate(45deg);
    transition: 0.3s ease;
}

/* Left arrow */
.slider-navigation .nav-btn:first-child {
    border-right: none;
    border-top: none;
    margin-right: clamp(20px, 5vw, 40px);
}

/* Right arrow */
.slider-navigation .nav-btn:last-child {
    border-left: none;
    border-bottom: none;
    margin-left: clamp(20px, 5vw, 40px);
}

.slider-navigation .nav-btn:hover {
    transform: rotate(45deg) scale(1.2);
    border-color: var(--secondary-color);
}

.slider-navigation .nav-btn.active {
    border-color: var(--secondary-color);
}

/* Media Queries for border thickness */
@media screen and (max-width: 768px) {
    .slider-navigation .nav-btn {
        border-width: 1.5px;
    }
}

@media screen and (max-width: 480px) {
    .slider-navigation .nav-btn {
        border-width: 1px;
    }
    .slider-navigation {
        padding: 0 10px;
    }
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
    .slider-navigation .nav-btn {
        padding: 10px;
    }
    
    .slider-navigation .nav-btn:hover {
        transform: rotate(45deg); /* Removes scale effect but keeps rotation */
    }
}

.video-slide {
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.video-slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}

.menu-btn {
    background: url(../img/menu.png) no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
    display: none;
}

.menu-btn.active {
    z-index: 999;
    background: url(../img/close.png) no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1040px) {
    header {
        padding: 12px 20px;
    }

    section {
        padding: 100px 20px;
    }

    .home .media-icons {
        right: 15px;
    }

    header .navigation {
        display: none;
    }

    header .navigation.active {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        background: var(--background-color);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header .navigation .navigation-items a {
        color: #222;
        font-size: 1.2em;
        margin: 20px;
    }

    header .navigation .navigation-items a:before {
        background: #222;
        height: 5px;
    }

    header .navigation.active .navigation-items {
        background: var(--text-color);
        width: 600px;
        max-width: 90%;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
    }

    .menu-btn {
        display: block;
    }

    .home .content {
        width: 90%;
    }

    .home .content h1 {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    .home .content h1 {
        font-size: 2.5em;
    }

    .home .content p {
        font-size: 0.9em;
    }

    .home .content a {
        padding: 10px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .home .media-icons {
        right: 10px;
    }

    .home .content h1 {
        font-size: 2em;
    }

    .home .content p {
        font-size: 0.8em;
    }

    .slider-navigation .nav-btn {
        width: 10px;
        height: 10px;
    }

    .slider-navigation .nav-btn:not(:last-child) {
        margin-right: 15px;
    }
}