/* ===== Base HTML & Body ===== */
html, body {
    font-family: 'Playfair Display', serif;
    color: #222;
    background-color: #fff;
   
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Body / paragraph text */
body p, body li {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

/* Headings (h1, h2, etc) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0 0 1rem;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* ===== Header (Hidden Initially, Visible on Scroll) ===== */
#mainHeader {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.6s ease, background 0.6s ease;
    background: transparent;
}

    #mainHeader.visible {
        position: fixed;
        background: rgba(255,255,255,0.95);
        opacity: 1;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

.top_panel_navi {
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}


#mainHeader.visible .logo_main {
    transform: scale(0.9);
}

.menu_header_wrap,
.menu_main_wrap {
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center; /* centers vertically */
    text-align: center;
    height: 150px;
    position: relative;
}
.menu_main_nav {
    white-space: nowrap; /* keep menu in one line */
}

    .menu_main_nav a {
        font-family: 'Montserrat', 'Arial', sans-serif;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        margin: 0 15px;
        transition: color 0.3s ease;
        font-size: clamp(13px, 1.1vw, 16px);
        padding: 0.25rem 0.4rem;
    }

    .menu_main_nav i {
        margin-right: 4px;
        font-size: 0.95em;
    }

    .menu_main_nav a:hover {
        color: #d4b36b;
    }

/* For laptops like 14-inch */
@media (max-width: 1366px) {
    .menu_main_nav a {
        font-size: 14px;
    }
}

@media (max-width: 1366px) {
    .menu_main_nav li {
        margin-right: 6px;
    }
}
/* For even smaller screens */
@media (max-width: 1200px) {
    .menu_main_nav a {
        font-size: 13px;
    }
}

/* ===== Slider Section ===== */
.slider-container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.rev_slider_wrapper {
    z-index: 1 !important;
    position: relative;
    margin-top: 0;
}

#slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .rev_slider_wrapper,
    .rev_slider,
    .fullscreenbanner {
        height: 85vh !important;
        min-height: 85vh !important;
    }

    .rev-slidebg {
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 70vh;
    }
}

/* Overlay gradient for contrast */
.rev_slider_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 2;
}

/* ===== Discover Arrow ===== */
.scroll-down {
    color: #fff;
    font-size: 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 1.5s infinite;
    z-index: 99;
}

    .scroll-down:hover {
        color: #d4b36b;
    }

