* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #c6d79b;
    min-height: 100vh;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 80px;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.name {
    color: #1b9918;
    font-size: 60px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 40px 0;
    text-align: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #1b9918;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(198, 215, 155, 0.95);
    list-style: none;
    min-width: 180px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #1b9918;
    font-size: 16px;
}

.dropdown-menu a:hover {
    background-color: rgba(168, 201, 122, 0.5);
    opacity: 1;
}

.swiper {
    width: 100%;
    padding: 40px 0;
    margin-top: 20px;
}

.swiper-slide {
    height: 500px;
    width: auto;
    display: block;
}

.swiper-button-prev,
.swiper-button-next {
    color: #1b9918;
    width: 50px;
    height: 50px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 30px;
    font-weight: bold;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}

.swiper-slide img {
    height: 100%;       /* Forces the image to match the slide height */
    width: auto;        /* Allows natural width */
    display: block;     /* Removes weird bottom gaps */
    object-fit: cover;  /* Prevents squishing */
}

.about-section {
    background-color: #ffebc7;
    padding: 60px 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section p {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.8;
    color: #1b9918;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
}

.social-links {
    margin-top: 30px;
    text-align: center;
}

.social-links p {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1b9918;
    margin-bottom: 10px;
}

.social-links a {
    color: #1b9918;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

footer {
    background-color: #c6d79b;
    padding: 40px 80px;
    width: 100%;
    text-align: center;
}

footer p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #1b9918;
    margin: 0;
}


