/* Jefferson Pub & Grill - Styles */

:root {
    --primary-color: #8B1A1A;
    --secondary-color: #D4AF37;
    --dark-red: #6B0000;
    --light-bg: #f8f9fa;
    --text-dark: #333;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Styles */
.header-top {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
}

.contact-info {
    color: white;
}

.phone-number {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
}

.phone-number:hover {
    color: var(--secondary-color);
}

.address {
    font-size: 0.95rem;
    margin-top: 5px;
}

.social-icons a {
    margin-left: 10px;
    display: inline-block;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Navigation Styles */
.main-nav {
    background: linear-gradient(to bottom, #1a4d1a 0%, #0d260d 100%);
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.main-nav .navbar-nav {
    width: 100%;
    justify-content: center;
}

.main-nav .nav-link {
    color: white !important;
    padding: 15px 25px !important;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--secondary-color) !important;
}

.main-nav .dropdown-menu {
    background-color: #0d260d;
    border: none;
}

.main-nav .dropdown-item {
    color: white;
    padding: 10px 20px;
}

.main-nav .dropdown-item:hover {
    background-color: var(--secondary-color);
    color: var(--dark-red);
}

/* Logo Section */
.logo-section {
    background-color: var(--primary-color);
}

.main-logo {
    max-width: 500px;
    height: auto;
}

/* Specials Hero Section */
.specials-hero {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-color) 100%);
    color: white;
}

.specials-card h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.phone-cta {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
    transition: color 0.3s;
}

.phone-cta:hover {
    color: var(--secondary-color);
}

/* Weekly Specials */
.weekly-specials {
    background-color: white;
}

.weekly-specials h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.special-item,
.daily-special {
    background: linear-gradient(to right, var(--light-bg), white);
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.daily-special h5 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

/* Special Diets Section */
.special-diets h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.diet-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.diet-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.diet-card a {
    color: var(--primary-color);
    font-weight: bold;
}

/* Menu Categories */
.menu-categories {
    background: white;
}

.menu-categories h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.menu-card {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.menu-image {
    margin-bottom: 20px;
}

.menu-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
}

.menu-card h3 a:hover {
    color: var(--secondary-color);
}

.decorative-line {
    max-width: 150px;
    margin-top: 15px;
}

/* Gallery Preview */
.gallery-preview h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.gallery-thumb {
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background-color: var(--dark-red);
    color: white;
}

.footer-logo {
    max-width: 300px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav .nav-link {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-logo {
        max-width: 300px;
    }
    
    .phone-cta {
        font-size: 1.5rem;
    }
    
    .menu-categories h2,
    .weekly-specials h2,
    .special-diets h2,
    .gallery-preview h2 {
        font-size: 1.8rem;
    }
}

/* Restaurant Menu Specific Styles */

.page-title-section {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-color) 100%);
}

.page-title {
    color: var(--secondary-color);
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
}

/* Menu Section Styles */
.menu-section {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary-color);
}

.menu-category-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.menu-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

.health-note,
.menu-note {
    color: #666;
    font-style: italic;
    margin: 10px 0;
    font-size: 0.95rem;
}

/* Menu Item Styles */
.menu-item {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.2);
    border-left-color: var(--secondary-color);
}

.menu-item.featured {
    border-left: 4px solid var(--secondary-color);
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), white);
}

.menu-item.featured:hover {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), white);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.item-name {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.item-price {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
    white-space: nowrap;
    margin-left: 15px;
}

.price-alt {
    color: #666;
    font-size: 0.9rem;
    font-weight: normal;
}

.item-description {
    color: #555;
    line-height: 1.6;
    margin: 10px 0 0 0;
}

.item-addon {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-style: italic;
    margin: 5px 0 0 0;
    padding-left: 20px;
    position: relative;
}

.item-addon::before {
    content: '+ ';
    position: absolute;
    left: 5px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Burger Items Special Styling */
.burger-item {
    border-left: 4px solid #CD853F;
}

.burger-item:hover {
    border-left-color: var(--secondary-color);
    background: linear-gradient(to right, rgba(205, 133, 63, 0.05), white);
}

/* Specialty Items */
.specialty-item {
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.03), rgba(212, 175, 55, 0.03));
    border: 2px solid var(--secondary-color);
}

