/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Iceberg&family=Roboto:wght@300;400;500;700&display=swap');

/* Import Boldonse font */
/* @font-face {
    font-family: 'Iceberg';
    src: url('fonts/Boldonse.woff2') format('woff2'),
         url('fonts/Boldonse.woff') format('woff');
} */

:root {
    --primary-color: #FFD700;    /* Bright Yellow */
    --secondary-color: #87CEEB;  /* Light Blue */
    --accent-color: #FF69B4;     /* Hot Pink */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --light-accent: #9ED2BE;      /* Soft Mint */
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6, .navbar-brand,a {
    font-family: 'Iceberg', cursive;
    letter-spacing: 0.5px;
}

body, p, span, a, li, input, textarea, button {
    font-family: 'Roboto', sans-serif;
}

/* Specific heading styles */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

/* Paragraph styles */
p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Navigation text */
.nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

/* Form text */
.form-control {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

/* Button text */
.btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand:hover {
    color: var(--accent-color);
}

.nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.navbar-toggler {
    border-color: var(--secondary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(241, 241, 241, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path-to-overlay.png') repeat;
    opacity: 0.1;
}

.coming-soon-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.main-title {
    font-family: 'Iceberg', cursive;
    font-size: 4.5rem;
    color: var(--text-dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.sub-title {
    font-family: 'Iceberg', cursive;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 300;
}

.countdown-timer {
    margin: 3rem 0;
}

.time-block {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.time-block span {
    display: block;
}

.time-block span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.time-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscribe-form .form-control {
    min-width: 300px;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.subscribe-form .form-control::placeholder {
    color: rgba(241, 241, 241, 0.7);
}

.btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff8585;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.social-links {
    margin-top: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .sub-title {
        font-size: 2rem;
    }
    
    .time-block {
        padding: 1rem;
    }
    
    .time-block span:first-child {
        font-size: 2rem;
    }
    
    .subscribe-form .form-control {
        min-width: auto;
    }
}

/* Contact Form Styling */
.php-email-form {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(10, 38, 71, 0.1);
}

.php-email-form .form-control {
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.php-email-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
    outline: none;
}

.php-email-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.php-email-form button[type="submit"] {
    background: var(--accent-color);
    border: none;
    padding: 12px 35px;
    color: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.php-email-form button[type="submit"]:hover {
    background: #ff8255;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    padding-left: 5px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
}

/* Form placeholder styling */
.php-email-form .form-control::placeholder {
    color: #999;
    font-weight: 300;
}

/* Form group spacing */
/* .php-email-form .form-group {
    margin-bottom: 20px;
} */

/* Form focus animation */
.php-email-form .form-control:focus {
    transform: translateY(-1px);
}

/* Success message animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#successMessage {
    animation: fadeIn 0.5s ease-out;
}

.btn-close-terms {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-close-terms:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 38, 71, 0.2);
}

.btn-close-terms i {
    font-size: 18px;
    margin-right: 8px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.coming-soon-content {
    animation: float 6s ease-in-out infinite;
} 