/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
}

.hero-content {
    z-index: 1;
    padding: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: 8px;
    line-height: 1.2;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #999999;
    margin-bottom: 3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.social-links a {
    color: #FFFFFF;
    font-size: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #AAAAAA;
    transform: translateY(-5px);
}
