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

body {
    font-family: 'Poppins', sans-serif;
    background: url('/images/hero2.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.coming-soon-container {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    align-items: center;
}

.business-name {
    font-family: 'Oswald', sans-serif;
    font-size: 55px;
    font-weight: bold;
    color: #ffb929; /* Luxurious gold color */
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.business-description {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f0f0f0;
    font-weight: 300;
    line-height: 1.5;
}

.coming-bagaha {
    font-family:sans-serif;
    font-size: 32px;
    font-style: italic;
    color: #ffeb3b;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    animation: blink 2s infinite;
    letter-spacing: 1px;
}

@keyframes blink {
    0%, 100% {
        opacity: 2;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05); /* Slight zoom for extra effect */
    }
}

.timer {
    font-size: 24px;
    margin-bottom: 30px;
}

#countdown {
    font-size: 32px;
    font-weight: bold;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.subscribe-form input {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 80%;
}

.subscribe-form button {
    padding: 10px 20px;
    background-color: #25D366;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 50%;
}

.subscribe-form button:hover {
    background-color: #00b743;
}

.social-icons a {
    margin: 0 10px;
    font-size: 30px;
    transition: opacity 0.3s ease;
}

.social-icons a.instagram-icon i {
    color: #E1306C; /* Instagram's official logo color */
}

.social-icons a.facebook-icon i {
    color: #1877F2; /* Facebook's official logo color */
}

.social-icons a.twitter-icon i {
    color: #1DA1F2; /* Twitter's official logo color */
}

.social-icons a.google-icon i {
    color: #4285F4; /* Google's official logo color */
}

.social-icons a.whatsapp-icon i {
    color: #25D366; /* WhatsApp's official logo color */
}
.social-icons a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-name {
        font-size: 45px;
    }

    .business-description {
        font-size: 16px;
    }

    .coming-bagaha {
        font-size: 28px;
    }

    #countdown {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .business-name {
        font-size: 30px;
    }

    .business-description {
        font-size: 14px;
    }

    .coming-bagaha {
        font-size: 24px;
    }

    .subscribe-form input {
        width: 90%;
    }

    .subscribe-form button {
        width: 80%;
    }
}
