:root {
    --primary-color: #d35400; /* Warm terra-cotta */
    --primary-hover: #e67e22;
    --dark-color: #2c3e50;
    --light-color: #f4f6f7;
    --bg-color: #ffffff;
    --text-color: #333333;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

ul {
    list-style: none;
}

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

.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.w-100 { width: 100%; }
.hidden { display: none !important; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-nav {
    background: var(--dark-color);
    color: #fff !important;
    padding: 0.5rem 1rem;
}

.btn-icon {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    gap: 2rem;
}

.navbar a {
    color: var(--dark-color);
    font-weight: 600;
}

.navbar a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1544000346-6dd468962002?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Layout Utilities */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bg-light { background: var(--light-color); }
.bg-dark { background: var(--dark-color); color: #fff; }
.bg-dark h2, .bg-dark h3 { color: #fff; }

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Distances & Local Gems */
.distances ul li, .local-gems ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}
.distances i, .local-gems i {
    width: 25px;
    color: var(--primary-color);
}

/* Weather Widget */
.weather-widget {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.forecast-container {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    text-align: center;
}

.forecast-day {
    font-size: 0.9rem;
}

.forecast-day img {
    width: 40px;
}

/* Booking Section */
.booking-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    background: #fff;
    color: var(--text-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Calendar */
.calendar-wrapper {
    user-select: none;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    background: var(--light-color);
    cursor: pointer;
    transition: background 0.2s;
}

.calendar-day:hover:not(.disabled) {
    background: #d5d8dc;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f9f9f9;
}

.calendar-day.selected {
    background: var(--primary-color);
    color: #fff;
}

.calendar-day.in-range {
    background: rgba(211, 84, 0, 0.2);
}

/* Form */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.flight-prices {
    background: #e8f4f8;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border-left: 4px solid #3498db;
}

.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
    text-align: center;
}

/* Footer */
footer {
    background: #222;
    color: #888;
    padding: 2rem 0;
}

.admin-link {
    color: #888;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .split-section, .booking-container {
        grid-template-columns: 1fr;
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}