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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fafafa;
    color: #333;
    padding-top: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

/* Header */
.header {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    box-shadow: none;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.visible {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #8B4513;
    letter-spacing: -0.5px;
}

.header nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header nav a,
.header nav .nav-main {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

.header nav a:hover,
.header nav .nav-main:hover {
    color: #8B4513;
}

.header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #8B4513;
    transition: width 0.3s;
}

.header nav a:hover::after {
    width: 100%;
}

.nav-item {
    position: relative;
}

.nav-main {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-right: 5px;
    transition: transform 0.3s;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-submenu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    border: 1px solid #f0f0f0;
}

.nav-item:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 0.95rem;
    border: none;
    transition: all 0.2s;
    position: relative;
}

.nav-submenu a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #8B4513;
    transform: scaleY(0);
    transition: transform 0.2s;
}

.nav-submenu a:hover {
    background: #fafafa;
    color: #8B4513;
    padding-right: 25px;
}

.nav-submenu a:hover::before {
    transform: scaleY(1);
}

.nav-submenu a::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: white;
    border: 2px solid #8B4513;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #8B4513;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.lang-current:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.lang-current .flag {
    font-size: 1.2rem;
}

.lang-current .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.lang-switcher.active .lang-current .arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 15px;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-align: right;
}

.lang-option:hover {
    background: #f5f5f5;
    transform: translateX(-5px);
}

.lang-option.active {
    background: #8B4513;
    color: white;
}

.lang-option .flag {
    font-size: 1.3rem;
}

.lang-option .lang-name {
    flex: 1;
    text-align: right;
}

.lang-btn {
    padding: 5px 10px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
    background: #8B4513;
    color: white;
    border-color: #8B4513;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #8B4513;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Text Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-text {
    animation: fadeInScale 1s ease-out;
}

.animate-text-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-overlay {
    color: white;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.hero-overlay img {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #fff;
    color: #8B4513;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #8B4513;
    transform: translateY(-2px);
}

/* Menu Section */
.menu {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #8B4513;
}

.menu-nav {
    position: sticky;
    top: 0;
    background: white;
    padding: 15px 0;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.menu-nav a {
    padding: 10px 20px;
    background: #f5f5f5;
    color: #8B4513;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.menu-nav a:hover,
.menu-nav a.active {
    background: #8B4513;
    color: white;
}

.category {
    margin-bottom: 4rem;
}

.category h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #A0522D;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.menu-item h4 {
    padding: 10px;
    font-size: 1rem;
    color: #333;
}

.menu-item p {
    padding: 0 10px 10px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #8B4513;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 60px 20px;
    text-align: center;
}

/* Gallery Section */
.gallery {
    padding: 60px 20px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B4513;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

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

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

@media (max-width: 768px) {
    .gallery h2 {
        font-size: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    .gallery-item img {
        height: 150px;
    }
}

/* Reviews Section */
.reviews {
    padding: 60px 20px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B4513;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#google-reviews {
    max-width: 100%;
    margin: 0 auto;
}

#google-reviews iframe {
    width: 100%;
    min-height: 400px;
    border: none;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #8B4513;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #555;
}

/* Hours Section */
.hours {
    padding: 60px 20px;
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.hours h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B4513;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    background: #fafafa;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #8B4513;
    font-weight: bold;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #FFE5B4;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo .logo-text {
    display: block;
    color: white;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a,
.footer-contact a,
.footer-social a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
    color: #FFE5B4;
}

.footer-copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

.website-credit {
    text-align: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.85;
}

.website-credit p {
    margin: 5px 0;
}

.website-credit a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.website-credit a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fab-container a,
.fab-container .rating-fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-decoration: none;
}

.rating-fab {
    background: white;
    width: 65px;
    height: 65px;
    padding: 6px;
    position: relative;
}

.rating-fab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    width: 100%;
}

.rating-fab img {
    width: 20px;
    height: 20px;
}

.rating-fab .stars {
    font-size: 0.55rem;
    color: #ffd700;
    line-height: 1;
    letter-spacing: -1px;
}

.rating-fab .rating-text {
    font-size: 0.8rem;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.rating-fab::after {
    content: 'דרגו';
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%);
    background: #4285f4;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.rating-fab:hover::after {
    opacity: 1;
}

.fab-container a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.fab-container a:hover,
.rating-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #8B4513;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
}

.modal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.modal-body {
    padding: 20px;
}

.modal-body h3 {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-body .price {
    color: #A0522D;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.modal-body .description {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header.visible ~ .menu .menu-nav {
        top: 60px;
    }

    .header {
        padding: 10px 20px;
    }

    .logo img {
        height: 40px;
    }

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

    .header nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 25px 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        gap: 0;
        overflow-y: auto;
    }

    .header nav.active {
        transform: translateX(0);
    }

    .header nav a,
    .header nav .nav-main {
        padding: 15px 0;
        font-size: 1.1rem;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .header nav a:last-child {
        border-bottom: none;
    }

    .header nav a::after {
        display: none;
    }

    .nav-item {
        width: 100%;
    }

    .nav-main {
        display: block;
        width: 100%;
        cursor: pointer;
    }

    .nav-item:hover .nav-submenu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }

    .nav-item.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-submenu {
        position: static;
        flex-direction: column;
        padding: 0;
        background: #fafafa;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: none;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: all 0.3s ease;
    }

    .nav-item.active .nav-submenu {
        max-height: 200px;
        padding: 10px 0 10px 20px;
        opacity: 1;
        visibility: visible;
    }

    .nav-submenu a {
        font-size: 0.95rem;
        padding: 10px 0;
        color: #666;
        border: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .hero-overlay img {
        width: 100px;
    }

    .menu h2 {
        font-size: 2rem;
    }

    .menu-nav {
        top: 0;
        padding: 10px;
        gap: 8px;
    }

    .menu-nav a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .category h3 {
        font-size: 1.5rem;
    }

    .menu-item img {
        height: 120px;
    }

    .menu-item h4 {
        font-size: 0.9rem;
    }

    .reviews h2 {
        font-size: 2rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .hours h2 {
        font-size: 2rem;
    }

    .day-hours {
        padding: 12px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
        align-items: center;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .menu-grid {
        gap: 10px;
    }

    .menu-item img {
        height: 100px;
    }

    .menu-item h4 {
        font-size: 0.85rem;
        padding: 8px;
    }

    .menu-item p {
        font-size: 1rem;
        padding: 0 8px 8px;
    }
}

/* Why Us Section */
.why-us {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    max-width: 1200px;
    margin: 0 auto;
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B4513;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us h2 {
        font-size: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* About Section */
.about {
    padding: 60px 20px;
    background: #fff;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #8B4513;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.about-content .btn {
    margin-top: 1rem;
}

/* Contact & Hours Combined Section */
.contact-hours {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.contact-hours-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-section, .hours-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-section h2, .hours-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #8B4513;
    text-align: center;
}

.contact-info p {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #555;
}

@media (max-width: 768px) {
    .contact-hours-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about h2, .contact-section h2, .hours-section h2 {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
}

.btn-tertiary {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: #fff;
    border: 2px solid transparent;
}

.btn-tertiary:hover {
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}
