/* ===================================
   GENERAL
=================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #222;

    line-height: 1.6;

    background: #ffffff;

}


.container {

    width: 90%;

    max-width: 1100px;

    margin: auto;

}



/* ===================================
   HEADER
=================================== */

header {

    background: #ffffff;

    box-shadow:
        0 2px 10px
        rgba(0, 0, 0, 0.10);

    position: sticky;

    top: 0;

    z-index: 1000;

}


.nav {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    color: #2563eb;

    font-size: 25px;

}


nav a {

    color: #222;

    text-decoration: none;

    margin-left: 20px;

    font-weight: bold;

    transition: 0.3s;

}


nav a:hover {

    color: #2563eb;

}



/* ===================================
   HERO
=================================== */

.hero {

    min-height: 520px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: white;

    padding: 30px;

    background:

        linear-gradient(

            rgba(0, 0, 0, 0.55),

            rgba(0, 0, 0, 0.55)

        ),

        url(
            "https://images.unsplash.com/photo-1560185008-b033106af5c3?auto=format&fit=crop&w=1600&q=80"
        );

    background-size: cover;

    background-position: center;

}


.hero-content {

    max-width: 800px;

}


.hero h1 {

    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 20px;

}


.hero p {

    font-size: 20px;

    margin-bottom: 30px;

}



/* ===================================
   BUTTONS
=================================== */

.btn {

    display: inline-block;

    padding: 13px 25px;

    background: #2563eb;

    color: white;

    border: none;

    border-radius: 6px;

    text-decoration: none;

    cursor: pointer;

    font-size: 16px;

    font-weight: bold;

    transition: 0.3s;

}


.btn:hover {

    background: #174db8;

}


.second-btn {

    margin-left: 10px;

    background: #ffffff;

    color: #2563eb;

}


.second-btn:hover {

    background: #e9efff;

    color: #174db8;

}



/* ===================================
   SECTIONS
=================================== */

.section {

    padding: 75px 0;

}


.section h2 {

    text-align: center;

    font-size: 34px;

    margin-bottom: 30px;

}


.light {

    background: #f5f7fb;

}


.center-text {

    max-width: 800px;

    margin: 0 auto 40px auto;

    text-align: center;

    color: #555;

    font-size: 17px;

}


.about-text {

    max-width: 850px;

    margin:
        0 auto 20px auto;

    text-align: center;

    color: #555;

    font-size: 17px;

}



/* ===================================
   CARDS
=================================== */

.cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 35px;

}


.card {

    background: white;

    padding: 30px;

    border-radius: 12px;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.08);

    text-align: center;

    transition: 0.3s;

}


.card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.12);

}


.card h3 {

    color: #2563eb;

    margin-bottom: 15px;

}


.card p {

    color: #666;

}



/* ===================================
   ROOM CARD
=================================== */

.room-card ul {

    list-style: none;

    margin: 20px 0;

    text-align: left;

}


.room-card li {

    padding: 7px 0;

    border-bottom:
        1px solid #eeeeee;

}


.price {

    color: #222 !important;

    font-size: 22px;

    margin-top: 15px;

}



/* ===================================
   PAGE BANNER
=================================== */

.page-banner {

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #163fa1
        );

    color: white;

    text-align: center;

    padding: 70px 20px;

}


.page-banner h1 {

    font-size: 42px;

}



/* ===================================
   FACILITIES
=================================== */

.facilities-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.facility {

    background: #f5f7fb;

    padding: 30px 20px;

    border-radius: 10px;

    text-align: center;

    font-size: 30px;

    transition: 0.3s;

}


.facility:hover {

    transform: translateY(-5px);

    background: #ffffff;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.08);

}


.facility h3 {

    font-size: 19px;

    margin-top: 12px;

    margin-bottom: 10px;

    color: #2563eb;

}


.facility p {

    font-size: 14px;

    color: #555;

}



/* ===================================
   CONTACT
=================================== */

.contact-container {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 50px;

    align-items: start;

}


.contact-info {

    padding: 20px;

}


.contact-info h2 {

    text-align: left;

    margin-bottom: 25px;

}


.contact-info p {

    margin-bottom: 22px;

    font-size: 16px;

}