@keyframes bounce {
    0%,20%,50%,80%,100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* ===== Content Section ===== */
/*section#content {
    padding: 60px 0;
}*/

.content-two-col {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 768px) {
    .content-two-col {
        grid-template-columns: 1fr;
    }
}

.content-two-col img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.content-two-col h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-two-col p {
    line-height: 1.6;
    color: #444;
}

/* ===== Utility Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }


/* Logo container ensures SVG overlays correctly */
.logo-container {
    position: relative;
    display: inline-block;
}




.logo-container {
    text-align: center;
    position: relative;
}


.logo-svg-below {
    display: block;
    margin: 25px auto 0;
    width: 80%;
    height: auto;
    fill: none;
    stroke: rgba(255,255,255,0.95); /* gold stroke */

    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

   

    .logo-svg-below path,
    .draw-path {
      
        stroke-width:0.2;
        stroke-linecap:round;
        stroke-linejoin:round;
    }

/* ===== DISCOVER BUTTON ===== */
.discover-btn-wrapper {
    position: absolute;
    bottom: 5%; /* slightly up from bottom */
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    text-align: center;
}

/* Button base */
.trigger.start {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border: 1px solid #d4b36b;
    background: transparent;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    isolation: isolate;
}

    /* Background gold fill effect */
    .trigger.start::after {
        content: "";
        position: absolute;
        bottom: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: #d4b36b;
        z-index: 0;
        transition: bottom 0.4s ease;
    }

    .trigger.start:hover::after {
        bottom: 0;
    }

    /* Text and icon wrapper */
    .trigger.start span {
        position: relative;
        z-index: 1;
        display: inline-flex; /* makes text & icon flex items */
        align-items: center; /* vertical alignment */
        gap: 10px; /* space between text and icon */
        color: #fff;
        transition: color 0.4s ease;
    }

    /* Icon style */
    .trigger.start i {
        font-size: 1.5rem;
        transition: transform 0.3s ease, color 0.4s ease;
    }

    /* Hover effects */
    .trigger.start:hover span,
    .trigger.start:hover i {
        color: #000;
    }

    .trigger.start:hover i {
        transform: translateY(2px);
    }



/* Two-column section */
.promo-section {
    width: 100%;
    background-color: #fff;
    overflow: hidden;
}

.promo-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

/* Left/right image block */
.promo-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 300px; /* for mobile */
    border-radius: 15px; /* rounded corners */
    overflow: hidden; /* so background image follows the radius */
    display: block;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease-in, transform 0.8s ease-out;
}

    .promo-image.show {
        opacity: 1;
        transform: scale(1); /* zoom to normal size */
    }


/* Text block */
.promo-text {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
    background-color: #fff;
}

/* Alternate layout for every other section */
.promo-section.reverse .promo-row {
    flex-direction: row-reverse;
}

/* Typography */
.promo-title {
    /*font-size: 42px;*/
    font-weight: 400;
    letter-spacing: 1px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    
}

.promo-subtitle {
    font-size: 18px;
    color: #b3a182;
    margin-bottom: 20px;
    font-weight: 500;
}

.promo-description {
    /*  font-size: 16px; */
   /* line-height: 1.7;*/
    color: #555;
    max-width: 500px;
    margin: 0 auto 25px;
}

/* Button */
.btn-discover {
    /* display: inline-block;
    padding: 12px 30px;
    color: #b3a182;
    border: 1px solid #b3a182;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;*/
    border: 2px solid #b3a182;
    padding: 10px 24px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

    .btn-discover:hover {
        background-color: #b3a182;
        color: #fff;
    }

/* Responsive */
@media (max-width: 992px) {
    .promo-row {
        flex-direction: column;
    }

    .promo-image, .promo-text {
        flex: 1 1 100%;
        /*min-height: 400px;*/
        width: 100%;
    }
}

/* ===== Contact CTA Section ===== */
.contact-cta-section {
    background-color: #dfd2bc; /* Fanfani beige tone */
    padding: 70px 0;
}

.contact-subtitle {
    font-family: 'Poppins', sans-serif;
    color: #7a6b52;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 600;
}

/* Elegant button */
.btn-contact {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 40px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background-color: #b39b63; /* gold tone */
    border: 2px solid #b39b63;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

    .btn-contact:hover {
        color: #b39b63;
        background-color: transparent;
        border-color: #b39b63;
        transform: translateY(-3px);
    }

/* Responsive tweaks */
@media (max-width: 768px) {
    .contact-title {
        font-size: 1.6rem;
    }

    .btn-contact {
        padding: 10px 30px;
        font-size: 14px;
    }
}

/* Section background */
.team-bg {
    background-color: #DED2BD; /* same as contact block */
}

/* Card styling */
.team-card {
    /*background: #fff;*/
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid #fff;
    
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

/* Avatar */
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Text styling */
.team-role {
    color: #b3a182; /* Fanfani gold-ish accent */
    font-weight: 500;
}

.team-bio {
    color: #444;
    line-height: 1.6;
}

/* Responsive adjustments */
@media(min-width: 992px) {
    .team-avatar {
        width: 150px;
        height: 150px;
    }
}

@media(max-width: 576px) {
    .team-avatar {
        width: 90px;
        height: 90px;
    }
}

/* footer */

.footer-wrapper {
    background-color: #fff;
    padding: 40px 0 10px;
    color: #6f6f6f;
    border-top: 1px solid #ddd;
}

.footer-logo-img {
    width: 200px;
    height: auto;
}

.footer-heading {
    color: #b3a182;
    font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.footer-icon {
    margin: 0 10px;
}

    .footer-icon a i {
        color: #d4b36b;
        transition: 0.3s;
    }

        .footer-icon a i:hover {
            color: #a58a5c;
        }

.footer-social-icon {
    margin: 0 8px;
    font-size: 20px;
    color: #d4b36b;
    transition: 0.3s;
}

    .footer-social-icon:hover {
        color: #a58a5c;
    }

.footer-links {
    font-size: 16px;
    margin-top: 20px;
}

.footer-link {
    color: #6f6f6f;
    text-decoration: none;
}

    .footer-link:hover {
        color: #d4b36b;
    }

.footer-copy p {
    font-size: 12px;
    color: #909090;
    line-height: 1.6;
}

.footer-email {
    color: #d4b36b;
}

    .footer-email:hover {
        color: #b99755;
    }


    /* popup windows */

/* Overlay */
.policy-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(3px);
}

/* Popup Container */
.policy-popup-container {
    width: 90%;
    max-width: 900px;
    height: 80vh;
    background: #fff;
    border-radius: 10px;
    position: relative;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    animation: popupShow 0.3s ease-out;
}

/* Close button */
.policy-close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    font-size: 22px;
    font-weight: bold;
    background: #fff;
    color: #2E3D52;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    z-index: 999;
}

/* Iframe */
.policy-popup-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Animation */
@keyframes popupShow {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Social icon circle */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 8px;
    font-size: 22px;
    color: #fff;
    transition: all .3s ease;
}

/* Facebook */
.social-facebook {
    background-color: #1877F2;
}

    .social-facebook:hover {
        background-color: #145DBF;
    }

/* Messenger */
.social-messenger {
    background-color: #006AFF;
}

    .social-messenger:hover {
        background-color: #0051C8;
    }

/* WhatsApp */
.social-whatsapp {
    background-color: #25D366;
}

    .social-whatsapp:hover {
        background-color: #1DA851;
    }

/* Instagram gradient */
.social-instagram {
    background: radial-gradient( circle at 30% 30%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90% );
}

    .social-instagram:hover {
        filter: brightness(1.1);
    }

/* Pinterest */
.social-pinterest {
    background-color: #E60023;
}

    .social-pinterest:hover {
        background-color: #C1001C;
    }

/* YouTube */
.social-youtube {
    background-color: #FF0000;
}

    .social-youtube:hover {
        background-color: #CC0000;
    }

/* Vimeo */
.social-vimeo {
    background-color: #1AB7EA;
}

    .social-vimeo:hover {
        background-color: #1494BD;
    }

/* WeChat */
.social-wechat {
    background-color: #09B83E;
}

    .social-wechat:hover {
        background-color: #079C34;
    }

@media (min-width: 768px) {
    .promo-image {
        height: 100%;
        min-height: 450px; /* matches Fanfani style */
    }

}

@media (max-width: 767px) {
    .promo-image {
        height: 300px; /* responsive height for phones */
    }
}

/* Text block styling */
.promo-text-inner {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.text-justify {
    text-align: justify;
}

.img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTACT US*/
/* keep inputs large on mobile */
.contact-page .card {
    border-radius: 8px;
}

.contact-page .form-label {
    font-weight: 600;
    font-size: .95rem;
}

@media (max-width: 575px) {
    .contact-page .card-body {
        padding: 1rem;
    }
}
