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

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Parallax container */
.parallax-container {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    perspective: 1px;
}

/* Casa Angelina-Inspired Brand Colors */
:root {
    /* Primary Brand Colors - Minimal Teal Accent */
    --primary-teal: #A3C4C5;
    --primary-teal-dark: #8ab2b3;
    --primary-teal-light: #e8f1f2;
    
    /* Neutral Colors - Pure Whites and Creams */
    --neutral-white: #FFFFFF;
    --neutral-cream: #fefefe;
    --neutral-light: #f9f9f9;
    --neutral-off-white: #fbfbfb;
    
    /* Text Colors - Softer, Elegant */
    --text-charcoal: #2c2c2c;
    --text-light: #777777;
    --text-muted: #aaaaaa;
    --text-ultra-light: #cccccc;
}

body {
	font-family: 'Inter', 'Arial', sans-serif;
	line-height: 1.6;
	color: var(--text-charcoal);
	background: linear-gradient(180deg, rgba(163,196,197,0.05) 0%, rgba(255,255,255,0.85) 100%);
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* Casa Angelina-Inspired Typography */
h1, h2, .hero-title .main-text {
    font-family: 'Great Vibes', 'Brush Script MT', cursive;
    font-weight: 400;
    letter-spacing: -0.5px;
}

h3, h4, h5, h6 {
    font-family: 'Inter', 'Arial', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Elegant section headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-charcoal);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.2;
}

.section-header .subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

/* Language Switcher - Left */
.language-switcher {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.language-switcher select {
    padding: 0.5rem 1rem;
    border: 1px solid #ff6b35;
    border-radius: 20px;
    background: white;
    color: var(--text-charcoal);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-switcher select:hover {
    border-color: #e55a2b;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Logo - Center */
.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Header Actions - Right */
.header-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.book-now-btn {
	background: #ff6b35;
	color: #ffffff;
	border: none;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.book-now-btn:hover {
	background: #e55a2b;
    transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
	color: var(--text-charcoal);
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-teal);
}

.contact-item a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Hero Section - Full Screen Parallax */
.hero {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(1200px 800px at 20% 10%, rgba(163,196,197,0.35), rgba(163,196,197,0) 60%),
		radial-gradient(1000px 700px at 80% 30%, rgba(163,196,197,0.25), rgba(163,196,197,0) 60%),
		linear-gradient(180deg, rgba(163,196,197,0.20) 0%, rgba(163,196,197,0.08) 100%);
	background-size: 160% 160%, 140% 140%, cover;
	background-position: center center, center center, center;
	background-attachment: fixed, fixed, fixed;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    margin-bottom: 2rem;
}

.main-text {
    display: block;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(163, 196, 197, 0.3);
    animation: slideInDown 1s ease-out 0.3s both;
}

.sub-text {
    display: block;
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 300;
    animation: slideInUp 1s ease-out 0.6s both;
    opacity: 0.9;
}

.star-rating {
    margin: 2rem 0;
    animation: fadeIn 1s ease-out 0.9s both;
    opacity: 0;
}

.stars {
    font-size: 2rem;
    color: #ffd700;
    margin-right: 0.5rem;
}

.rating-text {
    font-size: 1.1rem;
    color: #666;
    font-weight: bold;
}


.cta-button {
	display: inline-block;
	background: var(--primary-teal);
	color: #ffffff;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 3rem;
    transition: all 0.4s ease;
	box-shadow: 0 8px 30px rgba(163, 196, 197, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: bounceIn 1s ease-out 1.2s both;
    opacity: 0;
}

.cta-button:hover {
	background: var(--primary-teal-dark);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 40px rgba(163, 196, 197, 0.5);
}


.hero-image {
    margin-top: 3rem;
    width: 100%;
    max-width: 600px;
}

.image-placeholder {
    background: #e9ecef;
    border: 2px dashed #adb5bd;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
}

/* Features Section - Casa Angelina Style */
.features {
	padding: 6rem 20px;
	background:
		radial-gradient(1000px 700px at 10% 20%, rgba(163,196,197,0.28), rgba(163,196,197,0) 60%),
		radial-gradient(1200px 800px at 90% 60%, rgba(163,196,197,0.18), rgba(163,196,197,0) 60%),
		linear-gradient(180deg, rgba(163,196,197,0.18) 0%, rgba(163,196,197,0.06) 100%);
	background-size: 150% 150%, 160% 160%, cover;
	background-position: center, center, center;
	background-attachment: fixed, fixed, fixed;
}

.features { position: relative; }
.features::before {
	content: "";
	position: absolute;
	left: -5%;
	bottom: -8%;
	width: 55vw;
	height: 30vh;
	background: linear-gradient(160deg, rgba(163,196,197,0.20), rgba(163,196,197,0.08));
	clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
	transform: translateY(0);
	animation: driftY2 20s ease-in-out infinite;
	z-index: 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--primary-teal);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(163, 196, 197, 0.1);
    background: var(--neutral-cream);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--primary-teal);
    font-size: 1.3rem;
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 4rem 20px;
    background: var(--primary-teal-light);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--primary-teal);
}

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

.contact-info {
    text-align: center;
    padding: 2rem;
    background: var(--neutral-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(163, 196, 197, 0.1);
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-teal);
    font-size: 1.2rem;
}

.contact-info a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--primary-teal);
    color: var(--neutral-white);
    text-align: center;
    padding: 2rem 20px;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .main-text {
        font-size: 3rem;
    }
    
    .sub-text {
        font-size: 1.4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero {
        padding: 6rem 20px;
    }
}

