/* General Styles */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden; /* Prevent horizontal scrollbar if content is slightly wider */
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace with your desired background image */
    background: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    filter: blur(4px);
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: -1;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    box-sizing: border-box;
    z-index: 10;
}

.logo {
    font-size: 28px;
    font-weight: 700; /* Bold */
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.logo .bolt-icon {
    color: #FF4081; /* Pinkish color */
    margin-right: 8px;
    font-size: 28px; 
}

.menu-icon .bar {
    width: 22px;
    height: 2.5px;
    background-color: #FF4081; /* Pinkish color for hamburger */
    margin: 4px 0;
    display: block;
    transition: all 0.3s ease;
}
.menu-icon:hover .bar {
    background-color: #fff;
}


/* Main Content */
.main-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px; /* Space for the fixed header */
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    max-width: 800px;
    margin: auto;
}

h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.subheading {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 50px;
    color: #e0e0e0;
    max-width: 450px;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
}

.time-box {
    background-color: rgba(50, 50, 50, 0.4); /* Slightly darker translucent */
    padding: 20px 15px;
    border-radius: 5px;
    width: 90px;
    min-width: 80px; /* Ensure minimum width */
    text-align: center;
}

.time-box span {
    font-size: 44px;
    font-weight: 700;
    display: block;
    line-height: 1.1;
}

.time-box p {
    font-size: 11px;
    text-transform: uppercase;
    color: #bbb;
    margin-top: 8px;
    font-weight: 600;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border: 2px solid transparent;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.8px;
    min-width: 150px;
}

.btn-primary {
    background-color: #FF4081;
    color: white;
    border-color: #FF4081;
}

.btn-primary:hover {
    background-color: #F50057;
    border-color: #F50057;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: #f0f0f0;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
    border-color: white;
}

/* Social Icons */
.social-icons {
    margin-bottom: 50px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FF4081;
}

/* Scroll Down Arrow */
.scroll-down i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header {
        padding: 20px 30px;
    }
    .logo {
        font-size: 24px;
    }
    .logo .bolt-icon {
        font-size: 24px;
    }

    .main-content-wrapper {
        padding-top: 80px;
    }

    h1 {
        font-size: 48px;
    }
    .subheading {
        font-size: 14px;
        max-width: 90%;
    }
    .countdown {
        gap: 15px;
    }
    .time-box {
        width: 75px;
        padding: 15px 10px;
    }
    .time-box span {
        font-size: 34px;
    }
    .time-box p {
        font-size: 10px;
    }
    .buttons {
        flex-direction: column;
        gap: 15px;
        width: 70%;
        max-width: 300px;
    }
    .btn {
        width: 100%;
        padding: 15px 20px;
        box-sizing: border-box; /* Ensure padding doesn't expand width */
    }
    .social-icons a {
        margin: 0 10px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 20px;
    }
    .logo {
        font-size: 20px;
    }
    .logo .bolt-icon {
        font-size: 20px;
    }
    .menu-icon .bar {
        width: 20px;
        height: 2px;
        margin: 3.5px 0;
    }
    h1 {
        font-size: 36px;
    }
    .subheading {
        font-size: 13px;
        margin-bottom: 30px;
    }
    .countdown {
        gap: 10px;
        margin-bottom: 30px;
    }
    .time-box {
        width: 65px;
        padding: 12px 8px;
    }
    .time-box span {
        font-size: 28px;
    }
    .time-box p {
        font-size: 9px;
    }
    .buttons {
        margin-bottom: 30px;
        width: 80%;
    }
    .social-icons {
        margin-bottom: 30px;
    }
    .scroll-down i {
        font-size: 20px;
    }
}