
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0f172a;
color:#fff;
}

/* HEADER */
.header{
text-align:center;
padding:40px 20px;
background:#020617;
}

.header h1{
color:#facc15;
font-size:2.5rem;
margin-bottom:10px;
}

/* ABOUT TEXT */
.about-text{
max-width:900px;
margin:40px auto;
text-align:center;
line-height:1.8;
padding:0 20px;
}

/* GALLERY */
#gallery {
    background: linear-gradient(135deg, #0f172a, #1e2937);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

/* Grid: 4 columns, 3 rows */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: fadeUp 0.8s ease forwards;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover animation (lightweight) */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Subtle fade-in animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive (tablet) */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive (phone) */
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* Footer Container */
footer {
    background: #071427;
    color: #fff;
    font-family: sans-serif;
}

/* Footer Top Layout: Address left, contacts right */
footer .footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 20px 20px;
}

/* Left: Address */
footer .footer-left {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

/* Right: Contacts */
footer .footer-right {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

/* Links like topbar */
footer .footer-right a {
    color: #ff9500;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer .footer-right a:hover {
    color: #ff7a00;
}

/* Spacing between icons/links */
footer .footer-right span {
    margin-right: 10px;
}

/* Footer Bottom: Centered copyright */
footer .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #aaa;
    opacity: 0.8;
}

/* FLOATING BUTTONS */
.float-btn {
    position: fixed;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    z-index: 3000;
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp button */
.whatsapp {
    bottom: 90px;
    background: #25D366;
}

/* Email button */
.email {
    bottom: 20px;
    background: #facc15;
    color: #020617;
} 