/* ========== Reset & General Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    animation: slideDown 0.8s ease-out;
}

.hero-text p {
    font-size: 2.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

/* ========== Footer ========== */
.footer {
    background: #000;
    color: #fff;
    padding: 2rem;
    text-align: center;
    border-top: 2px solid #d4af37;
}

.footer p {
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
}

.footer-description {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.footer-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #f5dfa1;
    text-decoration: underline;
}

/* ========== Animations ========== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.8rem;
    }

    .footer p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1.3rem;
    }

    .footer p {
        font-size: 0.9rem;
    }
}
