/* BASE */
body{
    font-family: Arial, sans-serif;
    margin:0;
    background:#fafafa;
}

header{
    background:#3a2d1f;
    color:white;
    padding:20px;
    position: relative;
    /* text-align:left; */
}
.gst {
  position: absolute;
  bottom: 10px;
  right: 20px;
}

nav{
    background:#6b4f2c;
    padding:10px;
    text-align:center;
}

nav a{
    color:white;
    margin:10px;
    text-decoration:none;
    font-weight:bold;
}

nav a:hover{
    text-decoration:underline;
}

section{
    padding:40px 20px;
}

/* BUTTONS */
button, .btn{
    background:#3a2d1f;
    color:white;
    padding:12px 18px;
    border:none;
    border-radius:5px;
    cursor:pointer;
    text-decoration:none;
    display:inline-block;
}

button:hover, .btn:hover{
    background:#2a1f14;
}

/* HERO SECTION */
.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.hero-text{
    flex:1;
}

.hero-image img{
    width:100%;
    max-width:400px;
    border-radius:10px;
    transition:transform 0.3s ease;
}

.hero-image img:hover{
    transform:scale(1.05);
}

/* GALLERY */
.gallery{
    background:#f2f2f2;
}

.gallery-grid{
    display:flex;
    gap:20px;
}

.card{
    background:white;
    padding:15px;
    border-radius:10px;
    text-align:center;
    transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.card img{
    width:100%;
    border-radius:10px;
    margin-bottom:10px;
}

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

/* WHATSAPP FLOAT */
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    padding:15px 18px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
}

/* AGE POPUP */
#age-popup{
    position:fixed;
    background:rgba(0,0,0,.7);
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999;
}

.popup-content{
    background:white;
    padding:25px;
    text-align:center;
    border-radius:10px;
}

/* RESPONSIVE */
@media (max-width:768px){
    .hero{
        flex-direction:column;
        text-align:center;
    }

    .gallery-grid{
        flex-direction:column;
    }
}

.gallery {
    background: #f7f4ef;
    text-align: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.card h3 {
    margin: 10px 0 5px;
    color: #3a2d1f;
}

.card {
    opacity: 0;
    transform: translateY(20px);
}

.card.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}
