/* Hotel Brunner — Modern Design System */

:root {
    --primary: #1a4d7f;
    --secondary: #d4924a;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --success: #27ae60;
    --border: #e0e0e0;

    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Lora', serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
}

body {
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #0f3657;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 127, 0.3);
}

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

.btn-secondary:hover {
    background-color: #c97e2f;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    margin: 0 40px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.header-cta {
    white-space: nowrap;
}

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

.menu-toggle:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 77, 127, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Quick Access Cards */
.quick-access {
    padding: 60px 0;
    background-color: var(--light-bg);
}

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

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.card-icon i {
    font-size: 2.5rem;
}

.card h3 {
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.card-link:hover {
    color: var(--secondary);
}

/* Offers Section */
.offers-section {
    padding: 60px 0;
    background-color: white;
}

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

.offer-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: scale(1.02);
}

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

.offer-card h3 {
    padding: 20px 20px 10px;
}

.offer-card p {
    padding: 0 20px;
    font-size: 0.95rem;
}

.price {
    display: block;
    padding: 10px 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}

.offer-card .btn {
    display: block;
    margin: 15px 20px 20px;
    width: calc(100% - 40px);
}

/* Amberg Section */
.amberg-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.amberg-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.amberg-card:hover {
    transform: translateX(5px);
}

.amberg-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.amberg-card i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.amberg-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.amberg-card .link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.amberg-card .link:hover {
    color: var(--secondary);
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: white;
}

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

.about-text h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.link-button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.link-button:hover {
    background-color: var(--primary);
    color: white;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.newsletter h2 {
    color: white;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
}

.newsletter-form button {
    white-space: nowrap;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 40px 0 20px;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col p, .footer-col li {
    font-size: 0.9rem;
    line-height: 1.8;
}

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .header-content {
        flex-wrap: nowrap;
        gap: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        margin: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid var(--border);
    }

    .header-cta {
        display: none;
    }

    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .cards-grid, .offers-grid, .amberg-grid {
        grid-template-columns: 1fr;
    }

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #0f3657 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Room Styles */
.rooms-grid, .attractions-grid, .restaurants-grid, .activities-grid, .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.room-card, .attraction-card, .restaurant-card, .activity-card, .package-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover, .attraction-card:hover, .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.room-card img, .attraction-card img, .offer-card-detailed img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card h3, .attraction-card h3, .package-card h3 {
    padding: 20px 20px 10px;
}

.room-card p, .attraction-card p, .package-card p {
    padding: 0 20px;
    font-size: 0.95rem;
}

.room-price, .price-tag {
    display: block;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

.room-card .btn {
    display: block;
    margin: 15px 20px 20px;
    width: calc(100% - 40px);
}

/* Offer Cards Detailed */
.offers-grid, .offers-detail .offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.offer-card-detailed:hover {
    transform: scale(1.02);
}

.offer-card-detailed h3 {
    padding: 20px 20px 10px;
}

.offer-card-detailed p {
    padding: 0 20px;
    font-size: 0.95rem;
}

.offer-card-detailed .btn {
    display: block;
    margin: 15px 20px 20px;
    width: calc(100% - 40px);
}

/* Room Features */
.room-features {
    padding: 60px 0;
    background: var(--light-bg);
}

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

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.feature h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature p {
    font-size: 0.9rem;
}

/* Booking Section */
.booking-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.booking-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Breakfast & Bistro */
.breakfast-section, .bistro-section, .gastro-packages {
    padding: 60px 0;
}

.breakfast-section, .bistro-section {
    background: white;
}

.breakfast-content, .art-content, .directions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.breakfast-text, .art-text, .directions-text {
    padding-right: 20px;
}

.breakfast-image, .art-image {
    width: 100%;
}

.breakfast-image img, .art-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.breakfast-list {
    list-style: none;
    padding: 20px 0;
}

.breakfast-list li {
    padding: 8px 0;
    color: var(--text-dark);
}

.breakfast-list i {
    color: var(--success);
    margin-right: 10px;
    font-weight: bold;
}

.bistro-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
}

.bistro-col h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.bistro-col ul {
    list-style: none;
    padding: 0;
}

.bistro-col li {
    padding: 8px 0;
    line-height: 1.8;
}

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

.bistro-col a:hover {
    color: var(--secondary);
}

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

.menu-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

.menu-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

/* Attractions & Restaurants & Activities */
.attractions-section, .restaurants-section, .activities-section, .events-section {
    padding: 60px 0;
}

.attractions-section, .activities-section {
    background: white;
}

.restaurants-section, .events-section {
    background: var(--light-bg);
}

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

.restaurant-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.restaurant-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.restaurant-card ul {
    list-style: none;
    padding: 0;
}

.restaurant-card li {
    padding: 5px 0;
    line-height: 1.6;
}

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

.activity-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-3px);
}

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

.activity-card h3 {
    margin-bottom: 1rem;
}

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

.event-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid var(--secondary);
}

.event-time {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Über Uns Sections */
.hotel-story, .art-section, .bettbike-section, .sustainability-section, .careers-section {
    padding: 60px 0;
}

.hotel-story, .art-section, .careers-section {
    background: white;
}

.bettbike-section, .sustainability-section {
    background: var(--light-bg);
}

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

.feature-card, .sustainability-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.feature-card:hover, .sustainability-card:hover {
    transform: translateY(-3px);
}

.feature-card i, .sustainability-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3, .sustainability-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.careers-content {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

/* Contact Styles */
.contact-section, .contact-form-section, .directions-section, .social-booking-section {
    padding: 60px 0;
}

.contact-section, .contact-form-section, .social-booking-section {
    background: white;
}

.directions-section {
    background: var(--light-bg);
}

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

.contact-col {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

.contact-col h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.contact-form {
    max-width: 600px;
    margin: 30px auto;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 77, 127, 0.1);
}

.directions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
}

.directions-text h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary);
}

.directions-text p {
    margin-bottom: 1rem;
}

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

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

.social-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--secondary);
}

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

.social-card h3 {
    margin-bottom: 0.5rem;
}

.social-card p {
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Mobile Responsive Additions */
@media (max-width: 768px) {
    .breakfast-content,
    .art-content,
    .directions-content,
    .about-content,
    .bistro-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .breakfast-text,
    .art-text,
    .directions-text {
        padding-right: 0;
    }

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

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

    .booking-buttons .btn {
        width: 100%;
    }
}
