/* General Styles */
:root {
    --primary-red: #cc0000;
    --dark-gray: #2d2d2d;
    --medium-gray: #4a4a4a;
    --light-gray: #f4f4f4;
    --text-color: #333;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.logo span {
    color: var(--dark-gray);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
}

.contact-info a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-red);
}

.phone-link, .opening-hours-link {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-icon, .clock-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--primary-red);
    transition: fill 0.3s ease;
}

.phone-link:hover .phone-icon, .opening-hours-link:hover .clock-icon {
    fill: var(--primary-red);
}

.opening-hours {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
    z-index: -1;
}

.hero-content {
    z-index: 1;
}

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

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

.cta-button {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #a60000;
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 30px 0;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.about-text p {
     margin-bottom: 16px;
}

.about-text .checkmark {
    color: var(--primary-red);
    margin-right: 10px;
}

.image-overlay-container {
    flex: 1;
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-overlay-container img {
    height: auto;
    max-height: 450px;
    max-width: 100%;
    object-fit: cover;
    border: 6px solid var(--white);
    box-shadow: 0 4px 4px rgba(0,0,0,0.1);
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.image-overlay-container img:hover {
    transform: scale(1.015);
    z-index: 10;
}

/* Listings Section */
.listings-section {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.listings-section h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.listings-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
.main-footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 50px 0;
}

.main-footer .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 10px;
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-table {
    width: 100%;
    border-collapse: collapse;
}

.footer-table td {
    padding: 8px 0;
}

.footer-table td:first-child {
    font-weight: 500;
}

.footer-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-section .container {
        flex-direction: column;
    }
    .image-overlay-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .contact-info {
        display: none;
    }
    .hero-content {
        padding: 0 1rem;
    }
    .main-footer .container {
        flex-direction: column;
    }
     .about-section .container {
        gap: 0;
    }
}