:root {
    --gold: #C5A348;
    --dark: #333;
    --light: #fff;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background: var(--light);
    color: var(--dark);
    scroll-behavior: smooth;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 50px;
}

.navbar img {
    height: 70px;
}

.navbar nav {
    display: flex;
    flex-wrap: nowrap;
}

.navbar nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: var(--gold);
}

.language-select {
    padding: 8px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    outline: none;
}

section {
    padding: 100px 15%;
    text-align: center;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--gold);
}

section p {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

/* Home Section */
.home {
    background: url('images/home_bg.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    padding: 50px 15%;
}

/* Overlay for readability */
.home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* dark semi-transparent overlay */
    z-index: 1;
}

/* Heading and paragraph above overlay */
.home h1,
.home p,
.home a {
    position: relative;
    z-index: 2;
    margin: 10px 0;
}

/* Heading */
.home h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

/* Paragraph */
.home p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* Button */
.home .btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.home .btn:hover {
    background-color: #fff;
    color: var(--gold);
}


.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn:hover {
    background: var(--gold);
    color: var(--light);
}


/* Gallery Section */
#gallery {
    text-align: center;
    padding: 50px 20px;
}

#gallery h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
}

.gallery-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gold) !important;
    /* arrow color */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    /* semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s, color 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gold) !important;
    color: var(--light) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-navigation-icon {
    display: none;
}

.swiper-pagination-bullet-active {
    background-color: var(--gold) !important;
}

.swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet:hover {
    background-color: var(--gold) !important;
}

/* Contact Section */
.contact {
    padding: 2em;
    max-width: 1000px;
    margin: auto;
    color: var(--dark);
}

.contact h2 {
    text-align: center;
    font-size: 35px;
    color: var(--gold);
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 10px auto 0;
    border-radius: 2px;
}

.contact h3 {
    font-size: 22px;
    margin-top: 30px;
    color: var(--gold);
    font-weight: 600;
}

.contact p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact ul.icon-list {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.contact ul.icon-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact ul.icon-list li i {
    margin-right: 10px;
    color: var(--gold);
}

.contact ul.icon-list li a {
    color: var(--gold) !important;
}

/* Highlight box */
.contact .highlight-box {
    background-color: rgba(197, 163, 72, 0.1);
    /* light gold background */
    border-left: 4px solid var(--gold);
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 1rem;
}

/* Contact container: form + map */
.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 50px;
}

.contact-container form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-container input,
.contact-container textarea {
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: all 0.2s ease;
}

.contact-container input:focus,
.contact-container textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(197, 163, 72, 0.2);
}

.contact-container label i {
    margin-right: 8px;
    color: var(--gold);
}

.contact-container button {
    padding: 10px 20px;
    background-color: var(--gold);
    color: var(--light);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.3s;
}

.contact-container button:hover {
    background-color: #a48832;
    /* darker gold for hover */
}

/* Map container */
.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 10px;
    border-radius: 50%;
}

.tagline {
    font-style: italic;
    font-size: 14px;
    color: #c5a348;
    /* gold color */
}

.footer-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: #c5a348;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-list li i {
    margin-right: 8px;
    color: #c5a348;
}

.footer-list li a {
    color: #fff;
    text-decoration: none;
}

.footer-list li a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: #c5a348;
    margin-right: 10px;
    font-size: 1.2em;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

hr {
    border: 0;
    border-top: 1px solid #555;
    margin: 20px 0;
}

footer p.copyright {
    text-align: center;
    font-size: 14px;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-container form,
    .map-container {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 0px;
        justify-content: space-around;
    }

    .navbar img {
        height: 100px;
    }

    .navbar nav {
        margin: 20px 0px;
    }

    .navbar nav a {
        margin: 0 5px;
    }

    .home {
        background-position: top;
        min-height: 100vh;
        padding-top: 150px;
    }
}