@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

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

.post,
.page {
    margin: 0 !important;
}

body {
    font-family: 'Cormorant Garamond', serif!important;
    color: #1a1a1a;
}
.overflow-x {
	overflow-x: hidden !important;
}
h1, h2, h3 {
   font-family: 'Cormorant Garamond', serif;
	color: #111;
    font-weight: 400;
    margin-bottom: 20px;
}

p {
    font-size: 105%;
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    font-size: 350%;
}

h2 {
    font-size: 250%;
}

h3 {
    font-size: 175%;
}

p.big-info {
	font-size: 24px;
}

p a:hover {
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
	padding: 0;
	margin: 0 !important;
}

img {
    width: 100%;
    display: block;
}
.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* Section Styles */
section {
	padding: 80px 0;
}

section.section-sm {
	padding: 40px 0;
}

.dark-green {
    background-color: #1b3a2d;
    color: #fff;
}

.light-cream {
    background-color: #f9f6f1;
}

.white-bg {
    background-color: #fff;
}

.text-gold {
    color: #b8962e;
}

.text-white {
    color: #fff;
}


.text-italic-white {
    color: #fff;
    font-style: italic;
}

.text-small {
    font-size: 0.88rem;
}

.section-label {
    font-size: 90%;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #b8962e;
    display: block;
    margin-bottom: 15px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem !important;
}

.checklist li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #b8962e;
    font-size: 105%;
}

.checklist li i {
    color: #b8962e;
    margin-right: 0.7rem;
}


/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}

/* All Buttons */
.button {
	display: inline-block;
    padding: 0.75rem 2.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
	transition: all 0.35s ease;
}
.btn-gold {
    background: #b8962e;
    color: #fff;
    border: 2px solid #b8962e;
}

.btn-gold:hover {
    background: transparent;
    color: #b8962e;
}

.btn-outline-gold {
    color: #b8962e;
    border: 2px solid #b8962e;
}