@media (min-width: 1024px) {
    .main-text {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
    }
    
    .hero-content {
        flex: 1;
        max-width: none;
    }
    
    .hero-image {
        flex: 1;
        margin-top: 0;
    }
}

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

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.95) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes parallaxFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Parallax Elements */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background:
		radial-gradient(1000px 700px at 30% 40%, rgba(163,196,197,0.18), rgba(163,196,197,0) 60%),
		radial-gradient(1200px 800px at 70% 60%, rgba(163,196,197,0.10), rgba(163,196,197,0) 60%);
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Optimization - Parallax Performance */
@media (max-width: 768px) {
    .hero,
    .features,
    .restaurant,
    .events,
    .contact {
        background-attachment: scroll !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero,
    .features,
    .restaurant,
    .events,
    .contact {
        background-attachment: scroll !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
select:focus {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

/* New Sections Styles */

/* Common Section Styles */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Rooms Section - Casa Angelina Style */
.rooms {
    padding: 6rem 20px;
    background:
        radial-gradient(900px 600px at 5% 10%, rgba(163,196,197,0.18), rgba(163,196,197,0) 60%),
        radial-gradient(900px 600px at 95% 90%, rgba(163,196,197,0.12), rgba(163,196,197,0) 60%),
        linear-gradient(180deg, rgba(163,196,197,0.05), rgba(255,255,255,0.9));
    background-attachment: fixed, fixed, fixed;
    position: relative;
}

.rooms .section-header h2 {
    color: var(--text-charcoal);
    font-size: 2.8rem;
    font-weight: 300;
}

.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.room-card {
    background: var(--neutral-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--neutral-light);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

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

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.room-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.room-features li {
    color: var(--text-charcoal);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.room-features li:before {
    content: "✓";
    color: var(--primary-teal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Restaurant Section - Casa Angelina Style */
.restaurant {
	padding: 6rem 20px;
	background:
		radial-gradient(1000px 700px at 15% 15%, rgba(163,196,197,0.30), rgba(163,196,197,0) 60%),
		radial-gradient(1200px 800px at 85% 85%, rgba(163,196,197,0.16), rgba(163,196,197,0) 60%),
		linear-gradient(180deg, rgba(163,196,197,0.16) 0%, rgba(163,196,197,0.05) 100%);
	background-size: 150% 150%, 160% 160%, cover;
	background-position: center, center, center;
	background-attachment: fixed, fixed, fixed;
}

.restaurant { position: relative; }
.restaurant::before {
	content: "";
	position: absolute;
	right: -6%;
	top: -8%;
	width: 50vw;
	height: 28vh;
	background: linear-gradient(210deg, rgba(163,196,197,0.18), rgba(163,196,197,0.08));
	clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 75%);
	animation: floatSlow 22s ease-in-out infinite;
	z-index: 0;
}

.restaurant-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.restaurant h2 {
    color: var(--primary-teal);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.restaurant-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.restaurant-features {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.feature-item strong {
    color: var(--primary-teal);
    font-weight: 600;
}

.feature-item span {
    color: var(--text-light);
}

.restaurant-image {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(163, 196, 197, 0.1);
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Events Section - Casa Angelina Style */
.events {
	padding: 6rem 20px;
	background:
		radial-gradient(1100px 750px at 20% 80%, rgba(163,196,197,0.26), rgba(163,196,197,0) 60%),
		radial-gradient(900px 650px at 80% 20%, rgba(163,196,197,0.20), rgba(163,196,197,0) 60%),
		linear-gradient(180deg, rgba(163,196,197,0.14) 0%, rgba(163,196,197,0.05) 100%);
	background-size: 150% 150%, 150% 150%, cover;
	background-position: center, center, center;
	background-attachment: fixed, fixed, fixed;
}

.events { position: relative; }
.events::before {
	content: "";
	position: absolute;
	left: 10%;
	top: -6%;
	width: 320px;
	height: 320px;
	background: conic-gradient(from 45deg, rgba(163,196,197,0.28), rgba(163,196,197,0.10));
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	filter: drop-shadow(0 10px 30px rgba(163,196,197,0.25));
	animation: driftY1 18s ease-in-out infinite;
	z-index: 0;
}

.events-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.events h2 {
    color: var(--primary-teal);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.events-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.events-features {
    display: grid;
    gap: 1rem;
}

.events-image {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(163, 196, 197, 0.1);
}

.events-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Enhanced CTA Button */
.cta-button {
	display: inline-block;
	background: var(--primary-teal);
	color: #ffffff;
	padding: 18px 36px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: bold;
	margin-top: 2rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(163, 196, 197, 0.3);
}

.cta-button:hover {
	background: var(--primary-teal-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(163, 196, 197, 0.4);
}

/* Gallery Section - Casa Angelina Style */
.gallery {
    padding: 6rem 20px;
    background:
        radial-gradient(900px 600px at 8% 25%, rgba(163,196,197,0.14), rgba(163,196,197,0) 60%),
        radial-gradient(900px 600px at 92% 75%, rgba(163,196,197,0.10), rgba(163,196,197,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,1), rgba(245,248,248,0.9));
    background-attachment: fixed, fixed, fixed;
    position: relative;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    color: var(--primary-teal);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(163, 196, 197, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(163, 196, 197, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Attractions Section - Casa Angelina Style */
.attractions {
    padding: 6rem 20px;
    background:
        radial-gradient(1000px 650px at 12% 18%, rgba(163,196,197,0.16), rgba(163,196,197,0) 60%),
        radial-gradient(1000px 650px at 88% 82%, rgba(163,196,197,0.10), rgba(163,196,197,0) 60%),
        linear-gradient(180deg, rgba(251,251,251,1), rgba(238,245,246,0.9));
    background-attachment: fixed, fixed, fixed;
    position: relative;
}

.attractions h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    color: var(--primary-teal);
}

.attractions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.attraction-card {
    background: var(--neutral-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(163, 196, 197, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(163, 196, 197, 0.2);
}

.attraction-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.attraction-card h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.attraction-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.distance {
    display: inline-block;
    background: var(--primary-teal-light);
    color: var(--text-charcoal);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Enhanced Contact Section */
.contact {
	padding: 6rem 20px;
	background:
		radial-gradient(1100px 750px at 10% 90%, rgba(163,196,197,0.22), rgba(163,196,197,0) 60%),
		radial-gradient(900px 650px at 95% 10%, rgba(163,196,197,0.14), rgba(163,196,197,0) 60%),
		linear-gradient(180deg, rgba(232,241,242,0.9), rgba(232,241,242,0.8));
	background-size: 150% 150%, 150% 150%, cover;
	background-position: center, center, center;
	background-attachment: fixed, fixed, fixed;
}

.contact { position: relative; }
.contact::before {
	content: "";
	position: absolute;
	left: 55%;
	bottom: -8%;
	width: 40vw;
	height: 26vh;
	background: linear-gradient(160deg, rgba(163,196,197,0.18), rgba(163,196,197,0.06));
	clip-path: polygon(0 0, 85% 0, 100% 100%, 10% 100%);
	animation: driftY2 20s ease-in-out infinite;
	z-index: 0;
}

/* Slow floating/vertical drift */
@keyframes floatSlow {
	0% { transform: translateY(0); }
	50% { transform: translateY(12px); }
	100% { transform: translateY(0); }
}

@keyframes driftY1 {
	0% { transform: translateY(-8px) rotate(-6deg); }
	50% { transform: translateY(8px) rotate(-6deg); }
	100% { transform: translateY(-8px) rotate(-6deg); }
}

@keyframes driftY2 {
	0% { transform: translateY(10px); }
	50% { transform: translateY(-10px); }
	100% { transform: translateY(10px); }
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--primary-teal);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-item {
    background: var(--neutral-white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(163, 196, 197, 0.1);
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-teal);
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

.booking-section {
    background: var(--neutral-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(163, 196, 197, 0.1);
}

.booking-section h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.booking-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.booking-section .cta-button {
    background: #ff6b35;
    color: #ffffff;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.25);
    border: none;
}

.booking-section .cta-button:hover {
    background: #e55a2b;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
}

.map-container {
    background: var(--neutral-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(163, 196, 197, 0.1);
}

.map-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-teal-light) 0%, var(--neutral-cream) 100%);
}

.map-placeholder h4 {
    color: var(--primary-teal);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.map-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.map-features span {
    background: var(--primary-teal-light);
    color: var(--text-charcoal);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Responsive Design for New Sections */
@media (min-width: 768px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .restaurant-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .events-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .room-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .attractions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .modal {
        display: none;
    }
    
    .hero {
        background: white;
        color: var(--text-charcoal);
    }
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background:
		radial-gradient(1200px 800px at 20% 10%, rgba(163,196,197,0.35), rgba(163,196,197,0) 60%),
		radial-gradient(1000px 700px at 80% 30%, rgba(163,196,197,0.25), rgba(163,196,197,0) 60%),
		linear-gradient(135deg, rgba(163,196,197,0.18) 0%, rgba(255,255,255,0.9) 100%);
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

/* Geometric decorative layers for hero */
.hero::before,
.hero::after {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 0;
	will-change: transform;
}

.hero::before {
	left: -10%;
	top: -8%;
	width: 140%;
	height: 55%;
	background: linear-gradient(135deg, rgba(163,196,197,0.22), rgba(163,196,197,0.12));
	border-radius: 28px;
	transform: rotate(-6deg);
	animation: driftY1 14s ease-in-out infinite;
}

.hero::after {
	width: 280px;
	height: 280px;
	border-radius: 50%;
	right: 6%;
	top: 8%;
	background: radial-gradient(circle at 30% 30%, rgba(163,196,197,0.35), rgba(163,196,197,0.0) 70%);
	box-shadow: 0 20px 60px rgba(163,196,197,0.25);
	animation: floatSlow 18s ease-in-out infinite;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    max-width: 600px;
    z-index: 2;
}

.hero-title .main-text {
    font-size: 4rem;
    color: var(--text-charcoal);
    display: block;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-title .sub-text {
    font-size: 1.3rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Trust Elements */
.trust-elements {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.star-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin-right: 0.5rem;
}

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

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trust-badge {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-charcoal);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Hero CTA */
.hero-cta {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}


.primary-cta {
	background: #ff6b35;
	color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    margin-bottom: 1rem;
	border: none;
    cursor: pointer;
    font-family: inherit;
}

.primary-cta:hover {
	background: #e55a2b;
    transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Header Booking Button */

.book-now-btn {
	background: #ff6b35;
	color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.book-now-btn:hover {
	background: #e55a2b;
    transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.trust-line {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
    max-width: 600px;
    margin: 0 auto;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background:
        radial-gradient(900px 600px at 10% 15%, rgba(163,196,197,0.16), rgba(163,196,197,0) 60%),
        radial-gradient(1000px 650px at 90% 85%, rgba(163,196,197,0.10), rgba(163,196,197,0) 60%),
        linear-gradient(180deg, rgba(163,196,197,0.06), rgba(255,255,255,0.9));
    background-attachment: fixed, fixed, fixed;
    position: relative;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--text-charcoal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background:
        radial-gradient(950px 650px at 8% 20%, rgba(163,196,197,0.16), rgba(163,196,197,0) 60%),
        radial-gradient(950px 650px at 92% 80%, rgba(163,196,197,0.10), rgba(163,196,197,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,1), rgba(245,248,248,0.9));
    background-attachment: fixed, fixed, fixed;
    position: relative;
}

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

.testimonial-card {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary-teal);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-rating {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-charcoal);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info strong {
    display: block;
    color: var(--text-charcoal);
    font-weight: 600;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--neutral-light);
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    color: var(--text-charcoal);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    cursor: pointer;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Final CTA Section */
.final-cta {
	padding: 6rem 0;
	background: #ffffff;
	color: var(--text-charcoal);
	text-align: center;
}

.final-cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--text-charcoal);
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta-buttons .primary-cta {
	background: #ffffff;
	color: #ff6b35;
    margin-bottom: 1rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.final-cta-buttons .primary-cta:hover {
	background: #fff5f2;
	color: #ff6b35;
}

.final-cta-buttons .trust-line {
	color: var(--text-light);
	opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0 0;
        min-height: auto;
        overflow: visible;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        max-width: 100%;
    }
    
    .hero-title .main-text {
        font-size: 2.2rem;
    }
    
    .hero-title {
        background: rgba(255,255,255,0.75);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        border-radius: 12px;
        padding: 0.75rem 1rem;
        display: inline-block;
    }

    .hero-video-container {
        padding: 1rem 1rem 0;
        max-width: 100%;
        box-shadow: none;
        border-radius: 0;
    }

    .hero-video {
        border-radius: 12px;
    }

    .trust-badges {
        justify-content: center;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Container */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: relative;
    z-index: 1;
}

/* Hero Video */
.hero-video-container {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	animation: fadeInUp 1s ease-out 0.8s both;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-video {
	width: 100%;
	height: auto;
	border-radius: 20px;
	transition: transform 0.3s ease;
	object-fit: cover;
	aspect-ratio: 16/9;
}

.hero-video:hover {
    transform: scale(1.02);
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show fallback if video fails to load */
.hero-video:not([src]) + .hero-fallback,
.hero-video:not([src]) ~ .hero-fallback {
    opacity: 1;
}

/* Benefits Hero Image */
.benefits-hero {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.benefits-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    max-height: 400px;
    object-fit: cover;
}

.benefits-hero-img:hover {
    transform: scale(1.02);
}