/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    color: #fbfbfb; /* Golden color */
    /* text-shadow: 0 0 10px #e0b291, 0 0 20px #e0b291, 0 0 30px #e0b291, 0 0 40px #e0b291; */
    background: rgba(0, 0, 0, 0.3); /* More transparent background */
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    top: 50%; /* Adjusted to move content lower */
    transform: translateY(10%); /* Slight upward adjustment */
}

.hero-content h1 {
    font-size: 3rem; /* Increased heading size */
    font-weight: bold;
    margin-bottom: 1rem;
}
.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons a {
    padding: 10px 20px;
    margin: 5px;
    background-color: #f4a261;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-buttons a:hover {
    background-color: #e76f51;
}

/* Tablet View */
@media screen and (max-width: 768px) {
    .hero-content {
        display: none; /* Hide hero content on mobile */
    }
}

/* Mobile View */
@media screen and (max-width: 480px) {
    .hero-content {
        display: none; /* Hide hero content on small mobile */
    }
}

/* Very Small Screen */
@media screen and (max-width: 320px) {
    .hero-content {
        display: none; /* Hide hero content on very small screens */
    }

    .top-nav a {
        font-size: 0.9rem;
    }
}
