/* Common Styles for both Desktop and Mobile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Onest', 'Atyp Display TRIAL', sans-serif;
    background-color: #FCF4EB;
    color: #401414;
}

.container {
    position: relative;
    width: 100%;
}

h1, h2, h3 {
    font-weight: 700;
}

p {
    color: #724059;
}

/* Global Section Spacing */
.hero, 
.section-02, 
.use-cases, 
.tools, 
.mission, 
.roadmap, 
.connect {
    margin-bottom: 80px;
}

/* Image Spacing Consistency */
.tool-image,
.mission-image,
.use-cases-image,
.section-02-image {
    margin-bottom: 20px;
}

/* Consistent heading sizes */
h1, h2, 
.hero-content h1,
.use-cases h2, 
.mission h2, 
.roadmap h2,
.connect h2 {
    font-size: 28px;
    line-height: 31px;
    font-weight: 700;
    color: #401414;
    margin-bottom: 20px;
    text-align: center;
}

.tool-card h3 {
    font-size: 25px;
    line-height: 31px;
    font-weight: 500;
    color: #401414;
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: center;
}

/* Responsive image display classes */
.desktop-only {
    display: none;
}

.mobile-only {
    display: none;
}

/* Media queries for responsive design */
@media (min-width: 1024px) {
    .desktop-only {
        display: block;
    }
    .mobile-only {
        display: none !important; /* Force hide mobile version */
    }
    
    .hero {
        margin-bottom: 0; /* Special case for hero */
    }
    
    .section-02 {
        margin-bottom: 60px; /* Reduced from 120px */
    }

}

@media (max-width: 1023px) {
    .desktop-only {
        display: none !important; /* Force hide desktop version */
    }
    .mobile-only {
        display: block;
    }
    
    .section-02 {
        margin-bottom: 40px; /* Reduced from 60px */
    }
}

/* Button styles */
.waitlist-button {
    background: #D73835;
    border-radius: 9999px;
    color: #FFFFFF;
    border: none;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

.connect-button, .discord-button {
    background: #D73835;
    border: 1px solid #3F3F48;
    border-radius: 18px;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #FCF4EB;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 18px;
    width: 80%;
    max-width: 500px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

input[type="email"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

button[type="submit"] {
    background: #D73835;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

#form-status {
    margin-top: 10px;
    text-align: center;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px 0;
    color: #724059;
    font-size: 14px;
}