/* ============================================
   Sri Padmavati Pleasants — Classic Hotel Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a3c2a;
    --primary-light: #2d5f3f;
    --secondary: #6b3a1f;
    --accent: #c9a84c;
    --accent-light: #e4cc7a;
    --gold: #b8941f;
    --cream: #faf6ee;
    --ivory: #f8f4ec;
    --warm-gray: #6b6358;
    --light-border: #e8e0d4;
    --dark: #1a1814;
    --dark-soft: #2c2a26;
    --white: #ffffff;
    --text: #3d3830;
    --text-light: #7a7268;
    --shadow-soft: 0 2px 15px rgba(26, 24, 20, 0.08);
    --shadow-medium: 0 4px 25px rgba(26, 24, 20, 0.12);
    --shadow-strong: 0 8px 40px rgba(26, 24, 20, 0.18);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text);
    overflow-x: hidden;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Image Performance */
img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    max-width: 100%;
}

/* ── Header & Navigation ── */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(250, 246, 238, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light-border);
    transition: box-shadow var(--transition);
}

header:hover {
    box-shadow: var(--shadow-soft);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary);
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition);
}

.logo img:hover {
    transform: scale(1.03);
}

.logo-text {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

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

/* ── Hero Section ── */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 60, 42, 0.82), rgba(107, 58, 31, 0.72)),
        url('MALAI.webp') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.hero-content {
    animation: fadeInUp 1.2s ease;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 3.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
    line-height: 1.2;
}

.hero-logo {
    height: 120px;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 20;
}

.hero p {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}

.cta-btn {
    display: inline-block;
    padding: 0.95rem 2.8rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--accent);
    transition: all var(--transition);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

/* ── Decorative Divider ── */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 15px auto 0;
}

/* ── Sections ── */
.section {
    padding: 6rem 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    letter-spacing: 0.5px;
}

/* ── Gallery Filters ── */
.gallery-filters {
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--light-border);
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    margin: 0.2rem;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ── Rooms Section ── */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.room-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
    border: 1px solid var(--light-border);
    cursor: pointer;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent);
}

.room-image {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--dark);
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
}

.room-content {
    padding: 2rem 2rem 2.2rem;
    border-top: 3px solid var(--accent);
}

.room-content h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.room-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.room-features {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--ivory);
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    color: var(--text);
    border: 1px solid var(--light-border);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.room-price {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.room-price span {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.book-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition);
}

.book-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: none;
    box-shadow: none;
}

/* ── Features / Amenities Section ── */
.features {
    background: var(--ivory);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 1px solid var(--light-border);
    transition: all var(--transition);
    position: relative;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.feature h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.feature p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── Booking Modal ── */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 24, 20, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    max-width: 550px;
    width: 90%;
    box-shadow: var(--shadow-strong);
    animation: slideIn 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--light-border);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-border);
}

.modal-header h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
}

.close-modal {
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    transition: color var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--light-border);
    border-radius: 2px;
    font-size: 1rem;
    transition: all var(--transition);
    font-family: inherit;
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.total-display {
    background: var(--ivory);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid var(--light-border);
    border-top: 3px solid var(--accent);
}

.total-display .price {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
}

.total-display .nights {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.4rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.submit-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: none;
    box-shadow: var(--shadow-soft);
}

/* Booking Steps */
.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: slideIn 0.4s ease;
}

/* Confirmation Styles */
.confirmation-container {
    text-align: center;
    padding: 2rem;
}

.confirmation-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.confirmation-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.confirmation-message {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.confirmation-details {
    background: var(--ivory);
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent);
    border: 1px solid var(--light-border);
    border-left: 3px solid var(--accent);
}

.confirmation-label {
    margin-bottom: 0.8rem;
}

.confirmation-item {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.confirmation-contact-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.confirmation-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
    flex: 1;
    min-width: 200px;
}

.whatsapp-btn:hover {
    background: #20BA5C;
    border-color: #20BA5C;
    box-shadow: var(--shadow-soft);
}

/* ── Gallery Section ── */
.gallery {
    background: var(--ivory);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
    height: 250px;
    cursor: pointer;
}

.gallery-item:hover {
    box-shadow: var(--shadow-strong);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 60, 42, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 5;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-text {
    color: var(--white);
    text-align: center;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ── Gallery Lightbox ── */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-controls-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
    z-index: 3002;
}

.lightbox-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lightbox-buttons {
    display: flex;
    gap: 10px;
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.lightbox-image-full {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-controls-bottom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3002;
}

.lightbox-nav {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1.3rem;
    padding: 12px 18px;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 3001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.35);
}

.lightbox-counter {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 18px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 3001;
}

/* ── Room Details Modal ── */
.room-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 24, 20, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    overflow-y: auto;
}

.room-details-modal.active {
    display: flex;
}

.room-details-content {
    background: var(--white);
    border-radius: 4px;
    max-width: 800px;
    width: 90%;
    box-shadow: var(--shadow-strong);
    animation: slideIn 0.4s ease;
    overflow-y: auto;
    max-height: 90vh;
    margin: auto;
    border: 1px solid var(--light-border);
}

