/*
Theme Name: Crown Majesty Resort
Description: A modern, elegant theme for Crown Majesty Resort - a luxury beachfront hotel and resort
Version: 1.0
Author: Crown Majesty Resort
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');

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

body {
    font-family: 'DM Serif Text', serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(120deg, rgba(7,146,227,0) 60%, rgba(0,0,0,0.24) 60%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Responsive Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Ensure all images are responsive */
.room-image img,
.slide img,
.amenity-card img,
.service-card img,
.dining-card img,
.contact-card img,
.social-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.room-image,
.slide,
.amenity-card img,
.service-card img,
.dining-card img {
    width: 100%;
    height: auto;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.room-image {
    aspect-ratio: 16/10;
    min-height: 250px;
}

.slide {
    aspect-ratio: 21/9;
    min-height: 400px;
}

.amenity-card img,
.service-card img,
.dining-card img {
    aspect-ratio: 4/3;
    min-height: 180px;
}

/* Ensure images maintain aspect ratio on all devices */
@media (max-width: 768px) {
    .room-image {
        aspect-ratio: 4/3;
        min-height: 200px;
    }
    
    .slide {
        aspect-ratio: 16/9;
        min-height: 300px;
    }
    
    .amenity-card img,
    .service-card img,
    .dining-card img {
        aspect-ratio: 3/2;
        min-height: 150px;
    }
    
    /* Improve image loading on mobile */
    .room-image,
    .slide,
    .amenity-card img,
    .service-card img,
    .dining-card img {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .room-image {
        aspect-ratio: 3/2;
        min-height: 180px;
    }
    
    .slide {
        aspect-ratio: 4/3;
        min-height: 250px;
    }
    
    .amenity-card img,
    .service-card img,
    .dining-card img {
        aspect-ratio: 1/1;
        min-height: 120px;
    }
    
    /* Optimize for very small screens */
    .room-image,
    .slide,
    .amenity-card img,
    .service-card img,
    .dining-card img {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
}

/* Floating Islands Animation Keyframes */
@keyframes floatingGradient {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes drift {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(5px) translateY(-5px); }
    50% { transform: translateX(10px) translateY(-10px); }
    75% { transform: translateX(5px) translateY(-5px); }
}

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0px) translateY(0px) scale(1); opacity: 0.7; }
    33% { transform: translateX(20px) translateY(-15px) scale(1.1); opacity: 0.9; }
    66% { transform: translateX(-10px) translateY(-25px) scale(0.9); opacity: 0.5; }
}

@keyframes etherealGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,0.3), 0 0 40px rgba(255,215,0,0.2); }
    50% { box-shadow: 0 0 40px rgba(255,255,255,0.6), 0 0 80px rgba(255,215,0,0.4); }
}

/* Header Styles */
.header {
    background: #2B7D8A;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2.2rem;
    font-weight: 400;
    color: #ffd700;
    font-family: 'DM Serif Text', serif;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: #ffd700;
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after, .nav-menu a:focus::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

.mobile-menu-toggle:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(120deg, rgba(7,146,227,0) 60%, rgba(0,0,0,0.24) 60%);
    background-size: 200% 200%;
    animation: heroGradientMove 8s ease-in-out infinite;
}

.slideshow {
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'DM Serif Text', serif;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-family: 'DM Serif Text', serif;
    font-weight: 400;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.main-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,215,0,0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(30,60,114,0.1) 0%, transparent 40%);
    border-radius: 50px;
    z-index: -1;
    filter: blur(20px);
}

.main-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    border-radius: 30px;
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2B7D8A;
    letter-spacing: 3px;
    line-height: 1.4;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
    animation: drift 8s ease-in-out infinite;
}

.section-title h2 {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #2B7D8A, #4facfe, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Rooms & Services Page Styles */
.rooms-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2B7D8A 50%, #1e5a63 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rooms-hero-content {
    z-index: 2;
    position: relative;
}

