/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Lato:wght@300;400;500;600&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #3d3d3d;
    background-color: #fafafa;
    font-size: 16px;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
header {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

header h1 {
    margin-bottom: 0.8rem;
    font-size: 1.9rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    justify-content: center;
}

nav a {
    color: #d4c5b9;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #d4c5b9;
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 60%;
}

nav a:hover,
nav a.active {
    color: #ffffff;
    background-color: transparent;
}

/* Language Selector */
.language-selector-wrapper {
    display: flex;
    align-items: center;
}

.language-selector {
    background: rgba(255, 255, 255, 0.05);
    color: #d4c5b9;
    border: 1px solid rgba(212, 197, 185, 0.3);
    border-radius: 0;
    padding: 0.6rem 0.8rem;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #d4c5b9;
}

.language-selector option {
    background: #1a1a1a;
    color: #d4c5b9;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), 
                url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="%23c9b79c"/%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 8rem 0 7rem;
    text-align: center;
    margin-bottom: 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 26, 26, 0.3) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #d4c5b9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), 
                url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="%23c9b79c"/%3E%3C/svg%3E');
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.page-header p {
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    color: #d4c5b9;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

section {
    padding: 5rem 0;
}

h2 {
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

h3 {
    color: #3d3d3d;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

p {
    line-height: 1.9;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
}

section > .container > p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.9;
}

/* Bungalows Grid */
.bungalows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.bungalow-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #e8e8e8;
}

.bungalow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.bungalow-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 400;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.bungalow-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.4s ease;
}

.bungalow-card:hover .bungalow-image::before {
    background: rgba(0, 0, 0, 0.3);
}

.bungalow-image h3 {
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bungalow-info {
    padding: 2.5rem;
    line-height: 1.9;
}

.bungalow-info p {
    margin-bottom: 1rem;
    color: #5a5a5a;
    font-size: 15px;
}

.bungalow-info p:last-child {
    margin-top: 1.5rem;
    color: #3d3d3d;
    line-height: 1.8;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e8e8;
}

.bungalow-info strong {
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    background: #f5f5f5;
    margin: 0;
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature .icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature p {
    color: #5a5a5a;
    line-height: 1.8;
    font-size: 15px;
}

/* News Section */
.news-list {
    max-width: 1000px;
    margin: 0 auto;
}

.news-item {
    background: #ffffff;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.news-date {
    color: #c9b79c;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.news-item h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: left;
}

.news-item ul {
    margin-left: 2rem;
    margin-top: 0.5rem;
}

/* Activities Section */
.activities-intro {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.activity-category {
    margin-bottom: 3rem;
}

.activity-category h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.activity-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.activity-card h4 {
    color: #667eea;
    margin-bottom: 0.8rem;
}

.activity-card ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.activities-note {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin-top: 2rem;
}

/* Availability Section */
.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #d4c5b9;
    border-radius: 0;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9b79c;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(201, 183, 156, 0.2);
}

.btn-primary {
    background: #1a1a1a;
    color: #d4c5b9;
    border: 1px solid #1a1a1a;
    padding: 1.2rem 3rem;
    font-size: 13px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.btn-primary:hover {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.availability-result {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-radius: 0;
}

.availability-result.available {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
}

.availability-result.unavailable {
    background: #fce4ec;
    border: 1px solid #f8bbd0;
    color: #b71c1c;
}

.calendar-info {
    margin-bottom: 3rem;
    padding: 1.5rem 2rem;
    background: #f9f6f2;
    border-left: 3px solid #c9b79c;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    line-height: 1.8;
}

/* Unified Calendar Section */
.unified-calendars-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.unified-month-calendar {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.unified-month-calendar h4 {
    background: #1a1a1a;
    color: #d4c5b9;
    padding: 1.5rem;
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.unified-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    background: #f5f5f5;
    padding: 0;
}

.calendar-header {
    font-weight: 600;
    padding: 0.8rem;
    text-align: center;
    background: #fafafa;
    font-size: 12px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #e8e8e8;
}

.unified-calendar-day {
    background: #ffffff;
    min-height: 80px;
    padding: 0.7rem 0.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    border-right: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.unified-calendar-day:hover:not(.empty):not(.past) {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 10;
    background: #fafafa;
}

.unified-calendar-day.empty {
    background: #fafafa;
}

.unified-calendar-day.past {
    background: #f9f9f9;
    opacity: 0.5;
}

.day-number {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Lato', sans-serif;
}

.unified-calendar-day.past .day-number {
    color: #999;
}

.bungalow-indicators {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.bungalow-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    cursor: help;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.bungalow-status:hover {
    transform: scale(1.15);
}

.bungalow-status.available {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.bungalow-status.limited {
    background: #fff8e1;
    color: #c9b79c;
    border: 1px solid #ffecb3;
}

.bungalow-status.booked {
    background: #fce4ec;
    color: #b71c1c;
    border: 1px solid #f8bbd0;
}

/* Unified Legend */
.unified-legend {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.unified-legend h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
}

.legend-bungalow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.legend-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
}

.legend-letter.sunset {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.legend-letter.coral {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.legend-letter.wave {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.legend-status {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Calendar Section */
.calendar-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.calendar-info {
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-left: 4px solid #667eea;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.bungalow-calendars {
    /* Container for unified calendars */
}
.booking-info {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-bottom: 4rem;
    border: 1px solid #e8e8e8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.info-item {
    padding: 2rem;
    background: #f9f6f2;
    border-radius: 0;
    border-left: 3px solid #c9b79c;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    background: #f5f2ed;
}

.info-item h4 {
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: 0.5px;
}

/* Pricing Section */
.pricing-intro {
    background: transparent;
    padding: 0 2rem;
    border-radius: 0;
    margin-bottom: 4rem;
    box-shadow: none;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-intro p {
    color: #5a5a5a;
    line-height: 1.9;
    font-size: 16px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #e8e8e8;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 2px solid #c9b79c;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c9b79c;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pricing-header {
    padding: 3rem 2rem;
    color: white;
    text-align: center;
}

.pricing-header h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 1px;
}

.capacity {
    font-size: 13px;
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-body {
    padding: 3rem 2.5rem;
}

.price-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.price-section:last-of-type {
    border-bottom: none;
}

.price-section h4 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: 0.5px;
    text-align: left;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid #e8e8e8;
}

.price-row:last-child {
    border-bottom: none;
}

.price {
    font-weight: 600;
    color: #c9b79c;
    font-size: 16px;
}

.amenities-list {
    list-style: none;
    margin-top: 1.5rem;
}

.amenities-list li {
    padding: 0.6rem 0;
    color: #5a5a5a;
    font-size: 15px;
    line-height: 1.7;
}

/* Special Offers */
.special-offers {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-bottom: 4rem;
    border: 1px solid #e8e8e8;
}

.special-offers h2 {
    margin-bottom: 3rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.offer-card {
    background: #f9f6f2;
    padding: 2.5rem;
    border-radius: 0;
    border: 1px solid #e8d5c1;
    text-align: center;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.offer-card h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: 1px;
    text-align: center;
}

.offer-discount {
    font-size: 2.2rem;
    font-weight: 400;
    color: #c9b79c;
    margin: 1rem 0;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.offer-terms {
    font-size: 13px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-top: 1rem;
}

/* Price Calculator */
.pricing-calculator {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.calc-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.calculator-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #e7f3ff;
    border-radius: 5px;
    font-size: 1.1rem;
}

.calculator-result strong {
    color: #667eea;
    font-size: 1.4rem;
}

/* Additional Fees */
.additional-fees {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.fee-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
}

.fee-item h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.fee-item ul {
    list-style: none;
}

.fee-item ul li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #e9ecef;
}

.fee-item ul li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-booking {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.contact-booking h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-method {
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 5px;
}

.contact-method a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Gallery Styles */
.bungalow-gallery {
    margin-bottom: 6rem;
}

.bungalow-gallery h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: left;
}

.gallery-description {
    color: #5a5a5a;
    margin-bottom: 3rem;
    font-size: 16px;
    line-height: 1.8;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.photo-item {
    cursor: pointer;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid #e8e8e8;
}

.photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

.photo-placeholder {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.25);
    transition: background 0.3s ease;
}

.photo-item:hover .photo-placeholder::before {
    background: rgba(26, 26, 26, 0.4);
}

.photo-label {
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Sunset Villa Photos */
.sunset-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.sunset-2 { background: linear-gradient(135deg, #5f72bd 0%, #9921e8 100%); }
.sunset-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.sunset-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.sunset-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.sunset-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

/* Coral Retreat Photos */
.coral-1 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.coral-2 { background: linear-gradient(135deg, #fccb90 0%, #d57eeb 100%); }
.coral-3 { background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); }
.coral-4 { background: linear-gradient(135deg, #f8ceec 0%, #a88beb 100%); }
.coral-5 { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.coral-6 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }

/* Wave Crest Photos */
.wave-1 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.wave-2 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.wave-3 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.wave-4 { background: linear-gradient(135deg, #abdcff 0%, #0396ff 100%); }
.wave-5 { background: linear-gradient(135deg, #96fbc4 0%, #f9f586 100%); }
.wave-6 { background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); }

/* Beach & Surroundings Photos */
.beach-1 { background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%); }
.beach-2 { background: linear-gradient(135deg, #00b894 0%, #00cec9 100%); }
.beach-3 { background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%); }
.beach-4 { background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%); }
.beach-5 { background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%); }
.beach-6 { background: linear-gradient(135deg, #55efc4 0%, #81ecec 100%); }

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    width: 100%;
    max-width: 1200px;
    height: 70vh;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-caption {
    color: white;
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #ff6b6b;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #d4c5b9;
    text-align: center;
    padding: 3.5rem 0;
    margin-top: 0;
    border-top: 1px solid #2a2a2a;
}

footer p {
    margin: 0.8rem 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

footer a {
    color: #d4c5b9;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

/* Loading and Error Messages */
.loading-message {
    text-align: center;
    padding: 4rem;
    font-size: 1.1rem;
    color: #c9b79c;
    letter-spacing: 1px;
    font-style: italic;
}

.error-message {
    text-align: center;
    padding: 2.5rem;
    background: #fef5f5;
    border: 1px solid #e8c5c5;
    color: #8b3a3a;
    border-radius: 0;
    margin: 2rem auto;
    max-width: 800px;
}

.info-notice {
    background: #f9f6f2;
    border-left: 3px solid #c9b79c;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0;
}

.info-notice p {
    margin: 0;
    color: #3d3d3d;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .bungalows-grid,
    .features-grid,
    .activity-grid,
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    nav ul {
        flex-direction: row;
        gap: 0.2rem;
        justify-content: center;
    }
    
    nav a {
        padding: 0.6rem 0.8rem;
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    nav a::after {
        display: none;
    }
    
    /* Language selector adjustments for mobile */
    .language-selector {
        font-size: 10px;
        padding: 0.5rem 0.6rem;
        letter-spacing: 0.5px;
    }
    
    h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero {
        padding: 5rem 0 4rem;
    }
    
    /* Gallery adjustments */
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-placeholder {
        height: 200px;
    }
    
    .lightbox-image {
        height: 60vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .hero h2,
    .page-header h2 {
        font-size: 1.8rem;
    }
    
    .hero p,
    .page-header p {
        font-size: 1rem;
    }

    .bungalows-grid,
    .features-grid,
    .activity-grid,
    .pricing-cards,
    .offers-grid,
    .fees-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row,
    .calc-row {
        grid-template-columns: 1fr;
    }
    
    /* Mobile-friendly calendar */
    .calendar-card {
        padding: 1rem;
    }
    
    .month-calendar {
        margin-bottom: 1.5rem;
    }

    .calendar-day {
        padding: 0.6rem 0.3rem;
        font-size: 0.85rem;
    }
    
    .calendar-header {
        font-size: 0.75rem;
        padding: 0.4rem;
    }
    
    .legend-items {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Mobile-friendly unified calendar */
    .unified-calendars-container {
        grid-template-columns: 1fr;
    }
    
    .unified-calendar-day {
        min-height: 60px;
        padding: 0.4rem;
    }
    
    .day-number {
        font-size: 0.85rem;
    }
    
    .bungalow-status {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .legend-grid {
        grid-template-columns: 1fr;
    }
    
    .legend-status {
        gap: 1rem;
    }
    
    /* Touch-friendly buttons */
    .btn-primary,
    nav a,
    .contact-method a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero,
    .page-header {
        padding: 3.5rem 0;
    }
    
    .page-header h2 {
        font-size: 2.2rem;
    }
    
    .bungalow-card,
    .feature,
    .pricing-card {
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    /* News and activity cards */
    .news-item,
    .activity-card,
    .booking-form,
    .calendar-section,
    .booking-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    header h1 {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }
    
    nav ul {
        gap: 0.15rem;
    }
    
    nav a {
        padding: 0.5rem 0.6rem;
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .hero h2,
    .page-header h2 {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }
    
    h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    h3 {
        font-size: 1.4rem;
    }

    .hero,
    .page-header {
        padding: 3rem 0 2.5rem;
    }
    
    .bungalow-image {
        height: 180px;
        font-size: 1.6rem;
    }
    
    .feature .icon {
        font-size: 3rem;
    }
    
    unified-calendar-day {
        min-height: 60px;
        padding: 0.4rem 0.3rem;
    }
    
    .day-number {
        font-size: 12px;
    }
    
    .bungalow-status {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .unified-month-calendar h4 {
        font-size: 1.05rem;
        padding: 1.2rem;
        letter-spacing: 1.5px;
    }
    
    .legend-letter {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    /* Adjust padding for cards */
    .news-item,
    .activity-card {
        padding: 2rem 1.5rem;
    }
    
    .bungalow-info,
    .offer-card,
    .pricing-body {
        padding: 2rem 1.5rem;
    }
    
    .booking-form,
    .calendar-section,
    .booking-info,
    .pricing-calculator,
    .additional-fees {
        padding: 2rem 1.5rem;
    }
    
    /* Stack price rows vertically on very small screens */
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .price-row .price {
        font-size: 1.2rem;
    }
    
    /* Mobile footer */
    footer {
        padding: 1.5rem 0;
        font-size: 0.9rem;
    }
    
    /* Gallery mobile adjustments */
    .photo-placeholder {
        height: 180px;
    }
    
    .photo-label {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .bungalow-gallery h3 {
        font-size: 1.4rem;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