.specialty-item:hover {
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.08), rgba(212, 175, 55, 0.08));
    border-color: var(--primary-color);
}

.specialty-logo {
    max-width: 300px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Dessert Items */
.dessert-item {
    background: linear-gradient(to bottom right, #FFF8DC, white);
    border-left: 4px solid #FFD700;
}

.dessert-item:hover {
    border-left-color: var(--secondary-color);
    background: linear-gradient(to bottom right, #FFEBCD, white);
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-red) 100%);
}

.btn-download {
    background: var(--secondary-color);
    color: var(--dark-red);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-download:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Responsive Menu Design */
@media (max-width: 992px) {
    .menu-category-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .item-header {
        flex-direction: column;
    }
    
    .item-price {
        margin-left: 0;
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .menu-item {
        padding: 15px;
    }
    
    .item-name {
        font-size: 1.1rem;
    }
    
    .item-price {
        font-size: 1rem;
    }
    
    .menu-category-title {
        font-size: 1.6rem;
    }
}

/* Smooth Scroll Animation */
.menu-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(n+6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Price Highlight Effect */
.item-price {
    position: relative;
    overflow: hidden;
}

.item-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.menu-item:hover .item-price::before {
    left: 100%;
}

/* Section Divider Effect */
.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

/* About the Building Page Styles */

.registry-badge-section {
    background: white;
}

.registry-badge {
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* Introduction Section */
.about-intro {
    background: white;
}

.intro-card {
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.03), rgba(212, 175, 55, 0.03));
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    text-align: justify;
}

/* Timeline Styles */
.timeline-section {
    position: relative;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: slideInTimeline 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInTimeline {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-red));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.4);
    border: 5px solid white;
    z-index: 2;
}

.timeline-content {
    width: calc(50% - 80px);
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
    border-right: 4px solid var(--secondary-color);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: left;
    border-left: 4px solid var(--secondary-color);
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(139, 26, 26, 0.2);
    border-color: var(--secondary-color);
}

.timeline-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Registry Statement Section */
.registry-statement {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-color) 100%);
    color: white;
}

.statement-card {
    padding: 40px;
}

.statement-icon {
    color: var(--secondary-color);
}

.statement-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.statement-title {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.statement-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

/* Visit Us CTA Section */
.visit-cta {
    background: linear-gradient(to bottom, white, var(--light-bg));
}

.cta-content {
    padding: 40px 20px;
}

.cta-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-subtitle {
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta-primary {
    background: var(--secondary-color);
    color: var(--dark-red);
    border: 3px solid var(--secondary-color);
}

.btn-cta-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
}

.btn-cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.3);
}

/* Responsive Timeline */
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }

    .timeline-marker {
        left: 30px;
        width: 80px;
        height: 80px;
        font-size: 0.9rem;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 120px);
        margin-left: 120px;
        text-align: left;
        border-left: 4px solid var(--secondary-color);
        border-right: none;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        display: block;
        margin: 10px auto;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .lead-text {
        font-size: 1.1rem;
        text-align: left;
    }

    .intro-card {
        padding: 25px;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-title {
        font-size: 1.2rem;
    }

    .statement-card {
        padding: 30px 20px;
    }

    .statement-title {
        font-size: 1.5rem;
    }

    .statement-text {
        font-size: 1rem;
    }
}

/* Decorative Elements */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

@media (max-width: 992px) {
    .timeline-content::before,
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
    }
}







/* Testimonials Page Styles */

