:root {
    --primary: #EF4444;
    --secondary: #F59E0B;
    --accent: #3B82F6;
    --background: #FFFFFF;
    --text: #1F2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.navbar {
    padding: 1rem 0;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white !important;
}

.display-4 {
    color: white;
    margin-bottom: 1.5rem;
}

.lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.countdown-container {
    margin: 3rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-item span:first-child {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.countdown-item span:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-control {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-primary {
    background-color: var(--secondary);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    color: white;
}

.footer {
    background-color: var(--text);
    color: white;
    padding: 1.5rem 0;
    position: relative;
}

/* Contact Form Styling */
.php-email-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.php-email-form .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    height: auto;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.php-email-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.php-email-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.php-email-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.php-email-form button[type="submit"] {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.php-email-form button[type="submit"]:hover {
    background: #e68a00;
    transform: translateY(-2px);
}

.error-message {
    display: block;
    color: #ff4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: #34D399;
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
}

.alert-success strong {
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .countdown-item {
        margin-bottom: 1rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .php-email-form {
        padding: 1.5rem;
    }
    
    .php-email-form .form-control {
        padding: 0.75rem;
    }
}

/* Animation for form elements */
.php-email-form .form-control,
.php-email-form button {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delay for form elements */
.php-email-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.php-email-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.php-email-form .form-group:nth-child(3) { animation-delay: 0.3s; }
.php-email-form .form-group:nth-child(4) { animation-delay: 0.4s; }
.php-email-form button { animation-delay: 0.5s; }

/* Privacy and Terms Pages Styling */
/* .privacy-content,
.terms-content {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
} */

.privacy-content section,
.terms-content section {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Stagger animation for sections */
.privacy-content section:nth-child(1),
.terms-content section:nth-child(1) { animation-delay: 0.1s; }
.privacy-content section:nth-child(2),
.terms-content section:nth-child(2) { animation-delay: 0.2s; }
/* ... continue for other sections ... */

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} 