/* Import Integral CF font - replace the URL with the actual font files if available */
@font-face {
    font-family: 'Integral CF';
    src: url('fonts/IntegralCF-Bold.woff2') format('woff2'),
         url('fonts/IntegralCF-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Integral CF';
    src: url('fonts/IntegralCF-Regular.woff2') format('woff2'),
         url('fonts/IntegralCF-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary-color: #006838;
    --primary-light: #009444;
    --primary-white: #FFFFFF;
    --secondary-black: #000000;
    --secondary-gray: #CCCCCC;
    --primary-font: 'Integral CF', sans-serif;
    --secondary-font: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--secondary-font);
    background: url('img/background.png') no-repeat top center fixed;
    background-size: cover;
    color: var(--primary-white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1200px;
    min-width: 95%;
    margin-top: 120px;
    padding: 40px;
    position: relative;
    z-index: 1;
    background-color: rgba(0, 104, 56, 0.98); /* Green overlay moved to container */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 80vh; /* Minimum height of container */
    justify-content: space-between;
}

header {
    padding: 2rem 0 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    text-align: center;
    padding: 0;
}

.logo img {
    max-width: 100%;
    height: auto;
    width: 400px;
    display: block;
    margin: 0 auto;
}

main {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2% 0;
    flex-grow: 1;
}

.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
    /* background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    margin-top: 0; */
}

.hero h2 {
    font-family: var(--primary-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    color: #FFF;
text-align: center;
font-family: Montserrat;
font-size: 4rem;
font-style: normal;
font-weight: 800;
line-height: 145%; /* 11.6rem */
text-transform: uppercase;
}

.hero p {
    font-family: var(--secondary-font);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0 2rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-light);
    color: var(--primary-white);
    padding: 1rem;
    border-radius: 8px;
    min-width: 80px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.time-box span:first-child {
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: bold;
}

.label {
    font-family: var(--secondary-font);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.signup-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto;
    max-width: 500px;
}

.signup-form input {
    font-family: var(--secondary-font);
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--primary-white);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    font-size: 1rem;
    width: 300px;
}

.signup-form button {
    font-family: var(--primary-font);
    background-color: var(--secondary-black);
    color: var(--primary-white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signup-form button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0 5rem;
    padding: 0 1.5rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: rgba(0, 148, 68, 0.8); /* Lighter green with transparency */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
}

.feature:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2.5rem;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature p {
    font-family: var(--secondary-font);
    font-weight: 400;
}

footer {
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-white);
    color: var(--primary-color);
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary-gray);
    transform: scale(1.1);
}

footer p {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .signup-form {
        flex-direction: column;
    }
    
    .signup-form input, 
    .signup-form button {
        width: 100%;
    }
    
    .logo img {
        width: 320px;
    }
    
    .container {
        margin-top: 120px;
        padding: 30px;
        min-height: 85vh;
        min-width: 95%;
    }
    
    .hero gap {
        gap: 2rem;
    }
    
    header {
        padding: 1.5rem 0 2rem;
    }
    
    main {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 260px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .container {
        margin-top: 120px;
        padding: 20px;
        min-height: 90vh;
        min-width: 95%;
    }
    
    main {
        gap: 2rem;
    }
} 