@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Video Background */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Hamburger Menu */
.hamburger-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10;
}

.hamburger-icon {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-icon span {
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease-in-out;
}

/* Transform to X */
.hamburger-menu.open .hamburger-icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger-menu.open .hamburger-icon span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.open .hamburger-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Menu */
.menu {
    position: absolute;
    top: -100%;
    right: 0;
    width: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
    transition: top 0.5s ease-in-out;
}

.hamburger-menu.open .menu {
    top: 50px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 0;
    display: block;
    transition: color 0.3s ease-in-out;
}

.menu a:hover {
    color: #ddd;
}

/* Country Selector (No Hazy Effect) */
.country-selector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;  /* No background */
    padding: 30px;
    border-radius: 0;
    text-align: center;
}

/* Buttons Layout */
.options {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
}

.country-btn {
    padding: 8px 25px;
    font-size: 1.2vw; /* Adjust font size based on screen width */
    font-weight: 100;
    color: white;
    border: 0.5px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 0;
    width: calc(30% - 5px);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 5%;
    padding-right: 5%;
}

/* Adaptive Button Sizes */
@media (max-width: 768px) {
    .country-btn {
        font-size: 14px;
        width: 100%;
        height: auto;
    }
}

/* Top Buttons */
.small {
    width: 120px;
    height: 40px;
}

/* Large Button Below */
.large {
    width: 100%;
    height: 50px;
    margin-top: 10px;
    background: black;
    color: white;
    border: none;
}

.large:hover {
    background: white;
    color: black;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .hamburger-menu {
        top: 15px;
        right: 20px;
    }

    .country-selector {
        width: 80%;
        padding: 20px;
    }

    .small, .large {
        width: 100%;
    }

    .hamburger-icon {
        width: 35px;
        height: 25px;
    }

    .hamburger-icon span {
        height: 1.5px;
    }

    .menu {
        width: 150px;
    }
}
/* Footer Text */
.footer-text {
    position: absolute;
    bottom: 20px; /* 20px from the bottom */
    width: 100%;
    text-align: center;
}

.footer-text p {
    font-family: 'Times New Roman', serif;
    font-size: 0.8vw; /* Font size based on viewport width */
    font-weight: 100; /* Light, thin font weight */
    color: white;
    letter-spacing: 3px; /* Slight letter spacing for elite look */
    text-transform: uppercase; /* Uppercase text for elite appeal */
    opacity: 0.7; /* Slight opacity for a soft touch */
    transition: opacity 0.3s ease-in-out;
}

/* Hover effect for footer text */
.footer-text p:hover {
    opacity: 1; /* Full opacity on hover for subtle interaction */
}

/* Media Queries for further responsiveness */
@media (max-width: 768px) {
    .footer-text p {
        font-size: 1.5vw; /* Adjust font size for tablets */
    }
}

@media (max-width: 480px) {
    .footer-text p {
        font-size: 1.5vw; /* Adjust font size for mobile screens */
    }
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 50px;
    right: 20px;
    background-color: black;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.whatsapp-icon:hover {
    background-color: green; /* Change to WhatsApp green on hover */
}

.whatsapp-icon svg {
    width: 40px;
    height: 40px;
}

