/*
Theme Name: Neve Child
Template: neve
Version: 1.1.0
*/

/* --- Fibrasol Custom Styles --- */

/* --- Homepage Service Tiles --- */
body.home .service-tile {
    background: linear-gradient(160deg, #4a2a7e, #2A0A5E);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-top: 3px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.home .service-tile:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

body.home .service-tile h3, 
body.home .service-tile h4 {
    color: white;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 15px;
}

body.home .service-tile p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-align: center;
}

/* --- Blog Tile Styles (Homepage & Blog Page) --- */
.blog-preview .service-tile,
body.blog .service-tile {
    background: linear-gradient(160deg, #4a2a7e, #2A0A5E);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    text-align: left;
}

.blog-preview .service-tile:hover,
body.blog .service-tile:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.blog-preview .service-tile h4,
body.blog .service-tile h4 {
    color: #FFD700 !important;
    font-size: 1.5rem !important;
    text-align: left !important;
    margin-bottom: 0.75rem;
}

.blog-preview .service-tile p,
body.blog .service-tile p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-align: left;
}

.blog-preview .service-tile p.small,
body.blog .service-tile p.small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Single Post Content Styling */
.post-content-area h2, .post-content-area h3 {
    color: #2A0A5E;
    font-family: 'Montserrat', sans-serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* For Laptops and Smaller Desktops */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem !important;
    }
    .service-tile {
        padding: 25px;
    }
}

/* For Tablets */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem !important;
    }
    .service-tile h3, .service-tile h4 {
        font-size: 1.2rem;
    }
    .service-tile p {
        font-size: 0.9rem;
    }
    .about .text-start {
        text-align: center !important;
        margin-top: 30px;
    }
}

/* For Mobile Phones */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px !important;
        height: auto !important;
        padding-bottom: 50px;
    }
    .hero h1 {
        font-size: 2.5rem !important;
    }
    .hero .lead {
        font-size: 1rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .service-tile {
        margin-bottom: 20px;
    }
}
