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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    overflow-x: hidden;
    background: #1a3a52;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 1.5rem 0;
    box-shadow: none;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: #d4b896;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #f5d9a7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f5d9a7;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.search-container {
    position: relative;
}

.search-input {
    padding: 0.6rem 2.5rem 0.6rem 1.2rem;
    border-radius: 25px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    width: 250px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    width: 280px;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #666;
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Landscape */
.landscape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a3a52 0%, #2d5670 50%, #4a7085 100%);
    background-image: url('images/77.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    will-change: transform;
    transform: translateZ(0);
    opacity: 1;
}

.landscape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Sky, mountains, trees, and water are now part of the background image */
.sky,
.mountains,
.trees-container,
.water {
    display: none;
}

/* Content */
.content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #1a1a1a;
    max-width: 900px;
    padding: 2rem;
    margin-top: -10vh;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.main-title {
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: #8b4545;
    font-style: italic;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(26, 26, 26, 0.8);
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.cta-button {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: lowercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: white;
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-title {
        font-size: 4rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .search-input {
        width: 200px;
    }
    
    .search-input:focus {
        width: 220px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}


