html {
    scroll-behavior: smooth;
    /*sayfanın daha güzel kayması için*/
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(75, 75, 75);
    background-color: rgb(239, 234, 227);
}

#mainNavbar .nav-link:hover {
    margin-right: 30px;
    font-weight: bolder;

}

#mainNavbar .nav-link {
    color: #fff;
    margin-right: 30px;
    font-size: 1.1rem;

}

#mainNavbar {
    background-color: rgb(182, 150, 108);
    padding: 15px;
}

#mainNavbar .navbar-brand {
    font-size: 1.5rem;
    color: #512222;
    font-weight: bolder;
}



/* Hero Section */
#hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position-y: center;
    background-attachment: fixed;
    position: relative;
}

.hero-overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #f0e6d3;
    margin-bottom: 30px;
}

.hero-btn {
    background-color: rgb(182, 150, 108) !important;
    color: #fff !important;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.hero-btn:hover {
    background-color: #b8864a;
    color: #fff;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

/* Hakkımızda */
#about {
    background-color: #fdf6ee;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #512222;
}

.about-divider {
    width: 80px;
    height: 4px;
    background-color: rgb(182, 150, 108);
    margin: 15px 0 20px 0;
    border-radius: 2px;
}

.about-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.about-stats h3 {
    font-size: 2rem;
    font-weight: 700;
    color: rgb(182, 150, 108);
}

.about-stats p {
    font-size: 0.85rem;
    color: #777;
}



/* MENU - Genel Section Başlıkları*/
#menu {
    background-color: #fcfaf8;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #512222;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: rgb(182, 150, 108);
    margin: 15px auto 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    color: #777;
    font-size: 1rem;
}

/* Menü Filtre Butonları */
.menu-filter-btn {
    background: none;
    border: 2px solid rgb(182, 150, 108);
    color: rgb(182, 150, 108);
    padding: 8px 22px;
    border-radius: 25px;
    margin: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-filter-btn:hover,
.menu-filter-btn.active {
    background-color: rgb(182, 150, 108);
    color: #fff;
}

/* Menü Kartları */
.menu-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    /*taşmagizlensin*/
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /*butongölgesi*/
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-8px);
}

.menu-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.menu-card .card-title {
    font-weight: 700;
    color: #512222;
}

.menu-card .card-text {
    color: #777;
    font-size: 0.9rem;
}

.menu-price {
    background-color: #fdf6ee;
    color: rgb(182, 150, 108);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 5px 15px;
    border-radius: 20px;
}


/*Galeri kısmı için css kodları*/
#gallery {
    background-color: #fdf6ee;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(182, 150, 108, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/*İletişim bölümü için css kodları*/
#contact {
    background-color: #fcfaf8;
}

.contact-info-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.6rem;
    margin-top: 3px;
}

.contact-info-item h6 {
    font-weight: 700;
    color: #512222;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: #777;
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.contact-input {
    border: 2px solid #f0e6d3;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.contact-input:focus {
    border-color: rgb(182, 150, 108);
    box-shadow: none;
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #512222;
    margin-bottom: 6px;
}

.contact-btn {
    background-color: rgb(182, 150, 108) !important;
    color: #512222;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600 !important;
    font-size: 1.0rem;
    transition: all 0.3s;
}

.contact-btn:hover {
    background-color: rgb(157, 129, 92) !important;
    transform: scale(1.02);
}