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

/** Reset **/
* {
    box-sizing: border-box;
    user-select: none;
    margin: 0;
    padding: 0;
  }

*, *::before, *::after {
    box-sizing: border-box;
  }
  
  * {
    margin: 0;
    padding: 0;
  }
  
  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  
  input, button, textarea, select {
    font: inherit;
  }
  
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  
  #root, #__next {
    isolation: isolate;
  }
  
/** Defaults **/  

  a {
    color: #f8f8f8;
    text-decoration: none;
    transition: 0.3s;
  }

  a:hover {
    color: #cecece;
  }

  body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: #f8f8f8;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #404040;
    text-transform: none;
  }
  
  h1 {
    font-size: clamp(1rem, 3vw,4rem);
    font-weight: 400;
    letter-spacing: 0.5em;
    color: #f8f8f8;
    text-transform: uppercase;
  }

  h2 {
    font-size: clamp(1rem, 5vw, 5rem);
    font-weight: 400;
    letter-spacing: 0.5em;
    margin-right: -0.5em;
    color: hsl(0, 0, 80%);
    width: 90vw;
    max-width: 1200px;
  }
  
/** Navigation **/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    padding: 0 100px;
    position: absolute;
    z-index: 10;
    padding-top: 30px !important;
}

.logo {
    font-size: 1.5rem;
}

.logo-img {
    max-height: 80px;
}

.nav-toggle {
    display: none; /* Hidden by default */
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0; /* Spacing between bars */
}

/* Navigation Links */
.nav-menu {
    display: flex; /* Default for desktop */
    list-style: none; /* Remove list styling */
}

.nav-menu a {
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 4px;
    color: #f8f8f8;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    background-image: linear-gradient(#f8f8f8, #f8f8f8);
    background-size: 0% 0.1em;
    background-position-y: 100%;
    background-position-x: 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease-in-out !important;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .8));

}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a:active {
    background-size: 100% 0.1em;
    background-position-x: 0%;
}

.nav-menu:hover li {
    opacity: 0.5;
}

.nav-menu li:hover {
    opacity: 1;
}
.nav-menu li {
    margin-right: 25px;
    transition: 0.3s !important;
}

.nav-menu li:last-child {
    margin-right: 0px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    header {
        padding-top: 30px !important;
        flex-direction: column;
    }

    .logo-img {
        margin-bottom: 20px;
    }

    .nav-menu {
        display: none; /* Hide by default on mobile */
        position: fixed; /* Full-screen overlay */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #3d3d3d; /* Semi-transparent background */
        flex-direction: column; /* Stack links vertically */
        align-items: center; /* Center links horizontally */
        justify-content: center; /* Center links vertically */
        opacity: 0; /* Initially hidden */
        visibility: hidden; /* Not visible */
        transition: opacity 0.3s ease; /* Smooth transition */
        z-index: 20; /* Make sure it appears above other elements */
        margin: auto;
    }

    .nav-menu:hover li {
        opacity: 1;
    }

    .nav-menu a {
        color: #f8f8f8;
        font-size: 16px;
    }

    .nav-menu li {
        margin-bottom: 50px;
    }
    
    .nav-menu li:last-child {
        margin-bottom: 0px;
    }

    .nav-menu.active {
        display: flex; /* Show nav links when active */
        opacity: 1; /* Fully visible */
        visibility: visible; /* Change visibility */
    }

    .nav-toggle {
        display: flex; /* Show hamburger icon */
    }

    .close-btn {
        display: none; /* Hide close button by default */
        position: absolute; /* Position it in the top right corner */
        top: 20px;
        right: 20px;
        background: none; /* No background */
        border: none; /* No border */
        color: #f8f8f8; /* Color */
        font-size: 3rem; /* Size */
        cursor: pointer; /* Pointer on hover */
        z-index: 25; /* Above other elements */
    }

    .nav-menu.active ~ .close-btn {
        display: block; /* Show close button when nav menu is active */
    }
}

/* Hide close button on desktop */
@media (min-width: 993px) {
    .close-btn {
        display: none; /* Hide close button on desktop */
    }
}

@media only screen and (max-width: 992px) {
    .nav-menu li:last-child {
        margin-right: 25px !important;
    }

    .nav-menu a:hover,
    .nav-menu a:focus,
    .nav-menu a:active {
        background-size: 0% 0em;
    }

    .nav-menu a {
        filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
    }
}

/* Footer Styles */
.site-footer {
    background-color: #272727;
    background-image: url('../uploads/global/gplay-25.png');
    background-repeat: repeat;
    color: #f8f8f8;
    padding: 2rem 0 1rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Rows */
.footer-row {
    width: 100%;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column:first-child {
    justify-content: center;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8f8f8;
}

.footer-column p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0B1215;
    border-radius: 8px;
    text-decoration: none;
    color: #f8f8f8;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background-color: #f8f8f8;
    color: #0B1215;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Single Column (Bottom Row) */
.footer-single-column {
    text-align: center;
    width: 100%;
}

.footer-single-column p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .site-footer {
        padding: 1.5rem 0 1rem 0;
    }
    
    .social-links {
        justify-content: center;
    }

    .footer-column {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-column h3 {
        font-size: 1.1rem;
    }
    
    .footer-single-column p {
        font-size: 0.8rem;
    }
}