/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c19a6b;
    --primary-dark: #a87c52;
    --secondary-color: #1a3c5e;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #f9f9f9;
    --white: #ffffff;
    --border-radius: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    padding: 0 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo {
    text-decoration: none;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

    .nav-logo:hover {
        transform: translateY(-2px);
    }

.logo-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    position: relative;
}

.nav-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(193, 154, 107, 0.1);
}

    .nav-link:hover .nav-icon,
    .nav-link.active .nav-icon {
        transform: scale(1.1);
        color: var(--primary-color);
    }

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

    .nav-toggle:hover {
        background: var(--background-light);
    }

.toggle-bar {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Main Content */
.main {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
}

/* Footer Styles - Sade Renkler */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 0 0;
    margin-top: auto;
    position: relative;
    border-top: 1px solid #333;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #555, #888, #555);
    }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

    .footer-section h4 {
        color: #cccccc;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

        .footer-section h4 i {
            font-size: 1.1rem;
            color: #888;
        }

    .footer-section p {
        margin-bottom: 0.8rem;
        line-height: 1.6;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #999;
    }

    .footer-section a {
        color: #aaa;
        text-decoration: none;
        margin-bottom: 0.8rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .footer-section a:hover {
            color: #ddd;
            transform: translateX(3px);
        }

/* Footer Logo */
.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    font-size: 2.5rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.footer-logo h3 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.footer-logo p {
    color: #999;
    font-style: italic;
}

/* Social Links - Sade Versiyon */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #333;
    border-radius: 6px;
    color: #aaa !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 1px solid #444;
}

    .social-link:hover {
        background: #444;
        color: #ddd !important;
        transform: translateY(-2px);
        border-color: #666;
    }

/* Footer Buttons - Sade Versiyon */
.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: #333;
    color: #ddd;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #444;
    cursor: pointer;
}

    .footer-btn:hover {
        background: #444;
        color: #fff;
        transform: translateY(-1px);
        border-color: #666;
    }

/* Footer Bottom */
.footer-bottom {
    background: #151515;
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid #333;
}

    .footer-bottom .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
    }

    .footer-bottom p {
        margin: 0;
        color: #777;
        font-size: 0.9rem;
    }

.design-credit a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .design-credit a:hover {
        color: #aaa;
    }



.design-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .design-credit a {
        color: #f39c12;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .design-credit a:hover {
            color: #e74c3c;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-btn {
        flex: 1;
        min-width: 140px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
    }

    .footer-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Animation for footer elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

    .footer-section:nth-child(1) {
        animation-delay: 0.1s;
    }

    .footer-section:nth-child(2) {
        animation-delay: 0.2s;
    }

    .footer-section:nth-child(3) {
        animation-delay: 0.3s;
    }

    .footer-section:nth-child(4) {
        animation-delay: 0.4s;
    }

/* Menu Page Styles */
.menu-page {
    padding: 2rem 0;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .category-btn i {
        font-size: 0.9rem;
    }

    .category-btn.active,
    .category-btn:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
    }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

    .menu-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.menu-item-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .menu-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-item-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.menu-item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-item-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.menu-item-category {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--background-light);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: #2c3e50;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto;
    }

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #c19a6b;
    color: white;
    border: 2px solid #c19a6b;
}

    .btn-primary:hover {
        background-color: #a87c52;
        border-color: #a87c52;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-secondary:hover {
        background-color: white;
        color: #2c3e50;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

/* Hero Bölümü */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/frontend/assets/img/fotograf/rumeli2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    z-index: 2;
}

    .scroll-indicator i {
        display: block;
        text-align: center;
        margin-top: 5px;
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Öne Çıkanlar Bölümü */
.featured {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.featured-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .featured-item:hover {
        transform: translateY(-10px);
    }

.featured-image {
    height: 250px;
    overflow: hidden;
}

    .featured-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.featured-item:hover .featured-image img {
    transform: scale(1.1);
}

.featured-content {
    padding: 25px;
}

    .featured-content h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #2c3e50;
    }

    .featured-content p {
        color: #7f8c8d;
        line-height: 1.6;
    }

/* Galeri Bölümü */
.gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #666;
    }

/* Galeri Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* Hizmetler Bölümü */
.services {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .service-item:hover {
        transform: translateY(-10px);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background: #c19a6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Rezervasyon Banner */
.reservation-banner {
    padding: 100px 0;
    color: black;
    text-align: center;
}

.banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Genel container */
.about-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Bölümü */
.about-page .about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/frontend/assets/img/fotograf/rumeli2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

    .about-page .about-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .about-page .about-hero p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }

.about-page .section-header {
    margin-bottom: 15px;
}
/* Breadcrumb */
.about-page .breadcrumb {
    padding: 15px 0;
    background-color: #f5f5f5;
    font-size: 0.95rem;
}

    .about-page .breadcrumb a {
        color: #c19a6b;
        text-decoration: none;
    }

        .about-page .breadcrumb a:hover {
            color: #a87c52;
        }

    .about-page .breadcrumb span {
        color: #7f8c8d;
    }

/* Tarihçe */
.about-page .history-section {
    padding: 80px 0;
}

.about-page .history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-page .history-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
    position: relative;
}

    .about-page .history-text h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background-color: #c19a6b;
    }

