/* Elegantere Typografie */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Montserrat:wght@300;400;500&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Cormorant Garamond', serif;
}

/* Elegantere Header-Gestaltung */
.hero {
    height: 100vh;
    background-image: url('home.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax-Effekt */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero .lead {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Text im Hero-Bereich weiß machen */
.hero h1,
.hero .lead {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Elegantere Sektions-Überschriften */
section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #5e2129;
}

/* Elegantere Karten */
.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.price {
    color: #5e2129;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
}

/* Elegantere Karussell-Navigation */
.carousel-control-prev,
.carousel-control-next {
    background-color: #5e2129;
    opacity: 0.9;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Eleganteres Kontaktformular */
.form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 1rem 0.5rem;
    background-color: transparent;
}

.form-control:focus {
    box-shadow: none;
    border-color: #5e2129;
}

.btn-primary {
    background-color: #5e2129;
    border: none;
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #4a1a20;
}

/* Elegantere Öffnungszeiten */
.bi-clock {
    color: #5e2129;
    margin-right: 10px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

/* Weinrote Navigationsleiste */
.navbar {
    background-color: #5e2129 !important;  /* Weinrot */
}

/* Alternative Bordeaux-Töne, falls die Farbe nicht genau passt:
.navbar {
    background-color: #8B0000 !important;  /* Dunkleres Bordeaux */
    /* ODER */
    background-color: #722F37 !important;  /* Gedämpftes Bordeaux */
    /* ODER */
    background-color: #900020 !important;  /* Helleres Bordeaux */
}
*/ 

/* Basis-Einstellung für Restaurant-Bilder */
#restaurantCarousel .carousel-item img {
    max-height: 522px !important;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Spezielle Anpassung für Hochkant-Bilder */
#restaurantCarousel .carousel-item img[src*="WA0105"],
#restaurantCarousel .carousel-item img[src*="WA0106"],
#restaurantCarousel .carousel-item img[src*="WA0108"] {
    height: 522px !important;
    object-position: center top;
}

/* Höhere Bilder für Zimmer und Apartments */
#zimmerCarousel .carousel-item img,
#apartmentCarousel .carousel-item img {
    height: 700px !important;
    width: 100%;
    object-fit: cover;
}

/* Spezifische Anpassungen für mobile Geräte */
@media (max-width: 768px) {
    #restaurantCarousel .carousel-item img {
        height: 300px !important;
    }
    
    #zimmerCarousel .carousel-item img,
    #apartmentCarousel .carousel-item img {
        height: 400px !important;
    }
} 

/* Menü-Bereich Styling */
#menu {
    background-color: #f8f9fa;  /* Bootstrap's Standard-Grau */
    padding: 80px 0;
}

/* Menü-Tabs Styling */
.nav-tabs {
    border: none;
}

.nav-tabs .nav-link {
    border: none;
    color: #666;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    padding: 15px 30px;
    position: relative;
}

.nav-tabs .nav-link.active {
    color: #5e2129;
    background: none;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #5e2129;
}

/* Menü-Items Styling */
.menu-item {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.menu-item-header h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #333;
}

.menu-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #5e2129;
    font-weight: 600;
}

.menu-description {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Hover-Effekte */
.menu-item:hover .menu-item-header h3 {
    color: #5e2129;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .menu-item-header {
        flex-direction: column;
    }
    
    .menu-price {
        margin-top: 5px;
    }
} 

/* Kontakt-Bereich Styling */
.contact-info {
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #333;
}

.contact-info ul li {
    margin-bottom: 10px;
    color: #666;
}

.contact-info i {
    color: #5e2129;
    margin-right: 10px;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #5e2129;
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .map-container {
        margin-top: 30px;
    }
    
    .map-container iframe {
        height: 300px;
    }
} 

/* Zusätzliche Menü-Styles */
.menu-category {
    color: #5e2129;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.menu-note {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.menu-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #5e2129;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.menu-prices span {
    margin-bottom: 0.2rem;
} 

/* Styling für Sprachauswahl */
.dropdown-menu-end {
    right: 0;
    left: auto;
}

.navbar-nav .dropdown-menu {
    background-color: #5e2129;
}

.navbar-nav .dropdown-item {
    color: white;
}

.navbar-nav .dropdown-item:hover {
    background-color: #4a1a20;
    color: white;
} 

/* Aktuelle Sprache im Dropdown-Toggle */
html[lang="de"] #currentLanguageFlag {
    color: #DD0000;
}

html[lang="en"] #currentLanguageFlag {
    color: #00247D;
} 

.navbar-logo {
    height: 60px;  /* Kleiner als zuvor */
    width: auto;   /* Behält das Seitenverhältnis bei */
    margin-right: 15px;
    vertical-align: middle;
} 

/* Für mobile Ansicht */
@media (max-width: 768px) {
    .navbar-logo {
        height: 45px;  /* Auch auf mobilen Geräten angepasst */
    }
} 