@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-Bold.woff2') format('woff2'),
        url('../fonts/Onest-Bold.woff') format('woff'),
        url('../fonts/Onest-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-Medium.woff2') format('woff2'),
        url('../fonts/Onest-Medium.woff') format('woff'),
        url('../fonts/Onest-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-Regular.woff2') format('woff2'),
        url('../fonts/Onest-Regular.woff') format('woff'),
        url('../fonts/Onest-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('../fonts/Onest-SemiBold.woff2') format('woff2'),
        url('../fonts/Onest-SemiBold.woff') format('woff'),
        url('../fonts/Onest-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}



/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Onest';
    font-weight: 400;
}


/* BODY SPACING */

body:not(.home) main {
    padding-bottom: 50px;
    padding-top: 140px;
    margin-top: 0;
}

p{
    font-size: 18px;
    color: #737681;
}

h2 {
    font-weight: 600;
} 

hr{
    border-bottom:0;
    height: 1px;
    background-color: #ffffff;
    opacity: 0.1;
    margin: 20px 0;
}

/* ================= HEADER ================= */

.custom-header {
    background: #161A2D;
    width: 100%;
    padding: 15px 0;
    position: relative;
    z-index: 999;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}


/* Sticky Header */

.custom-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    animation: stickySlideDown 0.35s ease;
}


/* Smooth Slide */

@keyframes stickySlideDown {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}


/* Logo */

.header-logo img {
    max-width: 170px;
    height: auto;
    display: block;
}


/* Desktop Menu */

.header-menu .nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-menu .nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
}

.header-menu .nav-menu li a:hover {
    color: #c89b3c;
}


/* Contact */

.header-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-contact a {
    color: #c89b3c;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}


/* Hamburger */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    display: block;
}


/* ================= MOBILE SLIDE MENU ================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #161A2D;
    padding: 30px;
    transition: 0.4s;
    z-index: 9999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}


/* Close Button */

.close-menu {
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: block;
    text-align: right;
    margin-bottom: 30px;
}


/* Mobile Nav */

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 18px;
}

.mobile-nav li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

.mobile-nav li a:hover {
    color: #c89b3c;
}


/* Overlay */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ================= HERO BANNER ================= */

.hero-banner {
    position: relative;
    height: 750px;
    overflow: hidden;
}

.hero-slider .slide {
    position: relative;
    height: 750px;
}

.hero-slider img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
}

.banner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    max-width: 900px;
    z-index: 2;
    padding: 20px;
    width: 100%;
}

.align-left {
    left: 4%;
    text-align: left;
}

.align-center {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.align-right {
    right: 4%;
    text-align: right;
}

.banner-content h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: auto;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.banner-btn {
    background: #cfa670;
    padding: 14px 30px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}


.slick-dots {
    bottom: 30px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.slick-dots li button:before {
    display: none;
}

/* Inactive dots — small plain white circle */
.slick-dots li button {
    width: 8px !important;
    height: 8px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    border: none !important;
    padding: 0 !important;
    transition: all 0.3s ease;
}

/* Active dot — larger white circle with outer ring */
.slick-dots li.slick-active button {
    width: 12px !important;
    height: 12px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    border: none !important;
    outline: 2px solid rgba(255, 255, 255, 0.3) !important;
    outline-offset: 4px !important;
}

.custom-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-check-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 18px;
    color: #5c6773;
    font-size: 18px;
    line-height: 1.6;
}

/* Orange circle with check */
.custom-check-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #d9912a;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    padding: 1px 5px;
}

.event-custom-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-custom-check-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
}

/* Orange circle with check */
.event-custom-check-list li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #d9912a;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    padding: 1px 5px;
}

.about-img img{
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

.custom-section-slider img{
    border-radius: 0 20px 20px 0;
    height: 500px;
    object-fit: cover;
}


.event-section .custom-section-slider img{
    border-radius: 20px 0 0 20px;
    height: 500px;
    object-fit: cover;
}


/* Container */
.why-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    justify-content: center;
}

/* Remove default list style */
.why-list li {
    list-style: none;
}

/* Pill design */
.why-list li {
    position: relative;
    padding: 8px 16px 8px 28px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
}

/* Yellow dot */
.why-list li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #f5a623;
    border-radius: 50%;
}

/* Optional hover effect */
.why-list li:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}



.custom-contact-form {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.custom-contact-form .form-row {
  width: 100%;
}

/* Full width fields */
.custom-contact-form .form-row.full {
  grid-column: span 2;
}

/* Inputs */
.custom-contact-form input,
.custom-contact-form select,
.custom-contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  border: none;
  background: #ffffff;
  font-size: 15px;
  color: #161A2D;
  outline: none;
  line-height: normal;
}

.custom-contact-form textarea {
  height: 140px;
  resize: none;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
  color: #161A2D;
}

.custom-contact-form input[type="submit"] {
  background: #D69A4A;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  width: auto;
}

.custom-contact-form input[type="submit"]:hover {
  background: #C48735;
}

/* Mobile */
@media (max-width: 768px) {
  .custom-contact-form {
    grid-template-columns: 1fr;
  }

  .custom-contact-form .form-row.full {
    grid-column: span 1;
  }
}

.wpcf7-not-valid-tip{
    font-size: 12px !important;
    padding-top: 5px;
}


.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
    display: none;
    font-size: 13px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450; /* Green */
    font-size: 13px !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232; /* Red */
    font-size: 13px !important;
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28; /* Orange */
    font-size: 13px !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900; /* Yellow */
    font-size: 13px !important;
}

.contact-form-section{
    border-radius: 20px;
    overflow: hidden;
}

/* ================= FOOTER ================= */

.site-footer {
    max-width: 100% !important;
    padding: 0;
    margin: 0;
}

.custom-footer {
    background: #161A2D;
    color: #fff;
    width: 100%;
}

.custom-footer h4{
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px;
}


/* Footer Container */

.footer-container {
    max-width: var(--responsive--alignwide-width);
    margin: auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}


/* Footer Logo */

.footer-logo {
    display: inline-block;
    padding: 8px 0;
    margin-bottom: 20px;
}

.footer-logo span {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
}


/* Footer Text */

.footer-col p {
    color: #ffffff;
    padding-bottom: 10px;
}


/* Footer Links */

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
}

.footer-menu a:hover {
    color: #d4a94f;
}


/* Social Icons */

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 8px;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
    border:1px solid #2D3142;
}

.footer-social a:hover {
    background: #d4a94f;
}

.footer-social img {
    height: 20px;
}


/* Footer Bottom */

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    color: #ffffff;
    font-size: 18px;
}


/* ================= RESPONSIVE ================= */

@media (max-width:992px) {

    .header-menu {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

}


/* Slider Mobile */

@media (max-width:768px) {

    .hero-banner,
    .hero-slider .slide,
    .hero-slider img {
        height: 520px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

}


/* Small Mobile */

@media (max-width:600px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

}