.about-page .history-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.about-page .history-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.about-page .history-image:hover img {
    transform: scale(1.05);
}

/* Misyon & Vizyon */
.about-page .mission-vision {
    padding: 80px 0;
    background: #f9f9f9;
}

.about-page .mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-page .mission-item,
.about-page .vision-item {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .about-page .mission-item:hover,
    .about-page .vision-item:hover {
        transform: translateY(-8px);
    }

/* Takım */
.about-page .team-section {
    padding: 80px 0;
}

.about-page .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.about-page .team-member {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .about-page .team-member:hover {
        transform: translateY(-8px);
    }

/* Değerler */
.about-page .values-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.about-page .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.about-page .value-item {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .about-page .value-item:hover {
        transform: translateY(-8px);
    }

/* Animasyon */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s, transform .6s;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Page Genel */
.contact-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

/* Hero */
.contact-page .contact-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url('/frontend/assets/img/fotograf/rumeli2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

    .contact-page .contact-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .contact-page .contact-hero p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }

/* Breadcrumb */
.contact-page .breadcrumb {
    padding: 15px 0;
    background: #f5f5f5;
    font-size: 0.95rem;
}

    .contact-page .breadcrumb a {
        color: #c19a6b;
        text-decoration: none;
    }

        .contact-page .breadcrumb a:hover {
            color: #a87c52;
        }

    .contact-page .breadcrumb span {
        color: #7f8c8d;
    }

/* Contact Section */
.contact-page .contact-section {
    padding: 80px 0;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* Form */
.contact-page .contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

    .contact-page .contact-form h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        margin-bottom: 20px;
        color: #2c3e50;
    }

    .contact-page .contact-form .form-group {
        margin-bottom: 20px;
    }

    .contact-page .contact-form label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #2c3e50;
    }

    .contact-page .contact-form input,
    .contact-page .contact-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 1rem;
        outline: none;
        transition: border-color .3s ease;
    }

        .contact-page .contact-form input:focus,
        .contact-page .contact-form textarea:focus {
            border-color: #c19a6b;
        }

    .contact-page .contact-form button {
        background: #c19a6b;
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 6px;
        font-size: 1rem;
        cursor: pointer;
        transition: background .3s ease;
    }

        .contact-page .contact-form button:hover {
            background: #a87c52;
        }

/* Info Box */
.contact-page .contact-info {
    display: grid;
    gap: 25px;
}

.contact-page .info-item {
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform .3s ease;
}

    .contact-page .info-item:hover {
        transform: translateY(-5px);
    }

.contact-page .info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #c19a6b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.contact-page .info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-page .info-text p {
    font-size: 0.95rem;
    color: #7f8c8d;
}

/* Map */
.contact-page .map {
    margin-top: 60px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

/* Container */
.rh-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 120px;
}

/* Filtre Butonları */
.rh-gallery-filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.rh-gallery-filter-btn {
    padding: 10px 20px;
    background-color: #fff;
    border: 2px solid #d4af37;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

    .rh-gallery-filter-btn.active, .rh-gallery-filter-btn:hover {
        background-color: #d4af37;
        color: white;
    }

/* Galeri Grid */
.rh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Galeri Öğeleri */
.rh-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 250px;
    cursor: pointer;
}

    .rh-gallery-item:hover {
        transform: translateY(-5px);
    }

.rh-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rh-gallery-item:hover .rh-gallery-image {
    transform: scale(1.05);
}

.rh-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.rh-gallery-item:hover .rh-gallery-overlay {
    transform: translateY(0);
}

.rh-gallery-item-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Modal (Tam ekran görüntüleme) */
.rh-gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: rhFadeIn 0.3s;
}

@keyframes rhFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.rh-gallery-modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
    margin-top: 5%;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.rh-gallery-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

    .rh-gallery-close:hover {
        color: #d4af37;
    }

.rh-gallery-prev, .rh-gallery-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0 5px 5px 0;
}

.rh-gallery-next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

    .rh-gallery-prev:hover, .rh-gallery-next:hover {
        background-color: rgba(212, 175, 55, 0.8);
    }

.rh-gallery-caption {
    text-align: center;
    color: #f1f1f1;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
}

/* Footer */
.rh-gallery-footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.rh-gallery-footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.rh-gallery-social-icons {
    margin: 20px 0;
}

