/* main.css - Core styling for the 10crics landing page */

:root {
    --primary-color: #f7931a; /* 10crics orange or a strong action color */
    --secondary-color: #007bff; /* A complementary blue or another highlight */
    --text-color: #333;
    --light-text-color: #f0f0f0;
    --background-dark: #222;
}

/* General Body Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Minimal Header (if you decide to use it) */
.minimal-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent */
    z-index: 100;
}

.site-logo-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    display: block;
}

/* Main Content Area */
.landing-page-main {
    min-height: 100vh; /* Ensure it takes full viewport height */
    display: flex; /* Use flexbox for vertical centering */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
}

/* Full Screen Hero Section */
.hero-full-screen {
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color); /* Light text on dark background image */
    position: relative; /* For overlay */
}

.hero-full-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
    max-width: 800px; /* Limit content width for readability */
    padding: 20px;
    box-sizing: border-box;
}

.hero-headline {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Call to Action Button */
.btn-main-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 18px 40px;
    font-size: 1.8em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-main-cta:hover {
    background-color: #e6830f; /* Slightly darker primary color on hover */
    transform: translateY(-2px);
}

.terms-summary {
    font-size: 0.9em;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Minimal Footer */
.minimal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8em;
    text-align: center;
    z-index: 3; /* Ensure it's above the hero section overlay */
}

.minimal-footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.minimal-footer a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5em;
    }

    .hero-subheadline {
        font-size: 1.2em;
    }

    .btn-main-cta {
        font-size: 1.5em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2em;
    }

    .hero-subheadline {
        font-size: 1em;
    }

    .btn-main-cta {
        font-size: 1.2em;
        padding: 12px 25px;
    }

    .terms-summary {
        font-size: 0.8em;
    }
}
/* Add/Modify these styles in your public_html/assets/css/main.css file */

#countdown-timer {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    width: 100px; /* Define a fixed width */
    height: 100px; /* Define a fixed height for circular shape */
    border-radius: 50%; /* Makes it round */
    display: flex; /* Use flexbox for centering content */
    flex-direction: column; /* Stack time and label vertically */
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    margin: 0 auto 25px auto; /* Center horizontally and add margin below */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--primary-color); /* Add a border for emphasis */
}

#countdown-timer span#time {
    font-size: 2.8em; /* Larger number */
    color: #c0392b; /* Red for urgency */
    line-height: 1; /* Adjust line height for better centering */
}

#countdown-timer p.countdown-label {
    font-size: 0.8em; /* Smaller text for "seconds left!" */
    color: #555;
    margin-top: 5px; /* Space between number and text */
    text-shadow: none; /* Ensure no inherited text shadow */
}


/* Responsive Adjustments for Countdown */
@media (max-width: 768px) {
    #countdown-timer {
        width: 80px;
        height: 80px;
        font-size: 1.2em;
    }
    #countdown-timer span#time {
        font-size: 2.2em;
    }
    #countdown-timer p.countdown-label {
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    #countdown-timer {
        width: 70px;
        height: 70px;
        font-size: 1em;
    }
    #countdown-timer span#time {
        font-size: 2em;
    }
    #countdown-timer p.countdown-label {
        font-size: 0.6em;
    }
}