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

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: none;
    background: linear-gradient(45deg, #fff, #d4af37, #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    font-family: 'Baskervville', serif;
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    display: inline-block;
}

.hero p::before,
.hero p::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 50px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    top: 50%;
}

.hero p::before {
    right: 100%;
    margin-right: 15px;
}

.hero p::after {
    left: 100%;
    margin-left: 15px;
}

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

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slideshow-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.dot.active {
    background: #d4af37;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero > * {
    position: relative;
    z-index: 2;
}

.cta-button {
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #b38728, #d4af37, #b38728);
    background-size: 200% auto;
    border: none;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    background-position: right center;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1, .hero p, .cta-button {
    animation: slideIn 1s ease-out forwards;
}

.hero p {
    animation-delay: 0.3s;
}

.cta-button {
    animation-delay: 0.6s;
} 