/* Tema 2 - Modern Cafe: Dinamik Animasyonlar ve Parallax */

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--bg-light);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000 !important;
    background: white !important;
}

/* Hero Section */
.theme-2-hero {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 0;
}

.theme-2-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.75) 0%, rgba(22, 33, 62, 0.75) 100%);
    z-index: 1;
}

.theme-2-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.theme-2-hero-spacer {
    height: calc(100vh - 56px);
    position: relative;
    z-index: 1;
}

.theme-2-content-wrapper {
    position: relative;
    z-index: 2;
    background: var(--bg-light);
}

.theme-2-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.theme-2-section-title {
    font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
    color: #8b6914;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.theme-2-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #8b6914, transparent);
    animation: expandLine 1s ease-out;
}

/* Hero Title */
.theme-2-hero-title {
    font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
    font-size: 6rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    letter-spacing: 3px;
}

/* Subtitle */
.theme-2-subtitle {
    font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b6914;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 1px;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 80px; }
}

/* Menu Section */
.menu-section {
    background: white;
    position: relative;
    overflow: hidden;
}

/* Scroll Container */
.theme-2-scroll-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1.5rem;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(26, 26, 46, 0.3) transparent;
    touch-action: pan-x;
}

.theme-2-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.theme-2-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.theme-2-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(26, 26, 46, 0.3);
    border-radius: 10px;
}

.theme-2-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(26, 26, 46, 0.5);
}

.theme-2-scroll-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    min-width: 300px;
}

/* Category Cards */
.theme-2-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 450px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.theme-2-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.theme-2-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.theme-2-card:hover .theme-2-card-img {
    transform: scale(1.15) rotate(2deg);
}

.theme-2-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.95), transparent);
    color: white;
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.theme-2-product-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInScale 0.6s ease-out backwards;
}

.theme-2-product-card:nth-child(1) { animation-delay: 0.1s; }
.theme-2-product-card:nth-child(2) { animation-delay: 0.2s; }
.theme-2-product-card:nth-child(3) { animation-delay: 0.3s; }
.theme-2-product-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.theme-2-product-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(26, 26, 46, 0.3);
}

.theme-2-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.theme-2-product-card:hover .theme-2-product-img {
    transform: scale(1.2) rotate(5deg);
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(26,26,46,0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

/* Buttons */
.theme-2-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 25px;
    padding: 12px;
    font-weight: 600;
    border: none;
    position: relative;
    z-index: 11;
    overflow: hidden;
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

.theme-2-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.theme-2-btn:hover::before {
    width: 300px;
    height: 300px;
}

.theme-2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 26, 46, 0.3);
}

/* About Section */
.theme-2-about-section {
    position: relative;
    min-height: 800px;
    padding: 80px 0;
    background: white;
}

.theme-2-parallax-image {
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: sticky;
    top: 100px;
}

.theme-2-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center 0%;
    will-change: background-position;
}

.about-content h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.about-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.9;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-section h3 {
    color: var(--primary-color);
}

/* Animations */
.theme-2-floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.theme-2-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Menu Page Styles - Elegant Design */
.menu-page-section {
    background: #faf8f5;
    position: relative;
    overflow: hidden;
}

.menu-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="8" fill="%23d4a574" opacity="0.3"/><circle cx="50" cy="30" r="6" fill="%23d4a574" opacity="0.2"/><circle cx="80" cy="25" r="7" fill="%23d4a574" opacity="0.25"/><circle cx="30" cy="60" r="5" fill="%23d4a574" opacity="0.2"/><circle cx="70" cy="70" r="8" fill="%23d4a574" opacity="0.3"/></svg>') no-repeat;
    background-size: contain;
    opacity: 0.3;
    z-index: 0;
}

.menu-page-title {
    font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
    font-size: 5rem;
    font-weight: 700;
    color: #b8860b;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 2px;
}

.menu-category-title {
    font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
    font-size: 3rem;
    font-weight: 700;
    color: #8b6914;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 2px;
}

.menu-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: #8b6914;
}

.menu-items {
    margin-top: 20px;
}

.menu-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu-item-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.menu-item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-img {
    transform: scale(1.05);
}

.menu-item-text {
    flex: 1;
    min-width: 0;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.menu-item-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c1810;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b6914;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.menu-item-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.menu-decorative-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    height: 100%;
    min-height: 600px;
}

.menu-decorative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.menu-decorative-image-small {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    max-height: 500px;
    margin-top: 60px;
    align-self: flex-start;
}

.menu-decorative-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Back Button */
.btn-back-menu {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #8b6914;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 2px solid #8b6914;
}

.btn-back-menu:hover {
    background: #b8860b;
    border-color: #b8860b;
    color: white;
    transform: translateX(-3px);
    box-shadow: 0 3px 10px rgba(139, 105, 20, 0.3);
}

.btn-back-menu i {
    font-size: 0.9rem;
}

