/* Base Styles */
:root {
    --primary-color: #d9b88f;
    --secondary-color: #222222;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --text-color: #333333;
    --light-text: #777777;
    --border-color: #dddddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 5rem 0;
}

.section-desc {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.secondary {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-color);
}

.secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

/* Header Styles */
header {
    background-color: var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 500;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu li a {
    color: var(--white);
    font-weight: 400;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.book-btn {
    background-color: var(--primary-color);
    color: var(--text-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.book-btn:hover {
    background-color: var(--white);
}

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

/* Hero Section */
.hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-color: var(--white);
}

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

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.hero-image img {
    border-radius: 5px;
    box-shadow: var(--shadow);
}

/* Rooms Section */
.rooms {
    background-color: var(--light-bg);
}

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

.room-card {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.room-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.room-info {
    padding: 1.5rem;
}

/* Services Section */
.services {
    background-color: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--light-bg);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-info {
    padding: 1.5rem;
}

/* Experiences Section */
.experiences {
    background-color: var(--light-bg);
}

.experience-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.experience-text p:last-child {
    margin-bottom: 0;
}

.experience-image img {
    border-radius: 5px;
    box-shadow: var(--shadow);
    height: 100%;
    object-fit: cover;
}

.soul-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.soul-image img {
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.soul-text .btn {
    margin-top: 1rem;
}

/* Partner Section */
.partner {
    background-color: var(--white);
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.partner-image img {
    border-radius: 5px;
    box-shadow: var(--shadow);
}

/* Booking Section */
.booking {
    background-color: var(--light-bg);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 500;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer-contact p i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-contact a {
    color: var(--white);
}

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

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--white);
    margin: 0 1rem;
}

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

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    width: 100%;
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1001;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 600px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.cookie-btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 0.8rem;
}

/* Thank You Page */
.thank-you {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--white);
}

.thank-you-content {
    max-width: 600px;
    padding: 3rem;
    background-color: var(--light-bg);
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.thank-you-content h1 {
    margin-bottom: 1.5rem;
}

.thank-you-image {
    margin-top: 2rem;
}

.thank-you-image img {
    border-radius: 5px;
    box-shadow: var(--shadow);
    margin: 0 auto;
}

/* Privacy & Terms Pages */
.page-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 6rem 0 3rem;
    text-align: center;
}

.policy-content {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section p {
    margin-bottom: 1rem;
}

/* Error Styles */
.error {
    border-color: #e74c3c !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container,
    .experience-content,
    .soul-content,
    .partner-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image,
    .experience-image,
    .soul-image,
    .partner-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .experience-content {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .footer-links a {
        display: block;
        margin: 1rem 0;
    }
}

@media (max-width: 576px) {
    .room-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
}