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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Hero Section */
.landing-header {
    margin-top: 0;
    padding-top: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,1)),
                url('https://43771328.fs1.hubspotusercontent-na1.net/hubfs/43771328/shutterstock_2470156997.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-content {
    max-width: 800px;
    padding: 2rem;
}

.header-content h1 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #ff4c4c;
}

.header-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Buttons */
.auth-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.primary-btn {
    background-color: #ff4c4c;
    color: #fff;
    box-shadow: 0 0 10px #ff4c4c;
    border: none;
}

.primary-btn:hover {
    background-color: #e63b3b;
    box-shadow: 0 0 20px #e63b3b;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid #ff4c4c;
    color: #ff4c4c;
}

.secondary-btn:hover {
    background-color: #ff4c4c;
    color: #fff;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: #181818;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 5px #ff4c4c;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 76, 76, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 76, 76, 0.4);
}

.card h3 {
    color: #ff4c4c;
    margin-bottom: 1rem;
}

.card p {
    color: #cccccc;
    font-size: 1rem;
}

/* Icons in Feature Cards */
.feature-icon {
    font-size: 2.5rem;
    color: #ff4c4c;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 76, 76, 0.6);
    transition: transform 0.3s;
}

.card:hover .feature-icon {
    transform: scale(1.1);
}

/* CTA Section */
.cta {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #ff4c4c;
}

/* Contact Section */
.contact-section {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow:
        0 0 6px #ff4c4c,
        0 0 12px #ff4c4c;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 2rem;
}

.social-icons a {
    color: #fff;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 0 5px #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #ff4c4c;
    text-shadow:
        0 0 10px #ff4c4c,
        0 0 20px #ff4c4c;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }

    .features h2,
    .cta h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .social-icons {
        gap: 1rem;
        font-size: 1.5rem;
    }
}
