/* General Styles */
:root {
    --primary-color: #8e210b;
    --secondary-color: #d4a762;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #fff;
    --black-color: #000;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white-color);
    font-family: 'Playfair Display', serif;
}

.site-slogan {
    font-size: 0.9rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--white-color);
}

.navbar-dark .navbar-nav .nav-link.active {
    position: relative;
}

.navbar-dark .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 0;
}

.dropdown-item {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/galeri/resim.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section2 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/galeri/caferestaurant.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section3 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section4 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.video-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    transition: all 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Rooms Section */
.rooms-section {
    padding: 100px 0;
}

.room-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.room-card img {
    height: 250px;
    object-fit: cover;
}

.room-card .card-body {
    padding: 25px;
}

.room-card .card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.room-card .card-text {
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Places Section */
.places-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.place-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.place-card img {
    height: 200px;
    object-fit: cover;
}

.place-card .card-body {
    padding: 20px;
}

.place-date {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-bottom: 10px;
    display: block;
}

.place-card .card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.place-card .card-text {
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Sustainability Section */
.sustainability-section {
    padding: 100px 0;
}

.sustainability-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sustainability-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.contact-info {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-item p, .contact-item a {
    color: var(--gray-color);
    margin-bottom: 0;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--white-color);
    padding: 80px 0 30px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer .site-name {
    font-size: 1.8rem;
}

.footer .site-slogan {
    color: var(--secondary-color);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(117, 42, 42);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer h5 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white-color);
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 30px;
    border: none;
    padding: 0 20px;
}

.newsletter-form .btn {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    padding: 0 20px;
    border-radius: 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-heading {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 150px 0 80px;
        text-align: center;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .video-container {
        margin-top: 50px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-heading {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        margin-bottom: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright {
        text-align: center !important;
        margin-bottom: 15px;
    }
    
    .text-md-end {
        text-align: center !important;
    }
    
    .text-md-end a {
        margin: 0 10px;
    }
}

@media (max-width: 575.98px) {
    .hero-heading {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Logo için stil */
.navbar-logo {
    height: 100px; /* Logonuzun boyutuna göre ayarlayın */
    margin-right: 10px;
}

/* Eğer sadece logo kullanacaksanız (metin olmadan) */
.navbar-brand.logo-only {
    display: flex;
    align-items: center;
}

/* Scrolled durumu için logo boyutunu küçültme */
.navbar.scrolled .navbar-logo {
    height: 30px; /* Kaydırıldığında logo boyutunu küçült */
    transition: all 0.3s ease;
}

/* Menu Section Styles */
.menu-section {
    background-color: #f8f9fa;
}

.menu-category {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.menu-category h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.menu-items {
    space-y: 20px;
}

.menu-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu-item h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.menu-item .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-item .description {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.special-menu {
    margin-top: 50px;
}

.special-menu h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.special-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.special-card .card-body {
    padding: 30px;
    text-align: center;
}

.special-card .card-title {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.special-card .card-text {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.special-card .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.special-card ul {
    text-align: left;
}

.special-card li {
    color: var(--gray-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Restaurant Intro Section */
.restaurant-intro {
    background-color: var(--white-color);
}

.restaurant-intro h2 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.restaurant-intro p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.restaurant-hours {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.restaurant-hours h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.restaurant-hours ul li {
    color: var(--gray-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.restaurant-hours strong {
    color: var(--primary-color);
}