/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'league spartan', sans-serif;
    font-size: 1rem;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
}

a {
    text-decoration: none;
    color: #000;
}

/* Mobile CSS (no media query) */
.container {
    position: relative;
    width: 90%;
    height: 90vh;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 30px;
    color: #fff;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.3);
}

.page-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-holder {
    z-index: 2;
}

.brand-holder img {
    width: 25%;
    height: auto;
}

.scroll-toggler {
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.scroll-toggler i {
    font-size: 2rem;
    color: #fff;
}

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

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-content {
    text-shadow: 0 2px 4px (0,0,0,0.5);
}

.main p {
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 0.1rem;
}

.content-section {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    color: #fff;
}

.content-section.active {
    opacity: 1;
    pointer-events: all;
}

.title {
    cursor: pointer;
    font-size: 2rem;
    margin: 20px 0;
    transition: all 0.5s ease;
    position: absolute;
}

.section-1 .title,
.section-3 .title,
.section-2 .title,
.section-4 .title {
    transform: translateY(-100%);
}

.title.active {
    transform: translateY(0);
}

.description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-top: 30px;
}

.description.active {
    opacity: 1;
    max-height: 500px;
    width: 80%;
}

.dot-nav {
    position: fixed;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dot-container {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    transition: transform 0.3s ease;
}

.dot::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid transparent;
    border-radius: 50%;
    animation: circleProgress 1s forwards;
}

.dot.active {
    transform: scale(1.4);
}

.dot.active::after {
    border-color: #fff;
    clip-path: inset(0 0 0 100%);
    animation: circleProgress 0.5s forwards;
}

@keyframes circleProgress {
    to {
        clip-path: inset(0 0 0 0);
    }
}

.dot:hover::before {
    content: attr(data-title);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.4rem;
    font-weight: 200;
    color: #fff;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
}

.social a:hover {
    background: linear-gradient(45deg, #F58529, #FEDA77, #DD2A7B, #8134AF, #515BD4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 1000;
    display: flex;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.no-scroll {
    overflow: hidden;
}

/* Close Button Animation */
.scroll-toggler.active .fa-bars::before {
    content: "\f00d";
    transition: transform 0.5s ease;
}

/* Modal Content Layout */
.modal-content {
    display: flex;
    width: 100%;
    padding: 3rem;
    position: relative;
}

.contact-info {
    font-weight: 200;
    background: transparent;
    width: 40%;
    z-index: 2;
    position: relative;
}

.contact-info .address {
    margin-top: 4rem;
    margin-bottom: 2rem;
    background: transparent;
}

.contact-info p {
    background: transparent;
}

.contact-link {
    color: #7f7f7f;
}

.contact-link:hover {
    color: #fff;
    transition: 0.5s ease;
}

.scrolling-menu-wrapper {
    width: 60%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Infinite Scroll Animation */
.scrolling-menu {
    position: absolute;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.scrolling-menu:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Menu Item Styles */
.menu-items {
    list-style: none;
    padding-left: 1.5rem;
}

.menu-items li a {
    color: #7f7f7f;
    font-size: 4rem;
    font-weight: 900;
    display: inline-block;
    position: relative;
    transition: all 0.5s ease;
}

.menu-items li a:hover {
    color: #fff;
    transform: translateX(-20px);
}

.menu-items li a:hover::after {
    width: 100%;
    left: 0;
}

/* Hide Scrollbars */
::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Small devices (media query min 576px */
@media screen and (min-width: 576px) {
}


/* Tablet CSS (media query min 768px) */
@media screen and (min-width: 768px) {
    .main p {
        font-size: 1rem;
        font-weight: 200;
        letter-spacing: 0.1rem;
    }

    .title {
        cursor: pointer;
        font-size: 3rem;
        margin: 20px 0;
        transition: all 0.5s ease;
        position: absolute;
    }
}

/* Laptop CSS (media query min 1024px) */
@media screen and (min-width: 1024px) {
    .main p {
        font-size: 1rem;
        font-weight: 200;
        letter-spacing: 0.1rem;
    }

    .title {
        cursor: pointer;
        font-size: 4rem;
        margin: 20px 0;
        transition: all 0.5s ease;
        position: absolute;
    }

}
