/* Genel Stiller */
body {
    padding-top: 100px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Font Stilleri */
h1, h2, h3, h4, h5, h6, .navbar-nav .nav-link, .hero-section .btn {
    font-family: 'Pacifico', cursive;
}

.fun-text {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: #ffc107;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Navbar */
.custom-navbar {
    background-color: rgba(13, 50, 33, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1030;
}

.navbar-brand {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-nav {
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0 10px;
    display: flex;
    align-items: center;
}

.nav-link {
    color: white !important;
    font-size: 1.1rem;
    padding: 10px 20px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #ffc107 !important;
}

.nav-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.1);
}

.navbar-collapse {
    display: flex;
    align-items: center;
}

.nav-phone {
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    background-color: rgba(255, 255, 255, 0.1);
    margin-left: 15px;
}

.nav-phone:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffc107 !important;
    transform: translateY(-2px);
}

.nav-phone:hover .nav-icon {
    transform: scale(1.1);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] i:before {
    content: "\f00d";
}

@media (min-width: 992px) {
    body {
        padding-top: 110px;
    }

    .navbar-nav {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #ffc107;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 70%;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 90px;
    }

    .hero-section {
        height: calc(100vh - 90px);
        margin-top: 0;
    }

    .navbar-logo {
        height: 70px;
    }

    .navbar-collapse {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background-color: rgba(13, 50, 33, 0.98);
        margin: 0;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: block;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .nav-item {
        margin: 5px 0;
    }

    .nav-link {
        padding: 12px 20px !important;
        justify-content: flex-start;
    }

    .nav-icon {
        width: 24px;
        text-align: center;
        margin-right: 10px;
    }

    .nav-phone {
        margin: 15px 0;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.15);
        font-size: 1.2rem;
        padding: 15px 20px;
        border-radius: 30px;
        width: 100%;
    }

    .nav-phone i {
        font-size: 1.3rem;
    }

    .nav-phone:hover {
        background-color: rgba(255, 255, 255, 0.25);
    }

    .navbar-nav {
        margin-bottom: 10px;
    }
}

/* Hero Section */
.hero-section {
    height: calc(100vh - 70px);
    color: white;
    margin-top: 0;
    position: relative;
    z-index: 1020;
}

.carousel, .carousel-inner, .carousel-item {
    height: 100%;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.carousel-caption h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.carousel-caption .btn-primary {
    background-color: #0d3221;
    border-color: #0d3221;
    padding: 12px 30px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.carousel-caption .btn-primary:hover {
    background-color: #0a2519;
    border-color: #0a2519;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.carousel-indicators {
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
}

.carousel-control-prev, .carousel-control-next {
    z-index: 3;
    width: 10%;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .carousel-caption .lead {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .carousel-caption .btn {
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    .fun-text {
        font-size: 1.3rem;
    }

    .hero-section {
        height: 70vh;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .carousel-caption .lead {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .carousel-caption .btn {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .fun-text {
        font-size: 1.1rem;
    }
}

/* Başlık Stilleri */
.section-title {
    font-size: 3rem;
    color: #0d3221;
    margin-bottom: 2rem;
    text-align: center;
}

/* Ürünler Section */
.btn {
    outline: none !important;
    box-shadow: none !important;
}

.card {
    transition: transform 0.3s ease;
    margin-bottom: 0;
    height: 100%;
}

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

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 250px);
}

.btn:hover .card {
    transform: translateY(-5px);
}

.expand-icon {
    color: #0d3221;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    margin-top: 10px;
}

[aria-expanded="true"] .expand-icon {
    transform: rotate(180deg);
}

.product-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-item h4 {
    color: #0d3221;
    font-size: 1.3rem;
    margin: 15px 0;
    line-height: 1.4;
}

.product-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.6;
}

.price {
    display: block;
    color: #0d3221;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Pacifico', cursive;
    text-align: right;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.order-btn {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.order-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    color: white;
}

.order-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .product-image {
        height: 120px;
    }
    
    .product-item h4 {
        font-size: 1rem;
    }
    
    .product-item p {
        font-size: 0.85rem;
    }
    
    .price {
        font-size: 1.1rem;
    }

    .row.g-3 {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }

    .row.g-3 > .col-md-6 {
        width: 50%;
        padding: 5px;
    }

    .product-item {
        padding: 10px;
    }

    .product-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .price {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .order-btn {
        width: 100%;
        justify-content: center;
    }
}

/* İletişim Form */
.form-control {
    border-radius: 0;
    padding: 0.8rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

/* Footer */
.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    height: 160px;
    width: auto;
    object-fit: contain;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links a {
    font-size: 1.8rem;
    transition: all 0.3s ease;
    padding: 8px;
}

.social-links a:hover {
    color: #ffc107 !important;
    transform: translateY(-3px);
}

.footer-menu li a {
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-menu li a:hover {
    color: #ffc107 !important;
    padding-left: 5px;
}

.footer-contact li {
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-contact i {
    color: #ffc107;
}

.tags .badge {
    background-color: #0d3221 !important;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tags .badge:hover {
    background-color: #ffc107 !important;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .footer-logo {
        height: 120px;
    }
    
    .social-links {
        margin-bottom: 2rem;
    }
}

/* Hakkımızda Section */
#hakkimizda {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}

#hakkimizda::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/icon.png');
    background-size: 80px 80px;
    background-repeat: repeat;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

#hakkimizda .container {
    position: relative;
    z-index: 2;
}

.about-text {
    padding-right: 2rem;
}

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

.about-image {
    position: relative;
    display: inline-block;
    width: 100%;
}

.chef-image {
    width: 100%;
    object-fit: contain;
    transform: scale(0.66);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.chef-image:hover {
    transform: scale(0.68);
}

.about-image .etiket {
    position: absolute;
    left: 10%;
    bottom: 15%;
    width: 150px;
    height: auto;
    transform: rotate(-30deg);
    z-index: 2;
    transition: transform 0.3s ease;
}

.about-image .etiket:hover {
    transform: rotate(-25deg) scale(1.05);
}

@media (max-width: 991px) {
    .about-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .about-image .etiket {
        width: 100px;
        left: 5%;
        bottom: 10%;
    }
}

/* İletişim Bölümü Stilleri */
.contact-map {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    height: 100%;
}

.contact-map iframe {
    height: 100%;
    min-height: 450px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.info-item i {
    font-size: 24px;
    color: #0d3221;
    margin-top: 5px;
}

.info-content {
    flex: 1;
}

.info-content h5 {
    color: #0d3221;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: #666;
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form h4 {
    color: #0d3221;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.contact-form .form-control:focus {
    border-color: #0d3221;
    box-shadow: 0 0 0 0.2rem rgba(13, 50, 33, 0.25);
}

.contact-form .btn-primary {
    background-color: #0d3221;
    border-color: #0d3221;
    padding: 12px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.contact-form .btn-primary:hover {
    background-color: #0a2519;
    border-color: #0a2519;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .contact-map {
        height: auto;
    }
    
    .contact-map iframe {
        height: 350px;
        min-height: auto;
    }
    
    .contact-form, .contact-info {
        margin-bottom: 30px;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 16px;
}

@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-float i {
        margin-top: 13px;
    }
}

/* Fancybox özelleştirmeleri */
.fancybox__container {
    --fg1: #0d3221;
    --fg2: #fff;
    --bg1: #fff;
    --bg2: #f8f9fa;
}

.fancybox__toolbar {
    --fg1: #0d3221;
    --bg1: #fff;
}

.fancybox__nav {
    --fg1: #0d3221;
    --bg1: #fff;
}

.fancybox__button {
    --fg1: #0d3221;
    --bg1: #fff;
}

.fancybox__button:hover {
    --bg1: #f8f9fa;
} 