/* Global Styles */
:root {
    --primary-color: #d96d2f;
    --secondary-color: #e08919;
    --accent-color: #D4AF37;
    --text-color: #333;
    --light-bg: #FFF8DC;
    --dark-bg: #1A0F0A;
    --white: #ffffff;
    --gray: #f5f5f5;
    --transition: all 0.3s ease;
    --yemeksepeti-color: #fa0050;
    --yemeksepeti-hover: #d10043;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
@media (max-width: 530px) {
    .topbar {
        height: 70px !important;
    }
    .navbar {
        top: 70px !important;
    }
    .navbar.scrolled {
        top: 0 !important;
    }
    .navbar-brand-text {
        font-size: 18px !important;
    }
    .menu-open .hero-section {
        margin-top: 110px !important;
        height: calc(100vh - 110px) !important;
    }
}

/* Topbar Styles */
.topbar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
    height: 50px;
    overflow: hidden;
}

.topbar-social {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}


.topbar.hide {
    transform: translateY(-100%);
}

.topbar-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.topbar-info a:hover {
    color: var(--accent-color);
}

.topbar-social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.topbar-social a {
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-social a:hover {
    transform: translateY(-2px);
}

/* Navigation Styles */
.navbar {
    background:rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    top: 0;
    padding: 0.8rem 0;
    background: var(--white);
}

.navbar.mobile-open {
    top: 0 !important;
    z-index: 1002;
}

.navbar-brand {
    padding: 0;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-brand img {
    height: 70px;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
    height: 70px;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    background-color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-order {
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    gap: 0.5rem;
}

.btn-order:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(217, 109, 47, 0.3);
}

/* Mobile order button */
.d-lg-none .btn-order {
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}
.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    padding: 0.5rem 0;
    margin: 0;
    background-color: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.7rem 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .topbar-info {
        font-size: 14px;
    }


    .navbar.scrolled {
        top: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .navbar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar-backdrop.show {
        opacity: 1;
        visibility: visible;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        padding: 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1002;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-toggler {
        position: absolute;
        right: 1rem;
        z-index: 1003;
    }


    .mobile-menu-logo {
        display: none;
        text-align: center;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-logo img {
        height: 120px;
        width: auto;
    }

    @media (max-width: 991px) {
        .mobile-menu-logo {
            display: block;
        }
    }

    .navbar-nav {
        margin-bottom: 2rem;
    }

    .nav-item {
        margin-bottom: 0.5rem;
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background-color: rgba(217, 109, 47, 0.1);
        color: var(--primary-color) !important;
    }

    .nav-link.active {
        background-color: var(--primary-color);
        color: var(--white) !important;
    }

    .nav-link::after {
        display: none;
    }

    .mobile-menu-social {
        display: none;
    }

    @media (max-width: 991px) {
        .mobile-menu-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
    }

    .mobile-menu-social a {

        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .mobile-menu-social a:hover {
        transform: translateY(-3px);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
        margin: 0.2rem 0;
    }

    .dropdown-item:hover,
    .dropdown-item.active {
        background-color: rgba(217, 109, 47, 0.1);
        color: var(--primary-color);
    }

    .dropdown-toggle i {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-toggle i {
        transform: translateY(-50%) rotate(180deg);
    }
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-item-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info-item-content {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-item-content i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    margin-top: 160px;
    height: calc(100vh - 160px);
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    height: 100%;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgba(217, 109, 47, 0.3), rgba(217, 109, 47, 0.7)); */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 1;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Hero Slider Navigation Styling */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Hero Slider Pagination Styling */
.hero-swiper .swiper-pagination {
    bottom: 30px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .hero-swiper .swiper-button-next:after,
    .hero-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 20px;
    }
    
    .hero-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .hero-swiper .swiper-pagination-bullet-active {
        width: 25px;
    }
}

/* Section Styles */
.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}



.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.menu-tab {
    padding: 0.8rem 2rem;
    border: none;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 109, 47, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.menu-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-item::before {
    display: none;
}

.menu-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.menu-item-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.menu-item-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.menu-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-item-price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.menu-item-select {
    width: auto;
    height: 36px;
    border: 2px solid var(--primary-color);
    border-radius: 18px;
    background: transparent;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 12px;
    font-size: 0.9rem;
    font-weight: 500;
    gap: 5px;
}

.menu-item-select:hover {
    background-color: var(--primary-color);
    color: white;
}

.menu-item-select.selected {
    background-color: var(--primary-color);
    color: white;
}

.menu-item-select.selected i {
    transition: transform 0.3s ease;
}

.menu-item-select i {
    transition: transform 0.3s ease;
    line-height: 1;
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -1px;
}

.menu-item-description {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.menu-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.menu-item-order {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.menu-item-order:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.menu-view-more {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.menu-view-more .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: var(--transition);
}

.menu-view-more .btn:first-child {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.menu-view-more .btn:first-child:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 109, 47, 0.3);
}

.menu-view-more .btn:last-child {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-view-more .btn:last-child:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 109, 47, 0.3);
}

.menu-view-more .btn .selected-count {
    background: white;
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .menu-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .menu-tab {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-item {
        margin-bottom: 2rem;
    }

    .menu-item:last-child {
        margin-bottom: 0;
    }

    .menu-item-image {
        height: 415px;
    }

    .menu-item-title {
        font-size: 1.1rem;
    }

    .menu-item-price {
        font-size: 1.1rem;
    }

    .menu-item-select {
        width: auto;
        height: 32px;
        padding: 0 10px;
    }

    .menu-view-more {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-view-more .btn {
        width: 100%;
        justify-content: center;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    padding: 2rem;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--gray);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 580px;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Gallery Modal Styles */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

/* Add specific styling for gallery modal */
#galleryModal .modal-content {
    background: transparent;
    border: none;
}

.gallery-modal-content {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-modal-image {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.gallery-modal-image img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-modal-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.btn-icon:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.btn-icon i {
    font-size: 1.2rem;
}

.modal-header .btn-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 1000;
    background: none;
    opacity: 0.7;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}


.modal-header .btn-close:hover {
    opacity: 1;
    background: none;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-modal-image {
        padding: 1rem;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
    }

    .gallery-modal-navigation {
        padding: 0 0.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--whıte);
}

.testimonials-slider-container {
    position: relative;
}

.testimonial-card {
    background: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonials-navigation {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.testimonial-prev i,
.testimonial-next i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .testimonials-slider-container {
        padding: 0 30px;
    }
    
    .testimonials-navigation {
        top: -50px;
    }
    .testimonial-card {

    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 35px;
        height: 35px;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--gray);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid #ddd;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .navbar-brand img {
        height: 70px;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Why Us Section */
.why-us-section {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 109, 47, 0.05) 0%, rgba(139, 69, 19, 0.05) 100%);
    z-index: 1;
}

.feature-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    border: 1px solid rgba(139, 69, 19, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature-item:hover::before {
    opacity: 0.05;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.feature-item h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    transition: var(--transition);
}

.feature-item:hover h4 {
    color: var(--secondary-color);
}

.feature-item p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    transition: var(--transition);
    flex-grow: 1;
}

.feature-item:hover p {
    color: var(--text-color);
}

/* Add decorative elements */
.feature-item::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0.1;
    transition: var(--transition);
}

.feature-item:hover::after {
    transform: scale(1.2);
    opacity: 0.15;
}

@media (max-width: 768px) {
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .feature-item i {
        font-size: 2.5rem;
    }
    
    .feature-item h4 {
        font-size: 1.3rem;
    }
}

/* Reservation System */
.floating-reservation-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-selected-items {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 300px;
    opacity: 0;
}

.floating-selected-items-header {
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #333;
    font-weight: 500;
    text-align: left;
    background: #f8f9fa;
}

.floating-selected-items.active {
    max-height: 200px;
    opacity: 1;
    overflow-y: auto;
}

.floating-selected-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    gap: 8px;
}

.floating-selected-item:last-child {
    border-bottom: none;
}

.floating-selected-item-title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-selected-item-price {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 8px;
    white-space: nowrap;
}

.floating-selected-item-delete {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dc3545;
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    font-size: 14px;
}

.floating-selected-item-delete:hover {
    background-color: #a71d2a;
}

.floating-reservation-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: auto;
}

@media (max-width: 768px) {
    .floating-reservation-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .floating-selected-items {
        width: 100%;
    }

    .floating-reservation-btn {
        width: 100%;
        justify-content: center;
    }
} 

.page-wrapper {
    min-height: 100vh;
    padding: 120px 0;
}

/* About Section */
.about-wrapper {
    border-radius: 20px;
    border-radius: 20px;
    background-color: var(--gray);
    padding: 20px;
}

.breadcrumb-wrapper {

    background-size: cover;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    margin-bottom: 3rem;
    overflow: hidden;
}

.breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.breadcrumb-wrapper .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
}

.breadcrumb-wrapper .page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb-wrapper .page-description {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.breadcrumb-wrapper .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    z-index: 2;
    position: relative;
}

.breadcrumb-wrapper .breadcrumb-item {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb-wrapper .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-wrapper .breadcrumb-item a:hover {
    opacity: 1;
}

.breadcrumb-wrapper .breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
    opacity: 1;
}

@media (max-width: 768px) {
    .breadcrumb-wrapper {
        min-height: 300px;
        padding: 1rem;
    }

    .breadcrumb-wrapper .page-title {
        font-size: 2.5rem;
    }

    .breadcrumb-wrapper .page-description {
        font-size: 1.2rem;
    }
}

/* Pagination Styling */
.menu-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.menu-pagination .btn {
    min-width: 40px;
    height: 40px;
    padding: 0.375rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 500;
}

.menu-pagination .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.menu-pagination .btn-outline-secondary {
    color: var(--text-color);
    border-color: #dee2e6;
}

.menu-pagination .btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination-prev,
.pagination-next {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 100px !important;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 8px 15px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(217, 109, 47, 0.3);
}

.pagination-prev:not([disabled]):hover,
.pagination-next:not([disabled]):hover {
    transform: translateY(-2px);
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(224, 137, 25, 0.4);
}

.pagination-prev[disabled],
.pagination-next[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
    pointer-events: none;
    background-color: #aaa;
    box-shadow: none;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .menu-pagination {
        gap: 0.3rem;
    }
    
    .menu-pagination .btn {
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
    }
    
    .pagination-prev,
    .pagination-next {
        min-width: 80px !important;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .pagination-prev i,
    .pagination-next i {
        font-size: 0.7rem;
    }
    .selected-items-list {
        max-height: 190px !important;
    }
}

/* Menu Item Styles */
.menu-item-col {
    padding: 10px;
    margin-bottom: 20px;
}

.menu-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#menuItemsContainer {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}

.selected-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 60vh;
    overflow-y: auto;
    padding: 10px;
    background-color: var(--gray);
    border-radius: 8px;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: var(--transition);
    gap: 10px;
}

.selected-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.selected-item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.selected-item-title {
    font-weight: 600;
    color: var(--text-color);
}

.selected-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn,
.selected-item-delete {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    font-size: 14px;
}

.quantity-btn:hover,
.selected-item-delete:hover {
    background-color: var(--secondary-color);
}

.selected-item-delete {
    background-color: #dc3545;
}

.selected-item-delete:hover {
    background-color: #a71d2a;
}

.quantity-btn.minus,
.quantity-btn.plus {
    font-size: 16px;
    font-weight: bold;
}

.selected-item-quantity span {
    margin: 0 5px;
    font-weight: 500;
}

.selected-item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.selected-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Reservation Modal Cancel Button */
#reservationModal .btn-danger {
    background-color: #dc3545;
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    height: 48px; /* Match the height of the send button */
}

#reservationModal .btn-danger:hover {
    background-color: #a71d2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#reservationModal .btn-modal-cancel {
    background-color: #dc3545;
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    height: 48px; /* Match the height of the send button */
    display: flex;
    align-items: center;
    justify-content: center;
}

#reservationModal .btn-modal-cancel:hover {
    background-color: #a71d2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Blog Section Styles */
.blog-section {
    background-color: var(--gray);
}

.blog-item {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-item-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-item:hover .blog-item-image img {
    transform: scale(1.1);
}

.blog-item-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-item-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-item-title {
    margin-bottom: 1rem;
}

.blog-item-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-item-title a:hover {
    color: var(--secondary-color);
}

.blog-item-excerpt {
    color: var(--text-color);
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.85;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.blog-item-author {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.blog-item-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.blog-item-read-more:hover {
    color: var(--secondary-color);
}

.blog-item-read-more i {
    margin-left: 0.5rem;
}

/* Blog Detail Styles */
.blog-detail-section {
    background-color: var(--white);
}

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-post-image {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    color: var(--secondary-color);
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.related-posts-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.related-posts-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.related-post {
    background-color: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-content {
    padding: 1rem;
}

.related-post-content h4 {
    margin-bottom: 0.5rem;
}

.related-post-content h4 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.related-post-content h4 a:hover {
    color: var(--secondary-color);
}

.related-post-content p {
    color: var(--text-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .blog-item-image {
        height: 200px;
    }

    .blog-post-image {
        max-height: 300px;
    }

    .related-post-image {
        height: 150px;
    }
}

/* Toast Notification Styles */
.toastify {
    font-family: 'Poppins', sans-serif;
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    padding: 15px 20px !important;
    opacity: 0.95 !important;
    font-size: 14px !important;
}

.toastify.success {
    background: linear-gradient(135deg, #198754, #20c997) !important;
}

.toastify.error {
    background: linear-gradient(135deg, #dc3545, #f44336) !important;
}

.toastify.info {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0) !important;
}

.toastify.warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14) !important;
}

.toastify .toast-close {
    opacity: 0.7;
    padding: 4px;
    transition: var(--transition);
}

.toastify .toast-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .toastify {
        max-width: 90% !important;
        left: 5% !important;
        right: 5% !important;
    }
}
