/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background-color: #003da5;
    color: white;
    text-align: center;
    padding: 40px 20px 60px;
    position: relative;
}

.explore-btn {
    background-color: white;
    color: #c8102e;
    border: none;
    padding: 15px 35px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.explore-btn:hover {
    background-color: #f0f0f0;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.location-info {
    font-size: 12px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.location-info p {
    margin: 5px 0;
}

.address-link,
.phone-link {
    color: white;
    text-decoration: underline;
}

.address-link:hover,
.phone-link:hover {
    opacity: 0.8;
}

.tagline {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Featured Section */
.featured {
    background-color: #c8102e;
    color: white;
    padding: 60px 20px;
}

.featured-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.featured-text {
    flex: 1;
    min-width: 300px;
}

.icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.featured-text h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 1px;
}

.featured-image {
    flex: 0 0 350px;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Hours Section */
.hours {
    background-color: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
}

.hours h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
    letter-spacing: 1px;
}

.hours-list {
    max-width: 500px;
    margin: 0 auto;
}

.hours-list p {
    font-size: 20px;
    margin: 15px 0;
    color: #333;
}

.hours-list strong {
    font-weight: bold;
}

/* Contact Section */
.contact {
    background-color: #c8102e;
    color: white;
    padding: 80px 20px;
    text-align: left;
}

.contact h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.contact-info {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info p {
    font-size: 18px;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 36px;
    }
    
    .featured-content {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-text h2 {
        font-size: 28px;
    }
    
    .featured-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .contact h2 {
        font-size: 36px;
    }
}