/* ============================================================
   index-styles.css
   Styles specific to index.html (home page).
   Also requires: global-styles.css
   ============================================================ */

body {
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 6rem 2rem 4rem 2rem;
    position: relative;
    width: 100%;
}

/* On the home page the shapes are absolute (inside .container),
   not fixed, so we override the global rule here. */
.floating-shapes {
    position: absolute;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo-image {
    width: 300px;
    height: 150px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)) drop-shadow(0 0 20px rgba(255,255,255,0.1)); }
    to   { filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)) drop-shadow(0 0 30px rgba(255,255,255,0.2)); }
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #ffffff;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
}

.tagline p {
    font-size: 1rem;
    margin-bottom: 1.3rem;
    text-align: center;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    width: 100%;
}

.feature {
    background: rgba(255, 200, 87, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 206, 87, 0.3);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 206, 87, 0.1);
    border-color: rgba(255, 206, 87, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature p {
    opacity: 0.8;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-signup {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.signup-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #db3a34, #ff6b35);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(219, 58, 52, 0.3);
}

.signup-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(219, 58, 52, 0.4);
    background: linear-gradient(45deg, #ff6b35, #db3a34);
}

.launch-date {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffce57;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .logo { font-size: 2rem; }
    .tagline { font-size: 1.2rem; }
    .email-signup { flex-direction: column; align-items: stretch; }
    .features { grid-template-columns: 1fr; }
    .container { padding-top: 5rem; }
}
