/* Core styles */
.nav-container {
    padding: 1rem 2rem;
    background: white;
    border-bottom: 1px solid #eee;
}

.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    width: 100%;
    padding: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #666;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 4px;
    width: 90%;
    max-width: 800px;
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
}