/* ===== CSS Variables - Earthy African Palette ===== */
:root {
    --earth-dark: #2d2416;
    --earth-brown: #5c4033;
    --terracotta: #c67b5c;
    --terracotta-light: #d4956e;
    --clay: #a0522d;
    --sage: #7d8471;
    --sage-light: #9ca88f;
    --cream: #f5f0e8;
    --sand: #e8dcc4;
    --warm-white: #faf8f5;
    --text: #3d3227;
    --text-light: #6b5d4d;
    --shadow: 0 10px 40px rgba(45, 36, 22, 0.1);
    --shadow-hover: 0 20px 60px rgba(45, 36, 22, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--warm-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--earth-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== Organic Shapes & Textures ===== */
.organic-shape {
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
}

/* ===== Placeholder Images - Nature Theme ===== */
.placeholder-image {
    background: linear-gradient(145deg, var(--sage) 0%, var(--earth-brown) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.placeholder-image span {
    opacity: 0.9;
    z-index: 1;
    letter-spacing: 1px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 24px 0;
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(45, 36, 22, 0.08);
    padding: 16px 0;
}

.navbar.scrolled .nav-menu a {
    color: var(--text);
}

.navbar.scrolled .logo-img {
    filter: none;
    height: 60px;
}

.navbar.scrolled .logo-img:hover {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

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

.logo-img {
    height: 70px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--cream);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:not(.btn-book):hover {
    color: var(--terracotta-light);
}

.nav-menu a:not(.btn-book)::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:not(.btn-book):hover::after {
    width: 100%;
}

.btn-book {
    background: var(--terracotta);
    color: var(--cream) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-book:hover {
    background: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 123, 92, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--text);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    background: var(--earth-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(45, 36, 22, 0.3) 0%, rgba(45, 36, 22, 0.6) 100%),
        url('hero-bg.jpg') center/cover;
    opacity: 0.9;
}

/* Decorative elements */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%23faf8f5' d='M0,64 C480,150 960,0 1440,64 L1440,150 L0,150 Z'/%3E%3C/svg%3E");
    background-size: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--cream);
    padding: 0 24px;
    max-width: 900px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(198, 123, 92, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(198, 123, 92, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-tagline span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    margin-bottom: 24px;
    color: var(--cream);
    animation: fadeInUp 1s ease 0.1s both;
    font-weight: 600;
}

.hero h1 span {
    color: var(--terracotta-light);
    font-style: italic;
}

.hero p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--terracotta);
    color: var(--cream);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--terracotta-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(198, 123, 92, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--cream);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid rgba(245, 240, 232, 0.4);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: var(--cream);
}

/* ===== Section Styles ===== */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--terracotta);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--terracotta);
}

section h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--earth-dark);
    margin-bottom: 20px;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== About Section ===== */
.about {
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--sand);
    border-radius: 50%;
    opacity: 0.5;
}

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

.about-text .section-subtitle {
    justify-content: flex-start;
}

.about-text .section-subtitle::before {
    display: none;
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--sand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--terracotta);
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.about-feature p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--terracotta);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.about-placeholder {
    min-height: 500px;
    border-radius: var(--border-radius-lg);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--terracotta);
    color: var(--cream);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.about-badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* ===== Experience Section ===== */