.rooms-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    font-weight: 700;
}

.rooms-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.rooms-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
    font-weight: 400;
}

.rooms-subtitle.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Room Cards */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.room-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 125, 138, 0.2);
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.room-image {
    width: 100%;
    height: auto;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #2B7D8A 0%, #1e5a63 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-badge.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.room-badge.family {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
}

.room-content {
    padding: 2rem;
}

.room-title {
    font-size: 1.5rem;
    color: #2B7D8A;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.room-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2B7D8A;
    margin-bottom: 1rem;
}

.room-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.room-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.highlight {
    background: rgba(43, 125, 138, 0.1);
    color: #2B7D8A;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(43, 125, 138, 0.2);
}

.highlight i {
    font-size: 0.9rem;
}

.room-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.room-features li {
    padding: 0.3rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-features li i {
    color: #2B7D8A;
    font-size: 0.9rem;
}

.room-amenities {
    margin-bottom: 2rem;
}

.room-amenities h4 {
    color: #2B7D8A;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.amenities-grid span {
    background: rgba(43, 125, 138, 0.05);
    color: #2B7D8A;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
    border: 1px solid rgba(43, 125, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.amenities-grid span i {
    font-size: 0.9rem;
}

/* Amenities Section */
.amenities-section {
    margin: 4rem 0;
}

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

.amenity-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(43, 125, 138, 0.2);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2B7D8A 0%, #1e5a63 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.amenity-card h3 {
    color: #2B7D8A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.amenity-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.amenity-card ul {
    list-style: none;
    text-align: left;
}

.amenity-card ul li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.amenity-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2B7D8A;
    font-weight: bold;
}

/* Services Section */
.services-section {
    margin: 4rem 0;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(43, 125, 138, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2B7D8A 0%, #1e5a63 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.service-card h3 {
    color: #2B7D8A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.service-features span {
    background: rgba(43, 125, 138, 0.1);
    color: #2B7D8A;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(43, 125, 138, 0.2);
}

/* Dining Section */
.dining-section {
    margin: 4rem 0;
}

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

.dining-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(43, 125, 138, 0.2);
    transition: all 0.3s ease;
}

.dining-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.dining-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2B7D8A 0%, #1e5a63 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.dining-card h3 {
    color: #2B7D8A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.dining-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dining-features {
    margin-bottom: 1.5rem;
}

.dining-features span {
    display: block;
    padding: 0.3rem 0;
    color: #555;
    font-size: 0.9rem;
}

.dining-features span i {
    color: #2B7D8A;
    margin-right: 0.5rem;
}

