/* Variables & Themes */
:root {
    --primary: #E84E2E; 
    --primary-light: #FFEDE9;
    --primary-hover: #D03D1E;
    --secondary: #0D8494;
    --text-dark: #2C3539;
    --text-muted: #6B7280;
    --light-bg: #F8FAFC;
    --white: #FFFFFF;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.06);
    --shadow-hover: 0 20px 50px rgba(0,0,0,0.1);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.bg-soft { background-color: var(--light-bg); }
.mt-3 { margin-top: 1.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px; /* Fully rounded for fresh look */
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(232, 78, 46, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(232, 78, 46, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

.btn-outline-light {
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

.btn-block { width: 100%; }

/* Badges */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
}

/* Top Bar & Header */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.top-bar i { margin-right: 6px; }

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin: 0;
    color: var(--text-dark);
}

.logo-text p {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active { right: 0; }

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

.close-mobile-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu ul {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-menu .btn { margin-top: 1rem; }

/* Hero Section */
.hero {
    padding: 4rem 0 8rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px; /* Overlap effect */
    padding: 1.2rem 2rem;
    border-radius: var(--radius-md);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating i { color: #FFB800; }
.floating-card span { font-weight: 600; font-family: var(--font-heading); }

/* Booking Widget */
.booking-section {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.booking-widget {
    display: flex;
    padding: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.widget-item {
    flex: 1;
    min-width: 200px;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.widget-item:last-child { border-right: none; }

.widget-item label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.nice-input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
}

.custom-select { position: relative; }
.custom-select select { appearance: none; padding-right: 20px; }
.custom-select i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
}

.widget-btn-wrapper { padding: 1rem; }
.widget-btn-wrapper .btn { margin: 0; }

/* About Section */
.about { padding: 8rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-visual {
    position: relative;
}

.main-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 85%;
}

.secondary-image {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 60%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 10px solid var(--white);
}

.section-title { font-size: 2.8rem; margin-bottom: 1.5rem; }
.lead-text { font-size: 1.2rem; font-weight: 500; color: var(--secondary); margin-bottom: 1rem; }

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.amenity i {
    width: 45px; height: 45px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Rooms */
.rooms { padding: 6rem 0; }
.section-header { max-width: 600px; margin: 0 auto 4rem; }

.room-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.room-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 280px;
}

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

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

.room-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.room-price span { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }

.room-details { padding: 2rem 1rem 0; }
.room-details h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.room-details p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }

.room-features {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid var(--light-bg);
    padding-bottom: 1.5rem;
}

.room-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 500;}
.room-features i { color: var(--primary); }

/* Footer */
.fresh-footer {
    background: var(--light-bg);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.brand-desc { margin-top: 1.5rem; color: var(--text-muted); max-width: 300px; }

.footer-links { display: flex; gap: 4rem; }
.link-group h4, .footer-contact h4 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.link-group a { display: block; margin-bottom: 0.8rem; color: var(--text-muted); font-weight: 500; }
.link-group a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact p { margin-bottom: 1rem; color: var(--text-muted); display: flex; gap: 1rem; align-items: center;}
.footer-contact i { color: var(--primary); }

.socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    display: flex; justify-content: center; align-items: center;
    color: var(--text-dark);
    transition: var(--transition);
}
.socials a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.slide-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.slide-in-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.slide-in-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease, transform 0.8s ease; }

.fade-in.appear, .slide-up.appear, .slide-in-left.appear, .slide-in-right.appear { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-container, .about-grid, .footer-top { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .hero-content p { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-image-wrapper { height: 400px; margin-top: 2rem;}
    .floating-card { left: 20px; }
    .booking-section { margin-top: 2rem; }
    .booking-widget { flex-direction: column; gap: 1rem;}
    .widget-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); width: 100%; padding: 1rem 0; }
    .widget-item:last-child { border-bottom: none; }
    .about-visual { margin-bottom: 4rem; }
    .footer-links { justify-content: space-between; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn, .top-bar { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 2rem 0 4rem; }
    .hero-content h2 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
}