.experience {
    background: var(--sand);
    position: relative;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.experience-card {
    background: var(--warm-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.experience-card:hover::before {
    transform: scaleX(1);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.experience-icon svg {
    width: 36px;
    height: 36px;
    color: var(--terracotta);
}

.experience-card:hover .experience-icon {
    background: var(--terracotta);
}

.experience-card:hover .experience-icon svg {
    color: var(--cream);
}

.experience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

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

/* ===== Accommodations Section ===== */
.rooms {
    background: var(--warm-white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: var(--warm-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--sand);
}

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

.room-card.featured {
    border: 2px solid var(--terracotta);
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--terracotta);
    color: var(--cream);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.room-image {
    height: 260px;
    border-radius: 0;
    position: relative;
}

.room-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(45, 36, 22, 0.3));
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

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

.room-features {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.room-features span {
    background: var(--sand);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 500;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--sand);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--terracotta);
}

.per-night {
    color: var(--text-light);
    font-size: 0.85rem;
}

.room-link {
    color: var(--terracotta);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.room-link:hover {
    gap: 12px;
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--earth-dark);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%23faf8f5' d='M0,86 C480,0 960,150 1440,86 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
    background-size: cover;
}

.gallery .section-header {
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

.gallery h2 {
    color: var(--cream);
}

.gallery .section-subtitle::before,
.gallery .section-subtitle::after {
    background: var(--terracotta-light);
}

.gallery .section-subtitle {
    color: var(--terracotta-light);
}

.gallery .section-description {
    color: rgba(245, 240, 232, 0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item .placeholder-image {
    min-height: 100%;
    border-radius: 0;
    transition: var(--transition);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 123, 92, 0.9) 0%, rgba(92, 64, 51, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item:hover .placeholder-image {
    transform: scale(1.1);
}

.view-icon {
    font-size: 3rem;
    color: var(--cream);
    font-weight: 300;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 36, 22, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    min-height: 400px;
    min-width: 600px;
    border-radius: var(--border-radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
    padding: 15px;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--terracotta-light);
}

.lightbox-close {
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== Sustainability Section ===== */
.sustainability {
    background: var(--sage);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.sustainability::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50 Z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.sustainability h2 {
    color: var(--cream);
}

.sustainability .section-subtitle {
    color: var(--cream);
}

.sustainability .section-subtitle::before,
.sustainability .section-subtitle::after {
    background: var(--cream);
    opacity: 0.5;
}

.sustainability .section-description {
    color: rgba(245, 240, 232, 0.8);
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sustainability-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sustainability-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.sustainability-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.sustainability-item-icon {
    width: 50px;
    height: 50px;
    background: var(--terracotta);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sustainability-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--cream);
}

.sustainability-item h4 {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.sustainability-item p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

.sustainability-image .placeholder-image {
    min-height: 450px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(145deg, var(--earth-brown) 0%, var(--earth-dark) 100%);
}

/* ===== Booking Section ===== */
.booking {
    background: linear-gradient(135deg, var(--earth-brown) 0%, var(--earth-dark) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.booking .container {
    max-width: 100%;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.booking h2 {
    color: var(--cream);
}

.booking .section-subtitle {
    color: var(--terracotta-light);
    justify-content: flex-start;
}

.booking .section-subtitle::before {
    display: none;
}

.booking-text p {
    opacity: 0.85;
    font-size: 1.1rem;
    line-height: 1.8;
}

.booking-form {
    background: var(--warm-white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    max-width: 100%;
    overflow: hidden;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-width: 0;
}

.form-row > :only-child {
    grid-column: 1 / -1;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
    min-width: 0;
    overflow: hidden;
}

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

.form-group input,
.form-group select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 16px 20px;
    border: 2px solid var(--sand);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: var(--warm-white);
    color: var(--text);
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 4px rgba(198, 123, 92, 0.1);
}

.btn-full {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

.btn-primary.btn-disabled,
.btn-primary.btn-disabled:hover {
    background: var(--sage);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

.booking-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.booking-message.success {
    background: rgba(125, 132, 113, 0.15);
    color: var(--sage);
    border: 1px solid var(--sage);
}

.booking-message.error {
    background: rgba(198, 123, 92, 0.15);
    color: var(--terracotta);
    border: 1px solid var(--terracotta);
}

/* ===== Contact Section ===== */
.contact {
    background: var(--warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-subtitle {
    justify-content: flex-start;
}

.contact-info .section-subtitle::before {
    display: none;
}

.contact-info h2 {
    text-align: left;
}

.contact-info > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--sand);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--terracotta);
}

.contact-item:hover .contact-icon svg {
    color: var(--cream);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--terracotta);
    transition: var(--transition);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.map-placeholder {
    background: linear-gradient(145deg, var(--sage) 0%, var(--earth-brown) 100%);
    height: 100%;
    min-height: 450px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.map-placeholder span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.map-placeholder p {
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* ===== Footer ===== */
.footer {
    background: var(--earth-dark);
    color: var(--cream);
    padding: 100px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23faf8f5' d='M0,50 C360,100 720,0 1080,50 C1260,75 1350,50 1440,50 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
    background-size: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--terracotta);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    font-size: 1.15rem;
    margin-bottom: 28px;
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    opacity: 0.7;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--terracotta-light);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 0.9rem;
}

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

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

/* ===== Language Selector ===== */
.language-selector {
    display: flex;
    gap: 4px;
    margin-left: 16px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cream);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
    line-height: 1;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    box-shadow: 0 2px 10px rgba(198, 123, 92, 0.4);
}

.navbar.scrolled .lang-btn {
    background: var(--sand);
    border-color: var(--sand);
    color: var(--text);
}

.navbar.scrolled .lang-btn:hover {
    background: var(--terracotta-light);
    color: var(--cream);
}

.navbar.scrolled .lang-btn.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--cream);
}

@media (max-width: 768px) {
    .language-selector {
        position: fixed;
        top: 20px;
        right: 70px;
        z-index: 1002;
    }

    .lang-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .about-content,
    .booking-content,
    .contact-grid,
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .about-badge {
        right: 20px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        justify-content: center;
        gap: 35px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(45, 36, 22, 0.15);
    }

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

    .nav-menu a {
        color: var(--text);
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item.large,
    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form {
        padding: 35px 28px;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    section {
        padding: 80px 0;
    }

    .hero::after,
    .gallery::before,
    .footer::before {
        height: 80px;
    }

    .lightbox-image {
        min-width: auto;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .booking-form {
        padding: 24px 18px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .about-image-wrapper::before {
        display: none;
    }

    .about-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }
}
