/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Version: 1.0
Description: Learning Child Theme
*/


/* Global Font */
body,
button,
input,
textarea,
select {
    font-family: Georgia, 'Times New Roman', Times, serif;
}


/* Hero Section */
.custom-hero {
    background: linear-gradient(135deg, black, #dea7cb);
    color: white;
    text-align: center;
    padding: 50px 10px;
}

.custom-hero h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

.custom-hero p {
    font-size: 20px;
}

.custom-hero img {
    width: 1000px;
    height: auto;
    border-radius: 10px;
}


/* Feature Cards */
.features-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin: 50px auto;
    max-width: 900px;
    flex-wrap: wrap;
    font-size: 17px;
    color: white;
}

.feature-card {
    width: 200px;
    padding: 25px;
    background: #32003e;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(42, 38, 38, 0.1);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.feature-card h3 {
    color: white;
    font-size: 24px;
    line-height: 1.2;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(42, 38, 38, 0.2);
}


/* Projects Single Page */
.project-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

.project-container h1 {
    color: #32003e ;
}


/* Projects Homepage Section */
.projects-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
}

.projects-section h2 {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.project-grid {
    max-width: 700px;
    margin: 0;
}

.project-card {
    background: #32003e;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    color: white;
}


.project-card h3 {
    color: white;
    font-size: 24px;
}

.project-card p {
    color: white;
    line-height: 1.6;
}


/* Read More Button */
.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;

    background-color: #32003e;
    color: white;

    text-decoration: none;
    border-radius: 5px;

    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: rgb(53, 10, 73);
}


/* Footer */
.custom-footer {
    background: black;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
}

/* Header Navigation */

.custom-header {
    background: black ; 
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.site-logo a {
    color: white;
    font-size: 25px;
    text-decoration: none;
}


.custom-menu {
    display: flex;
    gap: 25px;
}


.custom-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}


.custom-menu a:hover {
    color: #f0bcfd;
}


/* Mobile Menu */

@media(max-width:768px){

    .custom-header {
        flex-direction: column;
        gap:20px;
    }


    .custom-menu {
        flex-direction: column;
        text-align:center;
    }

}

/* Mobile Responsive */
@media (max-width: 768px) {

    .custom-hero {
        padding: 40px 15px;
    }

    .custom-hero h1 {
        font-size: 32px;
    }

    .custom-hero p {
        font-size: 16px;
    }


    .features-container {
        gap: 20px;
        padding: 0 15px;
    }


    .feature-card {
        width: 100%;
        max-width: 300px;
    }


    .projects-section {
        padding: 15px;
    }


    .project-card h3 {
        font-size: 20px;
    }

}


@media (max-width: 480px) {

    .custom-hero h1 {
        font-size: 26px;
    }

    .custom-hero p {
        font-size: 15px;
    }


    .read-more {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

}