.testimonials-section {
    background: white;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-left: 5px solid var(--secondary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(139, 26, 26, 0.2);
    border-left-color: var(--primary-color);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 15px;
    border-top: 2px solid var(--light-bg);
}

.author-name {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-date,
.author-location {
    color: #888;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 10px;
    letter-spacing: 3px;
}

/* Testimonial Card Animation */
.testimonial-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
.testimonial-card:nth-child(7) { animation-delay: 0.7s; }
.testimonial-card:nth-child(8) { animation-delay: 0.8s; }

/* Trust Statement Section */
.trust-statement {
    position: relative;
}

.trust-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 3px solid var(--secondary-color);
}

.trust-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.trust-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.btn-trust {
    background: var(--secondary-color);
    color: var(--dark-red);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid var(--secondary-color);
}

.btn-trust:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.3);
}

/* Write Review Section */
.write-review-section {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-color) 100%);
    color: white;
}

.review-cta-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.review-cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-review-primary,
.btn-review-secondary {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-review-primary {
    background: var(--secondary-color);
    color: var(--dark-red);
    border: 3px solid var(--secondary-color);
}

.btn-review-primary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-review-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-review-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Testimonials */
@media (max-width: 992px) {
    .testimonial-card {
        margin-bottom: 20px;
    }

    .trust-title,
    .review-cta-title {
        font-size: 2rem;
    }

    .trust-text,
    .review-cta-subtitle {
        font-size: 1.1rem;
    }

    .trust-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .trust-title,
    .review-cta-title {
        font-size: 1.6rem;
    }

    .trust-card {
        padding: 30px 20px;
    }

    .btn-review-primary,
    .btn-review-secondary {
        display: block;
        margin: 10px auto;
        max-width: 300px;
    }

    .btn-review-primary.me-3 {
        margin-right: auto !important;
    }
}

/* Quote Icon Animation */
.testimonial-icon svg {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Rating Stars Shine Effect */
.testimonial-rating {
    position: relative;
    display: inline-block;
}

.testimonial-card:hover .testimonial-rating {
    animation: shine 1s ease;
}

@keyframes shine {
    0%, 100% {
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

/* Alternating Card Styles */
.testimonial-card:nth-child(odd) {
    background: linear-gradient(to bottom right, white, rgba(248, 249, 250, 0.5));
}

.testimonial-card:nth-child(even) {
    background: linear-gradient(to bottom left, white, rgba(248, 249, 250, 0.5));
}


/* Banquet Menu Page Styles */

/* Catering Info Section */
.catering-info-section {
    background: white;
}

.catering-info-card {
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.05), rgba(212, 175, 55, 0.05));
    padding: 40px;
    border-radius: 15px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.info-icon {
    color: var(--secondary-color);
}

.info-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contact-cta {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.contact-name a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-name a:hover {
    color: var(--primary-color);
}

/* Banquet Menu Section */
.banquet-menu-section {
    position: relative;
}

.banquet-category-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.banquet-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--secondary-color);
}

.banquet-note {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin: 10px 0;
}

.banquet-note-highlight {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: bold;
    margin: 15px 0;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

/* Banquet Items */
.banquet-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.banquet-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.15);
    border-left-color: var(--secondary-color);
}

.banquet-item.featured {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), white);
    border-left: 4px solid var(--secondary-color);
}

.banquet-item-name {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.banquet-item-price {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
    white-space: nowrap;
    margin-left: 20px;
}

/* Pricing Notes */
.pricing-notes {
    background: rgba(139, 26, 26, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    text-align: center;
}

.pricing-notes p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 8px 0;
}

/* Side Categories */
.side-category {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.side-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.15);
}

.side-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
}

.side-subtitle {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 15px;
}

.side-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    border-bottom: 1px solid var(--light-bg);
}

.side-list li:last-child {
    border-bottom: none;
}

.side-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Additional Note */
.additional-note {
    text-align: center;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 2px dashed var(--secondary-color);
}

.additional-note p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Vegetarian Options */
.vegetarian-options {
    padding: 30px;
    background: linear-gradient(to bottom, rgba(34, 139, 34, 0.05), white);
    border-radius: 10px;
    border: 2px solid rgba(34, 139, 34, 0.3);
}

/* Lunch Buffet Cards */
.lunch-buffet-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 5px solid var(--secondary-color);
}

