/* Hero Section Styles */
.hero-section {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(22,36,60,0.9), rgba(22,36,60,0.8)), url('background-image.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
    align-items: center;
    padding: 150px 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.welcome-text {
    color: var(--accent-gold);
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.description {
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 300;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.4s forwards;
}

.contact-button {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.6s forwards;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-smooth);
}

.contact-button:hover {
    background-color: #8f6225;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(169, 122, 52, 0.3);
}

.contact-button:hover::before {
    left: 100%;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s 0.8s forwards;
}

.parallax-wrapper {
    position: relative;
    perspective: 1000px;
}

.parallax-image {
    max-width: 80%;
    height: auto;
    opacity: 0.8;
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}