/* Color Scheme - Bülow Palais */
:root {
    --primary-color: #8B4513; /* Warm Brown/Gold */
    --secondary-color: #D4A574; /* Light Gold */
    --accent-color: #2C2416; /* Dark Brown */
    --light-bg: #F5F1ED; /* Off-white/Cream */
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #DDD;
}

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

html, body {
    font-family: 'Georgia', 'Garamond', serif;
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Georgia', serif;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.booking-link {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.booking-link:hover {
    background-color: var(--accent-color);
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Booking Section */
.booking-section {
    background-color: var(--light-bg);
    padding: 40px 20px;
}

.booking-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.booking-form h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 22px;
    text-align: center;
}

.booking-form form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 12px;
}

.form-group input,
.form-group select {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #FAFAFA;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

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

.btn-link {
    color: var(--primary-color);
    padding: 8px 16px;
    font-size: 12px;
}

.btn-link:hover {
    color: var(--accent-color);
}

/* Welcome Section */
.welcome-section {
    padding: 60px 20px;
    background-color: var(--white);
    text-align: center;
}

.welcome-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 300;
}

.welcome-section h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 300;
}

.welcome-section p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    padding: 20px 20px 10px;
    font-weight: 600;
}

.feature-card p {
    padding: 0 20px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.feature-card .btn {
    margin: 0 20px 20px;
}

/* Location Section */
.location-section {
    padding: 60px 20px;
    background-color: var(--white);
    text-align: center;
}

.location-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 300;
}

.location-section h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 300;
}

.location-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* Highlight Section */
.highlight-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.highlight-section.alt {
    background-color: var(--light-bg);
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.highlight-content.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.highlight-content.reverse > * {
    direction: ltr;
}

.highlight-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 300;
}

.highlight-text h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 300;
}

.highlight-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.highlight-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.highlight-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Experiences Section */
.experiences-section {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.experiences-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 300;
}

.section-subtitle {
    text-align: center;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 300;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.experience-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.experience-card h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.experience-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
}

.newsletter-section h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 300;
}

.newsletter-section p {
    margin-bottom: 25px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-family: inherit;
}

.newsletter-form button {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 25px;
}

.newsletter-form button:hover {
    background-color: var(--light-bg);
}

/* Footer */
.footer {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-section p {
    color: #CCCCCC;
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #CCCCCC;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links li a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }

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

    .nav-link {
        display: block;
        padding: 15px;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: var(--light-bg);
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero {
        height: 400px;
    }

    .booking-form form {
        grid-template-columns: 1fr;
    }

    .highlight-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-content.reverse {
        direction: ltr;
    }

    .highlight-buttons {
        flex-direction: column;
    }

    .highlight-buttons .btn {
        width: 100%;
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        top: 60px;
    }

    .navbar-container {
        height: 60px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero {
        height: 300px;
    }

    .welcome-section h2,
    .location-section h2,
    .highlight-text h2 {
        font-size: 28px;
    }

    .welcome-section h3,
    .location-section h3,
    .highlight-text h3 {
        font-size: 20px;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-card img {
        height: 200px;
    }
}