.lunch-buffet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(139, 26, 26, 0.2);
    border-left-color: var(--primary-color);
}

.buffet-card-title {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.buffet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.buffet-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #555;
    border-bottom: 1px dashed var(--light-bg);
    line-height: 1.6;
}

.buffet-list li:last-child {
    border-bottom: none;
}

.buffet-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Side Selection Grid */
.side-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.side-selection-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.side-selection-item:hover {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Appetizer Category Cards */
.appetizer-category-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
    border-top: 5px solid var(--primary-color);
}

.appetizer-card-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.appetizer-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

.appetizer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.appetizer-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #555;
    border-bottom: 1px solid var(--light-bg);
    line-height: 1.6;
    transition: all 0.2s ease;
}

.appetizer-list li:last-child {
    border-bottom: none;
}

.appetizer-list li::before {
    content: '●';
    position: absolute;
    left: 10px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.appetizer-list li:hover {
    padding-left: 45px;
    color: var(--primary-color);
}

/* Custom Quote Section */
.custom-quote-section {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-color) 100%);
    color: white;
}

.custom-quote-card {
    padding: 40px;
}

.quote-icon {
    color: var(--secondary-color);
}

.quote-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.custom-quote-title {
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-style: italic;
}

.custom-quote-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-custom-quote {
    background: var(--secondary-color);
    color: var(--dark-red);
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-custom-quote:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* Animation for Banquet Items */
.banquet-item,
.lunch-buffet-card,
.side-category,
.appetizer-category-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.banquet-item:nth-child(1) { animation-delay: 0.1s; }
.banquet-item:nth-child(2) { animation-delay: 0.15s; }
.banquet-item:nth-child(3) { animation-delay: 0.2s; }
.banquet-item:nth-child(4) { animation-delay: 0.25s; }
.banquet-item:nth-child(5) { animation-delay: 0.3s; }
.banquet-item:nth-child(6) { animation-delay: 0.35s; }

.lunch-buffet-card:nth-child(1) { animation-delay: 0.1s; }
.lunch-buffet-card:nth-child(2) { animation-delay: 0.2s; }
.lunch-buffet-card:nth-child(3) { animation-delay: 0.3s; }
.lunch-buffet-card:nth-child(4) { animation-delay: 0.4s; }
.lunch-buffet-card:nth-child(5) { animation-delay: 0.5s; }

.side-category:nth-child(1) { animation-delay: 0.2s; }
.side-category:nth-child(2) { animation-delay: 0.4s; }
.side-category:nth-child(3) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 992px) {
    .banquet-category-title {
        font-size: 2rem;
    }

    .custom-quote-title {
        font-size: 1.8rem;
    }

    .side-selection-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .banquet-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .banquet-item-price {
        margin-left: 0;
        margin-top: 8px;
    }

    .catering-info-card {
        padding: 25px;
    }

    .lunch-buffet-card,
    .side-category,
    .appetizer-category-card {
        margin-bottom: 20px;
    }

    .banquet-category-title {
        font-size: 1.6rem;
    }

    .custom-quote-title {
        font-size: 1.5rem;
    }

    .btn-custom-quote {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .side-selection-grid {
        grid-template-columns: 1fr;
    }
}

/* Hover Effects for Lists */
.side-list li:hover,
.buffet-list li:hover,
.appetizer-list li:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* Special Styling for Featured Items */
.banquet-item.featured .banquet-item-name {
    color: var(--primary-color);
    font-weight: bold;
}

.banquet-item.featured .banquet-item-price {
    font-size: 1.3rem;
}


/* Contact Page Styles */

/* Contact Details Section */
.contact-details-section {
    background: white;
}

.contact-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border-top: 5px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(139, 26, 26, 0.2);
    border-top-color: var(--primary-color);
}

.contact-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.contact-card-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-card-info {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-card-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card-info a:hover {
    color: var(--primary-color);
}

.contact-card-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Hours List */
.hours-list {
    text-align: left;
    margin-top: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-bg);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: bold;
    color: var(--primary-color);
}