.rh-gallery-social-icon {
    color: #d4af37;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

    .rh-gallery-social-icon:hover {
        color: #fff;
    }

/* Hero */
.rh-gallery-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('/Assets/Rumeli/Fotograf/rumeli2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.rh-gallery-hero {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-page .contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a3c5e;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Menü Bölümü */
.menu {
    padding: 80px 0;
}

.menu-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: white;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

    .filter-btn.active, .filter-btn:hover {
        background: #ffb300;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

    .menu-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

.menu-item-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

    .menu-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 25px;
}

.menu-item-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: flex-start;
}

.menu-item h3 {
    font-size: 1.4rem;
    color: #1a3c5e;
    margin-right: 15px;
    line-height: 1.3;
}

.price {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.3rem;
    white-space: nowrap;
}

.menu-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 179, 0, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Alt CTA */
.cta-wrap {
    margin-top: 60px;
    width: 60%;
    margin: auto auto;
    background: linear-gradient(90deg, rgba(198, 37, 42, .12), rgba(54, 57, 53, .18));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 24px;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: center
}

.cta-text h3 {
    margin: 0 0 6px;
    font-size: clamp(18px, 2.4vw, 28px)
}

.cta-text p {
    margin: 0;
    color: var(--muted)
}

.cta-actions {
    display: flex;
    justify-content: flex-end
}

    .cta-actions .btn {
        min-width: 180px
    }

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }

    .main {
        margin-top: 0;
    }
}

/* ========================================================================== */
/* MOBİL UYUMLULUK - TÜM RESPONSIVE KODLAR AŞAĞIDA TOPLANMIŞTIR */
/* ========================================================================== */

/* Large screens */
@media screen and (min-width: 1200px) {
    .nav-container {
        padding: 1.5rem 0;
    }

    .footer-container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Tablet ve Küçük Masaüstü */
@media (max-width: 1180px) {
    .cta-wrap {
        width: 80%;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }

    .contact-page .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-page .history-content {
        grid-template-columns: 1fr;
    }
}

/* Tablet */
@media screen and (max-width: 900px) {
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .cta-actions {
        justify-content: flex-start
    }
}

/* Mobil ve Tablet */
@media screen and (max-width: 768px) {
    .nav {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

        .nav-menu.active {
            left: 0;
        }

    .nav-list {
        flex-direction: column;
        padding: 0 2rem;
        gap: 0;
    }

    .nav-item {
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        display: flex;
        padding: 1rem 0;
        border-radius: 0;
    }

        .nav-link::after {
            display: none;
        }

    .nav-toggle {
        display: flex;
    }

        .nav-toggle.active .toggle-bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-toggle.active .toggle-bar:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active .toggle-bar:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

    .main {
        margin-top: 70px;
    }

    .footer-container {
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .menu-categories {
        gap: 0.5rem;
    }

    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-btn {
        flex: 1;
        min-width: 140px;
    }

    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .social-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }

    /* Hero responsive */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 250px);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
        margin-bottom: 10px;
    }

    /* Menu responsive */
    .menu-items {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .menu-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* About page responsive */
    .about-page .about-hero {
        height: 50vh;
    }

        .about-page .about-hero h1 {
            font-size: 2.2rem;
        }

    /* Gallery responsive */
    .rh-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .rh-gallery-title {
        font-size: 2rem;
    }

    .rh-gallery-subtitle {
        font-size: 1.1rem;
    }

    .rh-gallery-modal-content {
        max-width: 95%;
        max-height: 70%;
    }
}

/* Küçük Mobil */
@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .featured-grid, .services-grid {
        grid-template-columns: 1fr;
    }

    .about-page .mission-vision-grid,
    .about-page .team-grid,
    .about-page .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Çok Küçük Mobil */
@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 0;
    }

    .logo-main {
        font-size: 1.25rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .main {
        margin-top: 60px;
    }

    .menu-item-content {
        padding: 1rem;
    }

    .menu-item-title {
        font-size: 1.1rem;
    }

    .menu-item-price {
        font-size: 1rem;
    }

    .footer-section {
        text-align: center;
    }

        .footer-section h4,
        .footer-section p,
        .footer-section a {
            justify-content: center;
        }

    .social-links {
        flex-direction: column;
    }

    /* Gallery responsive */
    .rh-gallery-grid {
        grid-template-columns: 1fr;
    }

    .rh-gallery-filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .rh-gallery-filter-btn {
        width: 80%;
    }

    /* Contact page responsive */
    .contact-page .contact-form {
        padding: 20px;
    }

    .contact-page .info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-page .info-icon {
        margin-bottom: 10px;
    }
}
/* Mobil Menü için Ek Stiller */
@media (max-width: 768px) {
    .nav-open {
        overflow: hidden;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    .toggle-bar {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

    .nav-toggle.active .toggle-bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .toggle-bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.3s;
        z-index: 1000;
        padding: 80px 20px 20px;
    }

        .nav-menu.active {
            right: 0;
        }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: flex;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .nav-icon {
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }
}

/* Header scroll efekti */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    transition: all 0.3s ease;
    z-index: 999;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}