@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Poppins', sans-serif;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    transition: all .2s cubic-bezier(.24, 1.12, .68, 1.31);
}

.gallery{
    min-height: 100vh;
    background: rgb(247, 247, 247);
    padding-bottom: 100px;
}

.gallery .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    list-style: none;
}

.gallery .image-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .image-container .image{
    height: 250px;
    width: 350px;
    overflow: hidden;
    /* border: 15px solid white; */
    border-radius: 5px;
    /* box-shadow: 0 3px 5px black; */
    background: rgb(212, 181, 4);
    /* box-shadow: 15px 15px 30px #7ed957, -15px -15px 30px #7ed957; */
    margin: 20px;
}

.gallery .image-container .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery .image-container .image:hover img{
    transform: scale(1.4);
}

/* Buttons */
.gallery .controls .buttons {
    font-size: 17px;
    background: transparent;
    border: none;
    padding: 1em 1.5em;
    color: #7ed957;
    text-transform: uppercase;
    position: relative;
    transition: 0.5s ease;
    cursor: pointer;
}
  
.gallery .controls .buttons::before {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 2px;
width: 0;
background-color: rgb(212, 181, 4);
transition: 0.5s ease;
}

.gallery .controls .buttons:hover {
color: #1e1e2b;
transition-delay: 0.5s;
}

.gallery .controls .buttons:hover::before {
width: 100%;
}

.gallery .controls .buttons::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 0;
width: 100%;
background-color: rgb(212, 181, 4);
transition: 0.4s ease;
z-index: -1;
}

.gallery .controls .buttons:hover::after {
height: 100%;
transition-delay: 0.4s;
color: aliceblue;
}
  
.logo {

    font-size: 32px;
    color: #7ed957;
    text-decoration: none;
    font-weight: 700;
}

.subtext {
    display: block;
    font-size: 16px;
    color: #7ed957;
    margin-left: 75px;
}

/* -----------------------------footer ------------------ */
.site-footer {
    background-color: #1f2937; /* A professional dark slate/charcoal color */
    color: #e5e7eb; /* A soft off-white for text */
    padding: 60px 5% 20px 5%;
    font-family: sans-serif; /* Ensure a consistent font */
}

/* Main flex container for the columns */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px; /* Modern way to add space between columns */
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
    margin-bottom: 40px;
}

.footer-column {
    flex: 1; /* Allows columns to grow and shrink as needed */
    min-width: 280px; /* Prevents columns from getting too squished */
}

/* Column 1: Left */
.footer-left h3 {
    color: #ffffff;
    font-size: 32px;
    margin: 0 0 20px 0;
    font-weight: 700;
}
.footer-left h3 span {
    color: #7ed957; /* Your primary green color */
}
.footer-links a {
    color: inherit;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #7ed957;
}

/* Social Media Icons */
.footer-icons {
    margin-top: 30px;
}
.footer-icons a {
    display: inline-flex; /* Use flex for perfect centering */
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #374151; /* A slightly lighter grey */
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    margin-right: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.footer-icons a:hover {
    background-color: #7ed957;
    transform: translateY(-3px); /* Add a nice lift effect */
}

/* Columns 2 & 3: Center & Right */
.footer-center h4, .footer-right h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.contact-item i {
    color: #7ed957;
    font-size: 20px;
    margin-right: 15px;
    width: 25px; /* Fixed width for alignment */
    text-align: center;
}
.contact-item p {
    margin: 0;
    line-height: 1.6;
}
.contact-item p span {
    display: block;
    font-weight: 600;
}
.contact-item a {
    color: inherit;
    text-decoration: none;
}
.footer-company-about {
    line-height: 1.8;
    font-size: 15px;
}

/* Bottom Bar: Copyright & Credit */
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows items to stack on small screens */
    gap: 15px;
    font-size: 14px;
    color: #9ca3af; /* A muted grey for less important text */
}
.footer-developer-credit a {
    color: inherit;
    text-decoration: none;
}
.footer-developer-credit a:hover {
    color: #ffffff;
}

/* ========== MOBILE & TABLET STYLES ========== */
@media (max-width: 880px) {
    .footer-container {
        flex-direction: column; /* Stack columns vertically */
        text-align: center;
    }
    .footer-column {
        min-width: 100%; /* Make each column take full width */
        margin-bottom: 30px;
    }
    .footer-links, .footer-icons {
        justify-content: center;
    }
    .contact-item {
        justify-content: center; /* Center contact items */
    }
    .footer-bottom {
        flex-direction: column; /* Stack copyright and credit */
        text-align: center;
    }
}