/* Global Styles */
:root {
    --primary-color: #d4af37; /* Altın */
    --secondary-color: #3e2723; /* Koyu Kahve */
    --dark-bg: #111111;
    --light-bg: #f9f9f9;
    --text-color: #666;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Lato', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--secondary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Navbar */
.navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.navbar-brand {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color) !important;
}

.nav-link {
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0 1rem;
}

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

.book-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.5rem 1.5rem;
}

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

/* Hero Section */
header.masthead {
    /* Background managed by Carousel */
    height: 100vh;
    min-height: 40rem;
    position: relative;
    overflow: hidden;
}

/* Ensure Carousel takes full height */
.carousel, .carousel-inner, .carousel-item {
    height: 100%;
}

.carousel-caption {
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 3rem;
}

header.masthead h1 {
    font-size: 3rem;
    color: white;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

@media (min-width: 992px) {
    header.masthead {
        height: 100vh;
        min-height: 40rem;
        padding-top: 4.5rem;
        padding-bottom: 0;
    }
    header.masthead h1 {
        font-size: 4.5rem;
    }
}

.divider {
    max-width: 3.25rem;
    border-width: 0.2rem;
    border-color: var(--primary-color);
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0;
    text-transform: uppercase;
    font-family: var(--body-font);
    font-weight: 700;
    padding: 1rem 2rem;
}

.btn-primary:hover {
    background-color: #b5902f;
    border-color: #b5902f;
}

.btn-dark {
    background-color: var(--secondary-color);
    border-radius: 0;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Page Sections */
.page-section {
    padding: 6rem 0;
}

.section-heading {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subheading {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    font-family: var(--heading-font);
    margin-bottom: 4rem;
}

/* Parallax Section */
.parallax-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../../images/1.jpeg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem 0;
}

.parallax-section h2 {
    color: white;
    font-size: 3rem;
    font-style: italic;
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 300px; /* Sabit yükseklik */
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Menu Section */
.nav-pills .nav-link {
    background-color: transparent;
    color: var(--secondary-color);
    border-radius: 0;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin: 0 10px;
    border-bottom: 2px solid transparent;
}

.nav-pills .nav-link.active, .nav-pills .nav-link:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.menu-item h5 {
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: 1px;
}

.menu-divider {
    border-bottom: 1px dashed #ddd;
    margin-top: 1rem;
}

/* Forms */
.form-control {
    border-radius: 0;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Footer */
.footer {
    background-color: #0f0f0f;
    font-size: 0.9rem;
}

.footer h4 {
    color: white;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.btn-social {
    border-radius: 100%;
    display: inline-flex;
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.25rem;
    justify-content: center;
    align-items: center;
    border-color: rgba(255,255,255,0.3);
}

.btn-social:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Animated Gradient Text for Footer */
.bhdb-gradient-text {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(90deg, red, blue, green, yellow, orange, purple);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-anim 6s ease-in-out infinite;
    display: inline-block;
}

.bhdb-gradient-text:hover {
    color: transparent; /* Keep gradient on hover */
    opacity: 0.8;
}

@keyframes gradient-anim {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