/* ===================================
   FORM
=================================== */

.form-box {

    background: white;

    padding: 30px;

    border-radius: 12px;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.10);

}


.form-box h2 {

    text-align: left;

    margin-bottom: 20px;

}


form {

    display: flex;

    flex-direction: column;

}


form label {

    margin-top: 12px;

    margin-bottom: 6px;

    font-weight: bold;

}


input,
select,
textarea {

    width: 100%;

    padding: 13px;

    border:
        1px solid #cccccc;

    border-radius: 6px;

    font-size: 15px;

    font-family: inherit;

    outline: none;

}


input:focus,
select:focus,
textarea:focus {

    border-color: #2563eb;

}


textarea {

    resize: vertical;

}


form button {

    margin-top: 22px;

}



/* ===================================
   SUCCESS / ERROR
=================================== */

.success {

    padding: 13px;

    margin-bottom: 15px;

    background: #dcfce7;

    color: #166534;

    border-radius: 6px;

}


.error {

    padding: 13px;

    margin-bottom: 15px;

    background: #fee2e2;

    color: #991b1b;

    border-radius: 6px;

}



/* ===================================
   FOOTER
=================================== */

footer {

    background: #172033;

    color: white;

    text-align: center;

    padding: 25px 15px;

}



/* ===================================
   TABLET
=================================== */

@media
(max-width: 900px) {


    .cards {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .facilities-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


}



/* ===================================
   MOBILE
=================================== */

@media
(max-width: 700px) {


    .nav {

        flex-direction: column;

        padding: 15px 0;

    }


    .logo {

        margin-bottom: 10px;

    }


    nav {

        text-align: center;

    }


    nav a {

        display: inline-block;

        margin: 5px 7px;

    }


    .hero {

        min-height: 450px;

    }


    .hero h1 {

        font-size: 34px;

    }


    .hero p {

        font-size: 17px;

    }


    .second-btn {

        margin-left: 5px;

    }


    .cards {

        grid-template-columns: 1fr;

    }


    .facilities-grid {

        grid-template-columns: 1fr;

    }


    .contact-container {

        grid-template-columns: 1fr;

    }


    .page-banner h1 {

        font-size: 34px;

    }


}


/* ===================================
   SMALL MOBILE
=================================== */

@media
(max-width: 450px) {


    .hero h1 {

        font-size: 29px;

    }


    .btn {

        display: block;

        width: 100%;

        margin:
            10px 0 0 0;

    }


    .second-btn {

        margin-left: 0;

    }


}

/* =================================
   TODAY FOOD MENU
================================= */

.today-menu-section {
    padding: 60px 20px 80px;
    background: #f7f8fa;
    min-height: 70vh;
}


.menu-heading {
    text-align: center;
    margin-bottom: 40px;
}


.menu-heading h1 {
    font-size: 38px;
    margin-bottom: 8px;
    color: #222;
}


.menu-heading h2 {
    font-size: 25px;
    color: #ff7a00;
    margin-bottom: 5px;
}


.current-date {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: #444;
}


.menu-heading p {
    color: #666;
}


/* Three Food Blocks */

.today-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* Food Card */

.food-card {

    background: white;

    border-radius: 16px;

    padding: 35px 25px;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.food-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.12);

}


.food-icon {

    font-size: 45px;

    margin-bottom: 15px;

}


.food-card h2 {

    margin-bottom: 6px;

    font-size: 25px;

    color: #222;

}


.meal-time {

    font-size: 14px;

    color: #888;

    margin-bottom: 25px;

}


.meal-name {

    background: #f8f8f8;

    padding: 20px;

    border-radius: 10px;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.7;

}


/* Different card top borders */

.breakfast-card {

    border-top: 5px solid #f4b400;

}


.lunch-card {

    border-top: 5px solid #ff7a00;

}


.dinner-card {

    border-top: 5px solid #455a64;

}



/* =================================
   MOBILE
================================= */

@media (max-width: 900px) {

    .today-menu-grid {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 600px) {

    .today-menu-section {

        padding: 40px 15px;

    }


    .menu-heading h1 {

        font-size: 30px;

    }


    .food-card {

        padding: 28px 20px;

    }

}