/* @font-face {
    font-family: 'MozillaHeadline-VariableFont_wdth,wght';
    src: url("{{ url_for('static', filename='fonts/MozillaHeadline-VariableFont_wdth,wght.ttf') }}") format('truetype')
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'MozillaHeadline-VariableFont_wdth,wght', sans-serif; */
}

h1, h2 {
    color: #667eea !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: black;
    min-height: 100vh;
    color: white;
}

.dashboard-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-section {
    background: black;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    background: url("{{ url_for('static', filename='images/home-page-image.avif') }}") no-repeat center center/cover;
}

.hero-container {
    height: 100vh;
    /* max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem;
    padding-bottom: 0%;
    padding-right: 6rem;
    gap: 4rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/*.turing-logo {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: black;
    font-weight: bold;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}*/

.functionalities-section {
    background: #1a1a1a;
    padding: 4rem 2rem;
}

.functionalities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.functionalities-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 3rem;
}

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

.functionality-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    display: block;
}

.functionality-card:hover {
    transform: translateY(-10px);
    box-shadow:  0 15px 40px  #667eea;
    border-color: rgba(255, 215, 0, 0.3);
}

.card-icon {
    /* // width: 80px; */
    height: 100px;
    /* // background: linear-gradient(135deg, #ffd700, #ffed4e);
    // border-radius: 15px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    color: black;
    margin-bottom: 1.5rem;
    width: 100%;
}

.card-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
}

/* .card-date {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 215, 0, 0.8);
} */

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: black;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    /* // box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); */
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

#amazon-word {
    color: #ff9900;
    font-weight: bold;
    display: inline-block;
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .functionalities-title {
        font-size: 1.5rem;
    }

    .hero-container {
        padding: 0;
    }

    .hero-container p{
        font-size: 0.9rem;
    }
}