.room-details-header {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-details-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
    background: rgba(0, 0, 0, 0.35);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.room-details-close:hover {
    background: rgba(0, 0, 0, 0.6);
}

.room-details-body {
    padding: 2.5rem;
}

.room-details-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.room-details-description {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.room-details-section h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.room-details-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.amenity-item {
    background: var(--ivory);
    padding: 0.9rem 1rem;
    border-left: 3px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--light-border);
    border-left: 3px solid var(--accent);
}

.amenity-icon {
    font-size: 1.5rem;
}

.amenity-text {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.room-details-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.room-photo-item {
    height: 150px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition);
    border: 1px solid var(--light-border);
}

.room-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.room-photo-item:hover img {
    transform: scale(1.05);
}

.room-photo-item:hover {
    box-shadow: var(--shadow-soft);
}

.room-details-price {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    margin: 2rem 0;
}

.room-details-price span {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.room-details-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 1rem;
}

.room-details-btn:hover {
    background: transparent;
    color: var(--primary);
}

/* ── Footer ── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 6% 2rem;
    border-top: 3px solid var(--accent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color var(--transition);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.admin-link {
    color: var(--accent) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.admin-link:hover {
    color: var(--white) !important;
    background: rgba(201, 168, 76, 0.15);
    transform: translateY(-1px);
}

.admin-icon {
    font-size: 0.9rem;
}

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.97) translateY(-15px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ── Guest Reviews Section ── */
.reviews {
    background: var(--cream);
}

.reviews-overview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--light-border);
    margin-bottom: 3.5rem;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--accent);
}

.overall-rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.rating-stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-count {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.google-maps-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--white);
    border: 1px solid var(--light-border);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all var(--transition);
}

.google-maps-btn:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2.2rem;
    border: 1px solid var(--light-border);
    border-top: 3px solid var(--accent);
    transition: all var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.reviewer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.review-stars {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.review-source {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding: 0.5rem 0;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    font-family: serif;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    nav {
        padding: 0.8rem 4%;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .logo img {
        height: 40px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 66px;
        width: 100%;
        height: calc(100vh - 66px);
        background: rgba(250, 246, 238, 0.98);
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        max-width: 100%;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        backdrop-filter: blur(12px);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--light-border);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        font-size: 0.9rem;
    }

    .nav-links a::after {
        bottom: 8px;
    }

    .hero {
        height: 80vh;
        margin-top: 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .cta-btn {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }

    .section {
        padding: 4rem 4%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .room-card:hover {
        transform: translateY(-5px);
    }

    .room-image {
        height: 220px;
    }

    .room-content {
        padding: 1.5rem;
    }

    .room-content h3 {
        font-size: 1.4rem;
    }

    .room-price {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature {
        padding: 2rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .gallery-item {
        height: 200px;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .room-details-content {
        width: 95%;
    }

    .room-details-header {
        height: 200px;
    }

    .room-details-body {
        padding: 1.5rem;
    }

    .room-details-title {
        font-size: 1.4rem;
    }

    .room-details-amenities {
        grid-template-columns: 1fr;
    }

    .room-details-photos {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-photo-item {
        height: 120px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reviews-overview {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 2.5rem 4%;
    }
}

@media (max-width: 480px) {
    header {
        position: fixed;
    }

    nav {
        padding: 0.7rem 3%;
    }

    .logo-text {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .logo img {
        height: 35px;
    }

    .hero {
        height: 75vh;
        margin-top: 50px;
    }

    .hero h1 {
        font-size: 1.7rem;
        margin-bottom: 0.6rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-content img {
        height: 80px !important;
        margin-bottom: 0.5rem !important;
    }

    .cta-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.8rem;
    }

    .section {
        padding: 3rem 3%;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .rooms-grid {
        gap: 1rem;
    }

    .room-image {
        height: 200px;
    }

    .room-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }

    .room-content {
        padding: 1.2rem;
    }

    .room-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .room-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .room-features {
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .feature-tag {
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
    }

    .room-price {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .book-btn {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .feature {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-item-text {
        font-size: 1rem;
    }

    .modal-content {
        padding: 1.2rem;
    }

    .modal-header {
        margin-bottom: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .close-modal {
        font-size: 1.5rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .total-display {
        padding: 1.2rem;
    }

    .total-display .price {
        font-size: 1.8rem;
    }

    .submit-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .room-details-content {
        width: 98%;
    }

    .room-details-header {
        height: 150px;
    }

    .room-details-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .room-details-body {
        padding: 1.2rem;
    }

    .room-details-title {
        font-size: 1.3rem;
    }

    .room-details-description {
        font-size: 0.95rem;
    }

    .room-details-section h4 {
        font-size: 1.1rem;
    }

    .room-details-amenities {
        gap: 0.6rem;
    }

    .amenity-text {
        font-size: 0.9rem;
    }

    .room-details-photos {
        grid-template-columns: 1fr;
    }

    .room-photo-item {
        height: 150px;
    }

    .room-details-price {
        font-size: 1.4rem;
        margin: 1.5rem 0;
    }

    .room-details-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}