/* Menu Category Cards */
.menu-category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 300px;
}

.menu-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.menu-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-category-card:hover img {
    transform: scale(1.1);
}

.menu-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 30px 20px 20px;
    color: white;
}

.menu-category-card-title {
    font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.menu-category-card-desc {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* Contact Page Styles */
.contact-page-section {
    background: #faf8f5;
    min-height: calc(100vh - 80px);
}

.contact-page-title {
    font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
    font-size: 4rem;
    font-weight: 700;
    color: #8b6914;
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 250px;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b6914 0%, #b8860b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(139, 105, 20, 0.3);
}

.contact-icon-wrapper i {
    font-size: 1.8rem;
    color: white;
}

.contact-box-title {
    font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
    font-size: 2rem;
    font-weight: 700;
    color: #8b6914;
    margin-bottom: 15px;
    width: 100%;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.contact-box-text {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.8;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box-text a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box-text a:hover {
    color: #8b6914;
}

.hours-box {
    width: 100%;
    margin-top: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .hours-day {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

.hours-row .hours-time {
    color: #8b6914;
    font-weight: 600;
    font-size: 1rem;
}

/* Reservation Page Styles */
.reservation-page-section {
    background: #faf8f5;
    min-height: calc(100vh - 80px);
}

.reservation-page-title {
    font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
    font-size: 4rem;
    font-weight: 700;
    color: #8b6914;
    text-align: center;
    margin-bottom: 20px;
}

.reservation-page-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 0;
}

.reservation-contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reservation-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.reservation-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.reservation-icon-phone {
    background: linear-gradient(135deg, #8b6914 0%, #b8860b 100%);
}

.reservation-icon-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.reservation-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.reservation-card-title {
    font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
    font-size: 2rem;
    font-weight: 700;
    color: #8b6914;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.reservation-card-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-reservation-phone {
    display: inline-block;
    background: linear-gradient(135deg, #8b6914 0%, #b8860b 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 3px 10px rgba(139, 105, 20, 0.3);
}

.btn-reservation-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 105, 20, 0.4);
    color: white;
}

.btn-reservation-whatsapp {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.btn-reservation-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

.reservation-form-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.reservation-form-title {
    font-family: 'Dancing Script', 'Brush Script MT', cursive !important;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b6914;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.reservation-form-title i {
    color: #8b6914;
}

.reservation-form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-group-reservation {
    margin-bottom: 20px;
}

.form-group-reservation label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-control-reservation {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control-reservation:focus {
    outline: none;
    border-color: #8b6914;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.1);
}

.form-control-reservation::placeholder {
    color: #999;
}

.btn-reservation-submit {
    background: linear-gradient(135deg, #8b6914 0%, #b8860b 100%);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(139, 105, 20, 0.3);
    margin-top: 10px;
}

.btn-reservation-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 105, 20, 0.4);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .theme-2-scroll-item {
        min-width: 280px;
        max-width: 320px;
    }
    
    .theme-2-section-title {
        font-size: 3rem;
    }
    
    .theme-2-hero-title {
        font-size: 4rem;
    }
    
    .theme-2-subtitle {
        font-size: 2rem;
    }
    
    .theme-2-about-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .theme-2-parallax-image {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    
    /* Menu Page Responsive */
    .menu-page-title {
        font-size: 3.5rem;
    }
    
    .menu-category-title {
        font-size: 2rem;
    }
    
    .menu-item-content-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .menu-item-image {
        width: 100%;
        height: 200px;
        align-self: center;
    }
    
    .menu-item-name {
        font-size: 1.1rem;
    }
    
    .menu-item-price {
        font-size: 1rem;
    }
    
    .menu-decorative-image {
        min-height: 400px;
        margin-top: 40px;
    }
    
    .menu-decorative-image-small {
        max-height: 400px;
        margin-top: 30px;
    }
    
    /* Contact Page Responsive */
    .contact-page-title {
        font-size: 3rem;
        margin-bottom: 40px;
    }
    
    .contact-info-box {
        margin-bottom: 20px;
        min-height: 220px;
        padding: 30px 20px;
    }
    
    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .contact-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .contact-box-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .contact-box-text {
        font-size: 1rem;
    }
    
    .menu-category-card {
        height: 250px;
    }
    
    /* Reservation Page Responsive */
    .reservation-page-title {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .reservation-page-subtitle {
        font-size: 1rem;
    }
    
    .reservation-contact-card {
        min-height: 250px;
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .reservation-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .reservation-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .reservation-card-title {
        font-size: 1.3rem;
    }
    
    .reservation-card-text {
        font-size: 1rem;
    }
    
    .reservation-form-card {
        padding: 30px 20px;
    }
    
    .reservation-form-title {
        font-size: 1.6rem;
    }
    
    .reservation-form-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .btn-reservation-submit {
        padding: 12px 40px;
        font-size: 1rem;
        width: 100%;
    }
}

