/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F49B83; /* soft blush background */
    color: #3b000f;
    line-height: 1.6;
}

/* HERO */
.hero {
    background: linear-gradient(120deg, #9F022C, #F49B83); /* red → soft blush */
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.1); /* soft overlay */
    z-index: 0;
}

/* Logo inside hero */
.hero img.hero-logo {
    max-width: 250px;
    width: 40%;
    height: auto;
    z-index: 1;
}

/* Hero text */
.hero h1 {
    position: relative;
    z-index: 1;
    color: #F49B83;
    font-size: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 5px 20px rgba(0,0,0,0.3);
    margin-top: 15px;
}

/* Navigation */
nav {
    background-color: #9F022C;
    padding: 15px 20px;
    text-align: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

nav a:hover {
    color: #ffd6e0;
}

/* Sections */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    color: black;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Services */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.service-box {
    background: #F49B83 ;
    padding: 25px;
    border-radius: 15px;
    width: 280px;
    box-shadow: 0 5px 20px rgba(159,2,44,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(159,2,44,0.2);
}

.service-box h3 {
    color: #9F022C;
    margin-bottom: 10px;
}

.service-box p {
    color: #3b000f;
    margin-bottom: 10px;
}


/* Gallery Headings */
h2 {
    color: black;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}
.gallery-heading {
    color: #9F022C;             /* white text on red background */
    text-align: center;
    margin: 40px 0 40px 0;      /* spacing above and below heading */
    font-size: 2rem;
    font-weight: 500;
}

/* Each section container */
.gallery-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;                  /* space between images */
    margin-bottom: 50px;        /* space after section */
}

/* Images in gallery */
.gallery-section img {
    width: 300px;
    max-width: 90%;             /* responsive on smaller screens */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(159,2,44,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect on images */
.gallery-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(159,2,44,0.3);
}

/* Responsive for tablets */
@media (max-width: 1024px) {
    .gallery-section img {
        width: 45%;
    }
}

/* Responsive for phones */
@media (max-width: 768px) {
    .gallery-section img {
        width: 90%;
    }
}

/* Optional: alternate section background (soft contrast) */
.gallery-section:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05); /* subtle contrast */
    padding: 20px 0;
}

/* Section spacing */
.section {
    padding: 60px 20px;
}

/* Booking Button */
.booking-btn {
    background-color: #9F022C;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(159,2,44,0.3);
}

.booking-btn:hover {
    background-color: #7a0122;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #9F022C;
    color: white;
    padding: 25px 20px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .service-box {
        width: 45%;
    }

    .gallery img {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        padding: 15px;
    }

    .hero img.hero-logo {
        width: 50%;
        max-width: 200px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 80%;
    }

    .gallery img {
        width: 90%;
    }
}

@media (max-width: 480px) {
    nav a {
        margin: 0 10px;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .service-box {
        width: 95%;
    }
}