.hours-time {
    color: var(--text-dark);
    font-weight: 600;
}

/* Map Section */
.map-section {
    position: relative;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 5px solid white;
}

.map-container iframe {
    display: block;
}

.btn-directions {
    background: var(--secondary-color);
    color: var(--dark-red);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid var(--secondary-color);
}

.btn-directions:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.3);
}

/* Catering Contact Section */
.catering-contact-section {
    background: white;
}

.catering-contact-card {
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.05), rgba(212, 175, 55, 0.05));
    padding: 50px 40px;
    border-radius: 15px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.catering-icon {
    color: var(--secondary-color);
}

.catering-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    animation: rotate 20s linear infinite;
}

.catering-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.catering-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.catering-contact-info {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.catering-contact-name {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.catering-phone {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.catering-phone a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.catering-phone a:hover {
    color: var(--primary-color);
}

.btn-catering-primary,
.btn-catering-secondary {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-catering-primary {
    background: var(--secondary-color);
    color: var(--dark-red);
    border: 3px solid var(--secondary-color);
}

.btn-catering-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.3);
}

.btn-catering-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
}

.btn-catering-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.3);
}

/* Social Media Section */
.social-media-section {
    background: var(--light-bg);
}

.social-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.social-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-social {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: white;
    border: 3px solid transparent;
}

.btn-social:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-facebook {
    background: #3b5998;
    border-color: #3b5998;
}

.btn-facebook:hover {
    background: #2d4373;
    border-color: #2d4373;
    color: white;
}

.btn-twitter {
    background: #1da1f2;
    border-color: #1da1f2;
}

.btn-twitter:hover {
    background: #0c85d0;
    border-color: #0c85d0;
    color: white;
}

.btn-google {
    background: #dd4b39;
    border-color: #dd4b39;
}

.btn-google:hover {
    background: #c23321;
    border-color: #c23321;
    color: white;
}

/* Visit Us CTA Section */
.visit-us-cta {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-color) 100%);
    color: white;
}

.visit-title {
    color: var(--secondary-color);
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.visit-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-visit-primary,
.btn-visit-secondary {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-visit-primary {
    background: var(--secondary-color);
    color: var(--dark-red);
    border: 3px solid var(--secondary-color);
}

.btn-visit-primary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-visit-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-visit-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Animation for Contact Cards */
.contact-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.contact-card:nth-child(1) { animation-delay: 0.2s; }
.contact-card:nth-child(2) { animation-delay: 0.4s; }
.contact-card:nth-child(3) { animation-delay: 0.6s; }

/* Icon Hover Animation */
.contact-card:hover .contact-icon svg {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Map Container Animation */
.map-container {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-card {
        margin-bottom: 20px;
    }

    .section-title,
    .social-title,
    .catering-title,
    .visit-title {
        font-size: 2rem;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-social {
        width: 250px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 25px;
    }

    .contact-card-title {
        font-size: 1.5rem;
    }

    .contact-card-info {
        font-size: 1.1rem;
    }

    .section-title,
    .social-title,
    .catering-title,
    .visit-title {
        font-size: 1.6rem;
    }

    .catering-contact-card {
        padding: 30px 20px;
    }

    .catering-phone {
        font-size: 1.4rem;
    }

    .btn-catering-primary,
    .btn-catering-secondary,
    .btn-visit-primary,
    .btn-visit-secondary {
        display: block;
        margin: 10px auto;
        max-width: 300px;
    }

    .btn-catering-primary.me-3,
    .btn-visit-primary.me-3 {
        margin-right: auto !important;
    }

    .hours-item {
        flex-direction: column;
        gap: 5px;
    }

    .map-container iframe {
        height: 350px;
    }
}

/* Special Effects */
.catering-contact-card {
    position: relative;
    overflow: hidden;
}

.catering-contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Hover effect for map */
.map-container:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Social icon animation */
.btn-social svg {
    transition: transform 0.3s ease;
}

.btn-social:hover svg {
    transform: rotate(360deg);
}



