/* Basic styles */
body {
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, sans-serif;
    background-color: #f1f1f4;
    color: #38433e;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

header {
    padding: 1rem 0;
}

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

.logo {
    width: 120px;
    height: 120px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.menu-link {
    margin-right: 2rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #38433e;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.menu-link:hover {
    color: #d62f2d;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-link {
    margin-left: 1rem;
    color: #38433e;
    transition: color 0.2s;
}

.social-link:hover {
    color: #d62f2d;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 48rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
    line-height: 1.1;
}

.gallery {
    padding: 4rem 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 0.5rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.visit-section {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
}

.visit-title {
    font-size: 3rem;
    color: #d62f2d;
    margin-bottom: 3rem;
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.map {
    height: 100%;
    min-height: 300px;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.info-card {
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.info-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.info-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

footer {
    background-color: #d62f2d;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    width: 80px;
    height: 80px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
    }
    
    .menu-link {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .visit-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
    }
}

.callout-box {
    background-color: #f1faff;
    border: 2px solid #007acc;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
}
.callout-box a {
    color: #007acc;
    text-decoration: none;
}
.callout-box a:hover {
    text-decoration: underline;
}
