/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   NAVBAR
========================= */

.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 55px;
    border-radius: 50%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff6b00;
}

.nav-buttons button {
    margin-left: 10px;
}

/* Buttons */

.btn-primary {
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e65c00;
}

.btn-outline {
    border: 2px solid #ff6b00;
    padding: 8px 18px;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #ff6b00;
    color: #fff;
}

/* =========================
   HERO
========================= */

.hero {
    height: 600px;
    background: url("../images/hero.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

/* =========================
   GRID SYSTEM
========================= */

.room-grid,
.steps-grid,
.gallery-grid,
.donation-grid {
    display: grid;
    gap: 25px;
}

.room-grid { grid-template-columns: repeat(3, 1fr); }
.steps-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-grid { grid-template-columns: repeat(4, 1fr); }
.donation-grid { grid-template-columns: repeat(4, 1fr); }

/* =========================
   ROOM CARD
========================= */

.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.room-card:hover {
    transform: translateY(-8px);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-info {
    padding: 15px;
}

/* =========================
   CONTACT
========================= */

.contact-wrapper {
    display: flex;
    gap: 40px;
}

.contact-form-box {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* =========================
   LOGIN
========================= */

.login-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.login-box {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* =========================
   FOOTER
========================= */

footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
}

.footer {
    display: flex;
    justify-content: space-between;
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 992px) {
    .room-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {

    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 220px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        border-radius: 8px;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .nav-buttons {
        display: none;
    }

    .hero {
        height: 400px;
        padding: 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .room-grid,
    .steps-grid,
    .gallery-grid,
    .donation-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper,
    .footer {
        flex-direction: column;
        gap: 20px;
    }
}