/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #21704A;
    --secondary-color: #FFC72C;
    --text-color: #222;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(33,112,74,0.08);
    z-index: 1000;
    padding: 8px 0;
    min-height: unset;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 36px;
    width: auto;
    display: block;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-outline {
    border: 2px solid #007bff;
    color: #007bff;
}

.btn-outline:hover {
    background-color: #007bff;
    color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 1001;
    padding: 1rem;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.mobile-menu-links a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 0;
}

.close-menu {
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.booking-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: -100px auto 0;
    position: relative;
    z-index: 2;
}

.booking-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 100px 0;
    background: url('../assets/images/contact-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.contact-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.info-item {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--secondary-color);
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .booking-card {
        padding: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .booking-card {
        padding: 20px;
    }
}

/* --- Available Rooms Modern Card Styles --- */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.room-card-modern {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(44,62,80,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
    min-width: 0;
    border: 2px solid var(--primary-color);
}
.room-card-modern:hover {
    box-shadow: 0 12px 40px rgba(44,62,80,0.18);
    transform: translateY(-4px) scale(1.02);
}
.room-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid #f0f0f0;
    display: block;
}
.room-card-body {
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.room-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.room-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.3rem;
}
.room-price span {
    font-weight: 400;
    color: #888;
    font-size: 0.95em;
}
.room-total {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
}
.room-total span {
    font-weight: 600;
    color: var(--secondary-color);
}
.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.7rem;
    margin-bottom: 1.2rem;
}
.amenity {
    display: flex;
    align-items: center;
    background: #e6f4ec;
    color: var(--primary-color);
    font-size: 0.97rem;
    border-radius: 20px;
    padding: 0.3em 0.9em 0.3em 0.7em;
    font-weight: 500;
    gap: 0.4em;
    box-shadow: 0 1px 3px rgba(44,62,80,0.04);
}
.amenity i {
    font-size: 1em;
    margin-right: 0.3em;
}
@media (max-width: 700px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .room-card-body {
        padding: 1.1rem 1rem 1rem 1rem;
    }
}

/* --- Payment Method Card Styles --- */
.payment-method-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.payment-method-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    padding: 1.1rem 1.2rem;
    border-radius: 14px;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(33,112,74,0.04);
    cursor: pointer;
    position: relative;
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
    font-size: 1.08rem;
}
.payment-method-card:hover {
    border: 2px solid var(--primary-color);
    background: #f0f4ff;
}
.payment-method-card input[type="radio"] {
    opacity: 0;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    margin: 0;
    z-index: 2;
    cursor: pointer;
}
.payment-method-card .custom-radio {
    width: 22px;
    height: 22px;
    border: 2px solid #bbb;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    margin-right: 2px;
    position: relative;
    transition: border 0.2s;
}
.payment-method-card input[type="radio"]:checked ~ .custom-radio {
    border: 2px solid var(--primary-color);
    background: #fff;
}
.payment-method-card .custom-radio:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    top: 3px;
    left: 3px;
    opacity: 0;
    transition: opacity 0.2s;
}
.payment-method-card input[type="radio"]:checked ~ .custom-radio:after {
    opacity: 1;
}
.payment-method-card i {
    font-size: 1.4em;
    color: var(--primary-color);
    min-width: 28px;
    text-align: center;
}
.payment-method-card .pm-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 10px;
}
.payment-method-card .pm-desc {
    color: #888;
    font-size: 1em;
    margin-left: auto;
    font-weight: 500;
}
@media (max-width: 600px) {
    .payment-method-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 1em;
    }
    .payment-method-card .pm-desc {
        margin-left: 0;
    }
}

/* Fix: Keep single room card at a reasonable width and centered */
.rooms-grid .room-card-modern:only-child {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Make the contact section subtitle white for better visibility */
#contact .section-header p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Restaurant Image Slider Styles */
.restaurant-image-slider {
    position: relative;
    width: 100%;
    max-width: 420px;
    min-height: 260px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(44,62,80,0.10);
}
.restaurant-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s;
    z-index: 1;
}
.restaurant-slide.active {
    opacity: 1;
    z-index: 2;
}
.restaurant-image-slider .restaurant-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
} 