
/* ===================================================
   4. HOMEPAGE BANNER
   =================================================== */
.homebanner {
    background-color: #1C1C1C;
    padding-top: 4rem;
   height: auto;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center items horizontally */
    text-align: center;
    font-size: 2.3rem;
}

.homebanner h3 {
    padding-top: 5rem;
    max-width: 1000px;
    font-family: "Poppins", sans-serif;
    color: white; /* Ensure text is visible */
}

.banner-image img {
    max-width: 100%; /* Ensures image is responsive */
    width: 1000px;
    height: auto; /* Maintains aspect ratio */
  margin-bottom: 1rem;
}
@media (max-width: 1150px) { 
    .homebanner {
        font-size: 2rem;
    }

}
@media (max-width: 860px) { 
    .homebanner {
        font-size: 1.5rem;
    }
}
@media (max-width: 550px) { 
    .homebanner {
        font-size: 1.2rem;
    }
}
@media (max-width: 450px) { 
    .homebanner {
        font-size: 1rem;
    }
}
/* ===================================================
   5. TUMBLE
   =================================================== */
   .projects {
    padding: 50px 5%;
    background-color: #F7F7F7;
}

.featured-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.featured-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


.featured-image img {
    max-width: 100%;
    height: auto;
    width: 500px; /* Set a fixed width for balance */
    margin-top: 3rem;
    border-radius: 25px;
}

.featured-description {
    max-width: 500px;
}

.featured-description h2 {
    font-size: 2.3rem;
    color: #171717;
    margin-bottom: 3rem;
   
}
.featured {
   
}

.featured-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.featured-button {
    margin-top: 20px;
}
/* ===================================================
   5. REVERSE
   =================================================== */ 
 /* Project Showcase Section */
.project-showcase {
    background-color: #F7F7F7;
    padding: 50px 5%;
}

/* Flex Container */
.project-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Reduced gap */
    flex-wrap: wrap;
}

/* Text Section */
.project-text {
    max-width: 500px;
}

.project-text h2 {
    font-size: 2.3rem;
    color: #171717;
    margin-bottom: 1rem;
}

.project-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Image Section */
.project-image {
    flex-shrink: 0; /* Prevents image from shrinking */
}

.project-image img {
    max-width: 100%;
    width: 450px; /* Reduced width slightly */
    height: auto;
    border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-content {
        flex-direction: column; /* Stack for small screens */
        text-align: center;
        gap: 10px; /* Even smaller gap for mobile */
    }

    .project-text {
        max-width: 100%;
    }

    .project-image img {
        width: 75%; /* Adjust width for smaller screens */
    }
}


/* ===================================================
   6. CONTENTS
   =================================================== */ 
.contents {
    background-color: #1C1C1C;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    padding: 2rem;
    border-radius: 10px;
}

.contents h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.contents p {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 500px;
    color: #dcdcdc;
}

/* Disclaimer styling */
.disclaimer {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    max-width: 500px;
    font-size: 1rem;
    color: #EC3C3C; /* Yellow text to make it stand out */
    background-color: #333;
    border-left: 5px solid #F91229;
    border-radius: 5px;
    text-align: left;
}
.Preview {
    margin-top: 2rem;
}
.contents button {
      margin-top: 2rem;
      font-family: "poppins",sans-serif;
    padding: 12px 20px;
    background-color: #F91229;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin-bottom: 1rem;
}
.contents button:hover {
    background-color: #E41212;
}
