/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

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

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.nav-contact {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-contact:hover {
    opacity: 0.7;
}

/* Hero Section - Full Screen */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    background-image: url('hero-background.svg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    padding: 8rem 2rem 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.95;
}

.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 1;
    font-style: italic;
}

.hero-location {
    margin-bottom: 1.5rem;
}

.hero-location p {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.hero-footer {
    margin-bottom: 1rem;
}

.hero-footer p {
    font-size: 0.85rem;
    color: #ffffff;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 6rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .hero-bottom {
        padding: 2rem 1.5rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 5rem 1rem 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description p {
        font-size: 0.95rem;
    }
    
    .hero-bottom {
        padding: 1.5rem 1rem;
    }
    
    .hero-footer p {
        font-size: 0.75rem;
    }
}

/* Selection Styles */
::selection {
    background-color: #3498db;
    color: white;
}