.btn-outline-gold:hover {
    background: #b8962e;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #1b3a2d;
    border: 2px solid #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}


/* NAVIGATION */
.navbar {
    background: #1b3a2d;
    padding: 18px 0;
    transition: box-shadow 0.3s;
    width: 100%;
}

.navbar .logo {
    width: 200px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 110%;
    letter-spacing: 0.5px;
    padding: 6px 16px !important;
    transition: color 0.2s;
    position: relative;
}
.custom-toggler {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.custom-toggler span {
    display: block;
    height: 2px;
    width: 24px;
    background: #b8962e;
}

.custom-toggler span.short {
    width: 16px;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #b8962e !important;
}

.navbar-toggler i {
    color: #b8962e;
}

.navbar-light .navbar-toggler {
    border: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.page-hero {
	min-height: 70vh;
}
.page-hero .section-label {
	color: #fff;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.page-hero .hero-bg img {
    object-fit: cover;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 7s ease-in-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.hero-content h1 {
	font-size: 500%;
    font-style: italic;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    margin-top: 0;
    color: #fff;
}

.hero-content p {
    font-size: 120%;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 20px;
}

.hero-curved-text {
    display: block;
    width: 100%;
    max-width: 680px;
    margin: 0 auto 12px;
    overflow: visible;
}

.award-banner {
    background: linear-gradient(135deg, #1b3a2d 0%, #0f2318 100%);
    padding: 5rem 0;
    text-align: center;
}

.award-banner .award-icon {
    font-size: 3rem;
    color: #b8962e;
    margin-bottom: 1rem;
}

/* Split Section */
.split-col {
	padding: 60px;
}

.split-section .col-lg-6 {
	padding: 0;
	margin: 0;
}

@media only screen and (max-width: 992px) {
	.split-col {
		padding-right: var(--bs-gutter-x, 1.5rem);
		padding-left: var(--bs-gutter-x, 1.5rem);
	}
}
.bio-social a {
    color: #1b3a2d;
    font-size: 1.1rem;
}

.bio-social a:hover {
    color: #b8962e;
}

/* Stat item */

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-item .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #b8962e;
    line-height: 1;
}

.stat-item .label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.stat-item .icon {
    font-size: 1.8rem;
    color: rgba(184, 150, 46, 0.5);
    margin-bottom: 0.8rem;
}

/* Product Section */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    object-fit: cover;
}

.product-card .card-body-inner {
	padding: 1.8rem 0 0;
    flex: 1;
    background: #fff;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
}
.product-card .card-body {
	height: 100%
	padding: 15px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
    background: #fff;
}
.product-card:hover .card-body-inner {
    border-color: #b8962e;
}
.product-card .card-body a {
	text-align: center;
}

.product-card h3 {
    margin-bottom: 0.8rem;
	font-size: 24px;
}
.philosophy-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    height: 100%;
}

.philosophy-card-featured {
    border-top: 3px solid #b8962e;
}

.philosophy-card i {
    font-size: 2.2rem;
    color: #1b3a2d;
    margin-bottom: 1.2rem;
    display: block;
}

.philosophy-card h3 {
    margin-bottom: 1rem;
}
.product-card.menu-card:hover .card-body-inner {
	border-bottom: none;
	border-color: transparent;
}

.menu-split-col {
        padding: 40px;
    }

.menu-card {
    height: 100%;
}

@media(max-width: 991.9px) {
    .menu-split-col {
    padding: 30px 20px;
}
	.menu-card {
    height: auto;
	}
	.menu-card .main-img {
    height: 300px;
	}

}


/* Features */
.feature-icon-box {
    text-align: center;
    padding: 0 4rem 0 2rem;
    border-right: 1px solid #c9a84c55;
    flex: 0 0 auto;
    margin: 10px 0;
}

.feature-icon-box:last-child {
    border-right: none;
}

.feature-icon-box i {
    font-size: 1.6rem;
    color: #b8962e;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-icon-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3a3a3a;
}

/* Form Style */
.reservation-section {
    padding: 6rem 0;
}

.contact-block {
    margin-bottom: 10px;
}

.contact-block .contact-label {
    font-size: 85%;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #b8962e;
    margin-bottom: 10px;
}

.contact-block .contact-label i {
    margin-right: 0.4rem;
}

.contact-block a:hover {
    color: #b8962e;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.9rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 0.88rem;
    background: #fff;
    transition: border-color 0.3s;
    margin-bottom: 1rem;
    outline: none;
    display: block;
    color: #2c2c2c;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: #1b3a2d;
}

.wpcf7 span.wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
}

.wpcf7 textarea {
    height: 130px;
    resize: vertical;
}

.wpcf7 select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.wpcf7 input[type="submit"] {
    background: #b8962e;
    color: #fff;
    border: 2px solid #b8962e;
    font-family: unset;
}

.wpcf7 input[type="submit"]:hover {
   background: transparent;
   color: #b8962e;
	border-color: #b8962e;
}


/* Gallery Section */
.marquee-track {
    overflow: hidden;
    width: 100%;
}

.marquee-inner {
    display: flex;
    width: max-content;
}

.marquee-inner a {
    display: block;
    flex-shrink: 0;
}

.marquee-inner img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.marquee-inner img:hover {
    opacity: 0.8;
}

/* Footer */
.site-footer {
    background: #0d1f15;
    color: rgba(255, 255, 255, 0.65);
    padding: 4rem 0 2rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

footer h3 {
    font-size: 90%;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #b8962e;
    margin-bottom: 10px;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 90%;
	display: block;
}

.footer-links a:hover {
    color: #b8962e;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 85%;
}

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    margin-right: 1rem;
    font-size: 0.9rem;
}

.social-links a:hover {
    color: #b8962e;
}


/* MEDIA QUERIES */
@media screen and (max-width: 991.9px) {
    section {
        padding: 60px 0;
    }
	     h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
		padding-right: var(--bs-gutter-x, 1.5rem);
		padding-left: var(--bs-gutter-x, 1.5rem);
    }
    .logo-wrap {
        position: relative;
        width: 100%;
        justify-content: space-between;
    }

    .navbar .logo,
    .logo-mobile {
        height: 35px !important;
        width: auto;
        transition: all .3s;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 40px;
        margin-bottom: 0;
    }

    .nav-link {
        font-size: 120%;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }

    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
        width: 0;
    }

    .nav-btn {
        display: none;
    }
	  .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.feature-icon-box {
		padding: 0 15px;
	}
  
}

@media only screen and (max-width: 767.9px) {
	section.hero-section {
    min-height: 70vh;
}
	section {
        padding: 50px 0;
    }
       h1 {
        font-size: 200% !important;
    }

    h2 {
        font-size: 175%;
    }
    .trust-item {
        padding: 8px;
    }

}
