@charset "UTF-8";

html, body {
    height: 100%;
}

body {
    background-color: #FFFFFF !important;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: 1300px !important;
}

img, object, embed, video {
    max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
    width: 100%;
}

img {
    border: none;
    outline: none;
}

hr {
    clear: both;
}

a:active {
    outline: none;
}


/* Bounce Stuff */
.bounceit {
    margin-top: 50px;
    width: 100%;
    text-align: center;
    bottom: 0px;
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
    position: absolute;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

/*Page Fade In*/
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen {
    body {
        opacity: 0; /* make things invisible upon start */
        -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
        -moz-animation: fadeIn ease-in 1;
        animation: fadeIn ease-in 1;

        -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;

        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        animation-duration: 1s;

        -webkit-animation-delay: 0.1s;
        -moz-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
}

:root {
    --primary: #1a472a;
    --cream: #f5f1e8;
    --amber: #d4a574;
    --amber-light: #e0b889;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
}

.bg-primary-custom {
    background-color: var(--primary);
}

.text-cream {
    color: var(--cream);
}


.text-amber {
    color: var(--amber);
}

.bg-amber {
    background-color: var(--amber);
}

.bg-amber:hover {
    background-color: var(--amber-light);
}

.text-gradient-amber {
    background: linear-gradient(135deg, #d4a574 0%, #f0c080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
nav {
    background-color: rgba(26, 71, 42, 0.95);
    backdrop-filter: blur(10px);
    min-height: 90px;
    height: 100px;
}

.navbar-brand {
    position: absolute;
    left: 150px;
}

.navbar-brand img {
    height: 160px;
    margin-top: 80px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: height 0.3s ease, margin-top 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 80px;
    margin-top: 10px;
}

.navbar-nav .nav-link {
    color: rgba(245, 241, 232, 0.8);
    font-weight: 500;
    font-size: 1.1rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    transition: color 0.3s, font-size 0.3s ease;
}

nav.scrolled .navbar-nav .nav-link {
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--amber);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.overlay-main {
    position: relative;
    display: inline-block;
    padding: 2rem 3.5rem;
    margin-bottom: 1.5rem;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0) 85%);
    z-index: 0;
}

.overlay-main > * {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: var(--cream);
    width: 100%;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    z-index: 15;
}

.hero-section .carousel-indicators {
    z-index: 15;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: rgba(245, 241, 232, 0.8);
    margin-bottom: 2rem;
}

.carousel-caption {
    top: 160px;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--cream);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: #2d5a3f;
    border-color: #2d5a3f;
    color: var(--cream);
}

.btn-primary:focus,
.btn-primary:focus-visible {
    box-shadow: 0 0 0 0.25rem rgba(26, 71, 42, 0.4);
}

.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary {
    background-color: #163a22;
    border-color: #163a22;
    color: var(--cream);
}

.btn-amber {
    background-color: var(--amber);
    color: var(--primary);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: none;
    transition: background-color 0.3s;
}

.btn-amber:hover {
    background-color: var(--amber-light);
    color: var(--primary);
}

.btn-outline-cream {
    border: 1px solid rgba(245, 241, 232, 0.4);
    color: var(--cream);
    font-weight: 500;
    padding: 0.875rem 2rem;
    transition: background-color 0.3s;
}

.btn-outline-cream:hover {
    background-color: rgba(245, 241, 232, 0.1);
    color: var(--cream);
}

/* Card Styles */
.card-custom {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card-custom:hover {
    transform: translateY(-5px);
}

.card-custom img {
    height: 224px;
    object-fit: cover;
    transition: transform 0.5s;
}

.card-custom:hover img {
    transform: scale(1.05);
}

/* Feature Icons */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(26, 71, 42, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

/* Secondary Hero */
.secondary-hero {
    position: relative;
    padding: 16rem 6rem;
    overflow: hidden;
}

.secondary-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--cream);
}

footer a {
    color: rgba(245, 241, 232, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--amber);
    text-decoration: none;
}

.footer-logo {
    height: 126px;
    width: auto;
}

/* Badge */
.badge-amber {
    background-color: rgba(212, 165, 116, 0.1);
    color: var(--amber);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
}

/* Spacing */
.py-section {
    padding: 6rem 0;
}

/* ====================================
   BOOK YOUR SITE PAGE STYLES
   ==================================== */

.book-site-section {
    padding-top: 8rem;
    padding-bottom: 6rem;
    background-color: var(--cream);
}

.book-site-header {
    max-width: 700px;
    margin: 0 auto;
}

.book-site-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.book-site-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

.book-site-cards {
    max-width: 1100px;
    margin: 0 auto;
}

.booking-card {
    border-radius: 0.75rem;
    overflow: hidden;
}

.booking-card-img {
    height: 192px;
    object-fit: cover;
}

.booking-card-body {
    padding: 1.5rem;
}

.booking-card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.booking-card-text {
    line-height: 1.6;
}

.booking-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 50rem;
    background-color: rgba(212, 165, 116, 0.1);
    color: var(--primary);
}

.booking-badge-amber {
    color: var(--amber);
}

.booking-link {
    color: var(--primary);
    text-decoration: none;
}

.booking-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.coming-soon-bg {
    height: 192px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3f 100%);
}

.coming-soon-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--cream);
}

/* ====================================
   ABOUT AREA PAGE STYLES
   ==================================== */

.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-top: 100px;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--cream);
    width: 100%;
    max-width: 800px;
    padding: 0 1rem;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
}

.about-area-section {
    padding-top: 8rem;
    padding-bottom: 6rem;
    background-color: var(--cream);
}

.about-header {
    max-width: 700px;
    margin: 0 auto;
}

.about-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.area-feature {
    margin-bottom: 3rem;
}

.area-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(26, 71, 42, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.area-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.area-feature-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.location-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.location-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.location-card p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3f 100%);
    border-radius: 0.75rem;
    padding: 3rem 2rem;
    color: var(--cream);
    text-align: center;
    margin-top: 3rem;
}

.highlight-box h3 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ====================================
   THINGS TO DO PAGE STYLES
   ==================================== */

.things-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-top: 100px;
}

.things-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.things-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.things-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--cream);
    width: 100%;
    max-width: 800px;
    padding: 0 1rem;
}

.things-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.things-hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
}

.things-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--cream);
}

.things-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.things-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.things-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

.activity-card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.activity-card-wrapper {
    margin-bottom: 2.5rem;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.activity-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.activity-card-body {
    padding: 1.5rem;
}

.activity-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(212, 165, 116, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.activity-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.activity-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.season-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 50rem;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(26, 71, 42, 0.1);
    color: var(--primary);
    margin-top: 1rem;
}

/* ====================================
   CONTACT PAGE STYLES
   ==================================== */

.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
    margin-top: 100px;
}

.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--cream);
    width: 100%;
    max-width: 800px;
    padding: 0 1rem;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
}

.contact-section {
    background-color: var(--cream);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(212, 165, 116, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-info-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-form-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.btn-submit {
    background-color: var(--amber);
    color: var(--primary);
    font-weight: 600;
    padding: 0.875rem 3rem;
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--amber-light);
    color: var(--primary);
}

/* ====================================
   MEDIA QUERIES
   ==================================== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .about-hero-content h1,
    .things-hero-content h1 {
        font-size: 4rem;
    }

    .contact-hero-content h1 {
        font-size: 4rem;
    }

    .btn-submit {
        width: auto;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}