/* Hero Section */
.hero {
    background-color: #F8EDE3;
    position: relative;
    width: 100%;
    height: 90vh;
    /* Full viewport height */
    overflow: hidden;
    /* Prevents image overflow */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 20px;
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.scroll-down i {
    font-size: 50px;
    color: #8D493A;
}

html {
    /* Smooth scrolling for anchor links */
    scroll-behavior: smooth;
}

/* State Section */
.statesection-title {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 50px;
    font-weight: bold;
    background-color: #D0B8A8;
}

.statesection-subtitle {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: bold;
    background-color: #D0B8A8;
}

.state-card {
    background-color: #DFD3C3;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.state-card:hover {
    transform: translateY(-10px);
}

.state-image {
    width: 100%;
    height: 400px;
}

.state-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 50px;
    font-weight: bold;
}

/* State Swiper */
.swiper-container {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background-color: #D0B8A8;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    --swiper-pagination-bullet-width: 10px;
    --swiper-pagination-bullet-height: 10px;
    --swiper-pagination-color: #8D493A;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-size: 50px;
    --swiper-navigation-color: #8D493A;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

/* Team Section */
.team {
    padding: 20px;
    background-color: #F8EDE3;
}

.teamsection-title {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 50px;
    font-weight: bold;
    background-color: #F8EDE3;
}

.teamsection-subtitle {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: bold;
    background-color: #F8EDE3;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 20px;
    background-color: #F8EDE3;
    gap: 20px;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #DFD3C3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    font-size: 25px;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-links a {
    color: #000000;
    font-size: 40px;
}

.team-member:hover .overlay {
    opacity: 1;
}