.dining-hours {
    background: rgba(43, 125, 138, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    color: #2B7D8A;
    font-weight: 500;
    border: 1px solid rgba(43, 125, 138, 0.2);
}

/* Rooms & Services Page Responsive Fixes */
@media (max-width: 768px) {
    .rooms-title {
        font-size: 2.5rem;
    }
    
    .rooms-subtitle {
        font-size: 1.1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .amenities-grid-large,
    .services-grid,
    .dining-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .room-content,
    .amenity-card,
    .service-card,
    .dining-card {
        padding: 1.5rem;
    }
    
    .room-highlights {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .highlight {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .room-features li {
        font-size: 0.9rem;
    }
    
    .amenity-icon,
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .dining-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .rooms-title {
        font-size: 2rem;
    }
    
    .rooms-subtitle {
        font-size: 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .room-highlights {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .service-features {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .service-features span {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .room-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    .room-price {
        font-size: 1.5rem;
    }
    
    .room-title {
        font-size: 1.3rem;
    }
    
    .dining-features span {
        font-size: 0.8rem;
    }
    
    .dining-hours {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #1e3c72;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px 0 #ffd700, 0 0 16px 0 rgba(30,60,114,0.2);
}

.social-link:hover {
    background: #ffd700;
    color: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 0 16px 4px #ffd700, 0 0 32px 8px #2a5298;
}

/* Footer */
.footer {
    background: #2B7D8A;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        padding: 2rem 1rem;
    }
    .nav-container {
        padding: 0 1rem;
    }
}

@media (max-width: 900px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .logo-text {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        padding: 0 0.5rem;
    }
    .logo {
        max-width: 70vw;
    }
    .logo img {
        height: 48px !important;
    }
    .logo-text {
        font-size: 1.1rem !important;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: rgba(30, 60, 114, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        z-index: 1001;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
        border-radius: 0;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffd700;
        padding-left: 2.5rem;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    .slide-content h1 {
        font-size: 1.5rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
    .hero {
        min-height: 400px;
    }
    .slideshow {
        min-height: 300px;
    }
    .slide {
        min-height: 300px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .booking-form {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    .room-image {
        min-height: 180px;
        aspect-ratio: 3/2;
    }
    .footer {
        padding: 1rem 0;
        font-size: 0.95rem;
    }
    .social-link {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
    }
    .room-card, .service-card, .booking-form, .contact-section form {
        border-radius: 14px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.1rem;
    }
    .slide-content p {
        font-size: 0.95rem;
    }
    .hero {
        min-height: 300px;
    }
    .slideshow {
        min-height: 250px;
    }
    .slide {
        min-height: 250px;
    }
    .section-title {
        font-size: 1.1rem;
    }
    .main-content {
        padding: 1rem 0.25rem;
    }
    .logo img {
        height: 36px !important;
    }
    .logo-text {
        font-size: 0.9rem !important;
    }
    .room-image {
        min-height: 120px;
        aspect-ratio: 3/2;
    }
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
    .footer {
        font-size: 0.85rem;
    }
    .social-link {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: 'DM Serif Text', serif;
    font-size: 1rem;
    line-height: 1.5;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Security: Prevent CSS injection */
.message * {
    font-family: inherit !important;
    color: inherit !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Animated Gradient Background for Hero */
@keyframes heroGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navigation Hover/Active Effects */
.nav-menu a {
    position: relative;
    overflow: hidden;
}
.nav-menu a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, #ffd700, #2B7D8A);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.nav-menu a:hover::after, .nav-menu a:focus::after {
    transform: scaleX(1);
}

/* Parallax Effect for Hero Image */
@media (min-width: 768px) {
    .hero {
        perspective: 1px;
        overflow-x: hidden;
    }
    .slideshow {
        will-change: transform;
    }
}

/* Scroll Animation Base */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: none;
}

/* Welcome Section Animation */
.animate-welcome {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(6px) brightness(0.8);
    transition: opacity 0.9s cubic-bezier(.77,0,.18,1),
                transform 0.9s cubic-bezier(.77,0,.18,1),
                filter 0.9s cubic-bezier(.77,0,.18,1),
                box-shadow 0.9s cubic-bezier(.77,0,.18,1);
}
.animate-welcome.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) brightness(1);
    box-shadow: 0 4px 32px 0 rgba(31,38,135,0.18), 0 0 16px #ffd70055;
    background: rgba(255,255,255,0.10);
    border-radius: 18px;
    backdrop-filter: blur(8px);
}

/* Floating Cloud Elements - Hidden */
.floating-cloud {
    display: none;
}

/* Floating Features */
.floating-feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.floating-feature:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.floating-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.floating-feature h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.floating-feature p {
    color: #555;
    line-height: 1.6;
}

.floating-feature i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Floating Particles - Hidden */
.floating-particles {
    display: none;
}

.particle {
    display: none;
}

/* Contact Page Styles */
.contact-hero {
    height: 60vh;
    background: #2B7D8A;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.contact-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.contact-subtitle {
    font-size: 1.3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-weight: 500;
    opacity: 1;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Contact Info Section */
.contact-info-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2B7D8A, #4facfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(43, 125, 138, 0.3);
    animation: float 8s ease-in-out infinite;
}

.contact-card-icon i {
    font-size: 2rem;
    color: #ffd700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-card h3 {
    color: #2B7D8A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-link {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffd700;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    text-align: left;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    align-items: flex-start;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.contact-form-card h2 {
    color: #2B7D8A;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2B7D8A;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.contact-submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #2B7D8A, #4facfe);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(43, 125, 138, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(43, 125, 138, 0.4);
    background: linear-gradient(135deg, #4facfe, #2B7D8A);
}

/* Social Media Section */
.social-section {
    margin: 4rem 0;
}

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

.social-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
}

.social-card:hover {
    transform: translateY(-12px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-icon.location {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.social-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-card h3 {
    color: #2B7D8A;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Map Section */
.map-section {
    margin: 4rem 0;
}

.map-container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    padding: 2rem;
}

.map-placeholder h3 {
    color: #2B7D8A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-placeholder p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.map-btn {
    background: linear-gradient(135deg, #2B7D8A, #4facfe);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(43, 125, 138, 0.3);
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(43, 125, 138, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-hero {
        height: 40vh;
    }
    
    .contact-card,
    .contact-form-card {
        padding: 2rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card-icon,
    .social-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-card-icon i,
    .social-icon i {
        font-size: 1.5rem;
    }
}

/* Booking Page Styles */
.booking-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2B7D8A 50%, #1e5a63 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.booking-hero-content {
    z-index: 2;
    position: relative;
}

.booking-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    font-weight: 700;
}

.booking-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.booking-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
    font-weight: 400;
}

.booking-subtitle.animated {
    opacity: 1;
    transform: translateY(0);
}

.booking-section {
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Date Selection Styles */
.booking-date-section {
    margin-bottom: 4rem;
}

.date-selection-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(43, 125, 138, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.date-input-group {
    position: relative;
}

.date-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2B7D8A;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-input-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(43, 125, 138, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    color: #333;
}

.date-input-group input:focus {
    outline: none;
    border-color: #2B7D8A;
    box-shadow: 0 0 0 3px rgba(43, 125, 138, 0.1);
    background: white;
}

.date-input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #2B7D8A;
    font-size: 1.2rem;
}

.date-summary {
    background: linear-gradient(135deg, #2B7D8A 0%, #1e5a63 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(43, 125, 138, 0.3);
    color: white;
}

.nights-display {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.date-range {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* Room Selection Styles */
.room-selection-section {
    margin-bottom: 4rem;
}

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

.room-option {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(43, 125, 138, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.room-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    border-color: #2B7D8A;
}

.room-option.selected {
    border: 2px solid #2B7D8A;
    box-shadow: 0 0 30px rgba(43, 125, 138, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

.room-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.room-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    font-size: 1.3rem;
    color: #2B7D8A;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.room-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

.room-features span {
    background: rgba(43, 125, 138, 0.1);
    color: #2B7D8A;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(43, 125, 138, 0.2);
}

.room-features i {
    font-size: 0.9rem;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2B7D8A;
}

.per-night {
    color: #666;
    font-size: 0.9rem;
}

.select-room-btn {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #2B7D8A 0%, #1e5a63 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-room-btn:hover {
    background: linear-gradient(135deg, #1e5a63 0%, #2B7D8A 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 125, 138, 0.3);
}

/* Guest Information Styles */
.guest-info-section {
    margin-bottom: 4rem;
}

.guest-form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(43, 125, 138, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2B7D8A;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(43, 125, 138, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2B7D8A;
    box-shadow: 0 0 0 3px rgba(43, 125, 138, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Booking Summary Styles */
.booking-summary-section {
    margin-bottom: 4rem;
}

.booking-summary-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(43, 125, 138, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(43, 125, 138, 0.2);
    color: #333;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2B7D8A;
    border-top: 2px solid #2B7D8A;
    margin-top: 1rem;
    padding-top: 1.5rem;
}

/* Submit Booking Styles */
.submit-booking-section {
    text-align: center;
}

.booking-submit-btn {
    background: linear-gradient(135deg, #2B7D8A 0%, #1e5a63 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(43, 125, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.booking-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(43, 125, 138, 0.4);
    background: linear-gradient(135deg, #1e5a63 0%, #2B7D8A 100%);
}

.booking-submit-btn:active {
    transform: translateY(-1px);
}

/* Section Titles */
.booking-section .section-title h2 {
    color: #2B7D8A;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.booking-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive Design for Booking Page */
@media (max-width: 768px) {
    .booking-title {
        font-size: 2.5rem;
    }
    
    .booking-subtitle {
        font-size: 1.1rem;
    }
    
    .date-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .room-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-submit-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .nights-display {
        font-size: 1.5rem;
    }
    
    .date-range {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .booking-title {
        font-size: 2rem;
    }
    
    .booking-container {
        padding: 0 1rem;
    }
    
    .date-selection-card,
    .guest-form-card,
    .booking-summary-card {
        padding: 1.5rem;
    }
    
    .room-content {
        padding: 1rem;
    }
    
    .room-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .room-features span {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .per-night {
        font-size: 0.8rem;
    }
    
    .summary-item {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }
    
    .summary-item.total {
        font-size: 1.1rem;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 600px) {
    .welcome-intro {
        padding: 0 1rem;
    }
    
    .welcome-intro > div {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .floating-feature {
        padding: 1.5rem;
    }
    
    .floating-feature i {
        font-size: 2.5rem !important;
    }
    
    .floating-feature h3 {
        font-size: 1.2rem;
    }
    
    .floating-feature p {
        font-size: 0.9rem;
    }
}

/* Ensure all text uses DM Serif Text font with optimized weights */
h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, textarea, select, label {
    font-family: 'DM Serif Text', serif;
}

/* Optimize font weights for DM Serif Text */
h1, h2, h3 {
    font-weight: 400;
}

h4, h5, h6 {
    font-weight: 400;
}

p, span, div, label {
    font-weight: 400;
}

.btn, button {
    font-weight: 400;
}

.logo {
    font-weight: 400;
}

.nav-menu a {
    font-weight: 400;
}

/* Button Styles */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #2B7D8A 0%, #1e5a63 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'DM Serif Text', serif;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(43, 125, 138, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1.2;
    min-width: 140px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 125, 138, 0.4);
    background: linear-gradient(135deg, #1e5a63 0%, #2B7D8A 100%);
    color: white;
    text-decoration: none;
}

.btn:active {
    transform: translateY(-1px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Hero Section Button Specific Styles */
.slide-content .btn {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-width: 160px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slide-content .btn:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

/* Button Variants */
.btn-primary {
    background: linear-gradient(135deg, #2B7D8A 0%, #1e5a63 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #2B7D8A;
    color: #2B7D8A;
    box-shadow: none;
}

.btn-outline:hover {
    background: #2B7D8A;
    color: white;
    box-shadow: 0 5px 15px rgba(43, 125, 138, 0.3);
}

/* Button Sizes */
.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    min-width: 100px;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    min-width: 180px;
}

/* Button with Icons */
.btn i {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.btn-icon-only {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
}

.btn-icon-only i {
    margin: 0;
    font-size: 1.2rem;
}

/* Disabled Button */
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn:disabled:hover,
.btn.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .slide-content .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
        min-width: 140px;
    }
    
    .btn-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        min-width: 160px;
    }
    
    .btn-small {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
    
    .slide-content .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        min-width: 120px;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 140px;
    }
    
    .btn-small {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        min-width: 80px;
    }
    
    .btn-icon-only {
        width: 45px;
        height: 45px;
    }
    
    .btn-icon-only i {
        font-size: 1rem;
    }
} 