
body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}


/* Update this in your CSS file */
.hero {
    background-color: #1a1a1a;
    color: #fff;
    padding: 8rem 0;
    text-align: center;
    /* Make the gradient overlay much lighter */
    background-image: linear-gradient(rgba(47, 60, 63, 0.2), rgba(77, 123, 145, 0.2)), url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Enhance text visibility against the brighter background */
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Stronger shadow for better visibility */
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Stronger shadow for better visibility */
}

/* You might also want to add a subtle text background for better readability */
.hero-content {
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent dark background */
    padding: 2rem;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.btn-primary {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-3px);
}

.first-meal{
    background-color: var(--primary);
}

.services {
    padding: 5rem 0;
}

/* Service Cards - Add color-coded borders to match the "Our Premium Services" image */
.service-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: #fff;
    position: relative; /* For the top border */
    overflow: hidden; /* Keep the colored top border within the card */
}

/* Add color-coded top borders for different services */
.service-card.tavern {
    border-top: 4px solid #E65100; /* Orange for Tavern */
}

.service-card.trendy {
    border-top: 4px solid #1A237E; /* Blue for Trendy */
}

.service-card.realtors {
    border-top: 4px solid #2E7D32; /* Green for Realtors */
}

/* Enhance service card images */
.service-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 4px;
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Color-coded buttons to match service types */
.btn-tavern {
    background-color: #E65100;
    color: white;
}

.btn-trendy {
    background-color: #1A237E;
    color: white;
}

.btn-realtors {
    background-color: #2E7D32;
    color: white;
}

.btn-tavern:hover, .btn-trendy:hover, .btn-realtors:hover {
    background-color: #333;
    color: white;
}

.btn-outline-dark {
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    background-color: transparent;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #1a1a1a;
    color: #fff;
    transform: translateY(-3px);
}

.footer {
    background-color: #1a1a1a; /* Slightly darker than navbar */
    color: rgba(255, 255, 255, 0.9); /* Match navbar text */
    padding: 3rem 0 1.5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer-links li {
    transition: transform 0.3s ease;
    margin-bottom: 0.75rem;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer a:hover {
    color: #fff;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-logo span {
    color: #E65100; /* Primary color to match your brand */
}

.footer-section {
    padding-right: 1rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    transform: scale(1);
}

.social-icon:hover {
    background-color: #fff;
    color: #1a1a1a;
    transform: scale(1.15);
}

/* Additional styles */
.footer h4, .footer h5 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.footer address p {
    margin-bottom: 0.5rem;
}

/* Improve section headings */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #E65100; /* Primary color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .social-icons {
        justify-content: center;
        display: flex;
    }
}

/* Animation effects */
.hero h1, .hero p, .hero .btn {
    animation: fadeInUp 1s ease-out;
}

.service-card {
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Additional sections styling */
.testimonials {
    background-color: #f9f9f9;
    padding: 5rem 0;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Enhance testimonial cards to match overall design */
.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-quote {
    font-size: 2rem;
    color: #E65100;
    position: absolute;
    top: 1rem;
    left: 1rem;
    opacity: 0.2;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.testimonial-card .name {
    font-weight: 700;
    color: #333;
}

.testimonial-card .position {
    font-size: 0.9rem;
    color: #999;
}

/* Call to action section */
.cta {
    background-color: #515050; /* Match navbar background */
    color: rgba(255, 255, 255, 0.9); /* Match navbar text */
    padding: 5rem 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta .btn {
    margin: 0 0.5rem;
}

/* About section */
.about {
    padding: 5rem 0;
}

.about h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
}




.about-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1/1;
}

.blue-square {
    position: absolute;
    width: 80%;
    height: 80%;
    background-color: var(--secondary); /* Deep blue color */
    right: 0;
    bottom: 0;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logo-wrapper {
    position: absolute;
    width: 80%;
    height: 80%;
    left: 0;
    top: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

