@media (max-width: 1530px){

    .nav-links{
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }


     .room-card {
        flex-direction: column;
    }

    .room-card img {
        width: 100%;
        height: 200px;
    }
   

   .navbar{
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }


    .reservation-container{
        width: 95%;
        padding: 15px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form button{
        width: 100%;
        box-sizing: border-box;
    }

    .page-title h1{
        font-size: 32px;


    }

    .logo{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* BODY */
body {
    background-image: url("images/karolina.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #0f172a;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-text span {
    font-size: 12px;
    color: #d4af37;
    font-style: italic;
    display: block;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    position: relative;
    transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #d4af37;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* PAGE TITLE */
.page-title {
    text-align: center;
    padding: 140px 20px 50px;
    background: #f8f8f8;
}

.page-title h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* ABOUT STORY */
.about-story {
    width: 90%;
    margin: auto;
    padding: 40px 0;
}

.about-text h2 {
    margin-bottom: 15px;
    color: #0f172a;
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
}

.about-text p {
    margin-bottom: 15px;
    align-content: center;
    color: #000;
    line-height: 1.6;
    font-size: 20px;
}

/* MISSION & VISION */
.mission-vision {
    width: 90%;
    margin: auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.mission-vision .card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* WHY CHOOSE US */
.why-choose-us {
    width: 90%;
    margin: auto;
    padding: 40px 0;
    text-align: center;
}
/* WHY CHOOSE US (CIRCULAR + RESPONSIVE) */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

/* CIRCLE CARD */
.feature {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.feature:hover {
    transform: scale(1.08);
    background: #0f172a;
    color: white;
}

/* TEXT INSIDE */
.feature h3 {
    font-size: 14px;
    margin-bottom: 8px;
}

.feature p {
    font-size: 11px;
    line-height: 1.3;
}

/* 🔵 TABLETS */
@media (max-width: 768px) {
    .feature {
        width: 150px;
        height: 150px;
        padding: 15px;
    }

    .feature h3 {
        font-size: 13px;
    }

    .feature p {
        font-size: 10px;
    }
}

/* 🔵 SMALL PHONES */
@media (max-width: 480px) {
    .features {
        gap: 15px;
    }

    .feature {
        width: 130px;
        height: 130px;
        padding: 10px;
    }

    .feature h3 {
        font-size: 12px;
    }

    .feature p {
        font-size: 9px;
    }
}
/* FOOTER */
.footer {
    background: #0f172a;
    color: white;
    margin-top: 50px;
    padding-top: 60px;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ================= RESPONSIVE DESIGN ================= */

/* Tablets */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 20px;
    }

    .page-title h1 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-title {
        padding-top: 160px;
    }

    .page-title h1 {
        font-size: 28px;
    }
}

/* Small phones */
@media (max-width: 480px) {

    .page-title h1 {
        font-size: 24px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-links {
        gap: 15px;
    }
}