* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    color: #222;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    z-index: 1000;
    backdrop-filter: blur(6px);
    margin: 0;
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 40px;
    box-sizing: border-box;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    width: 45px;
    height: auto;
    border-radius: 6px;
    margin: 0;
}

.brand {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
}

.site-nav {
    display: flex;
    gap: 25px;
    margin-left: auto;
}

.site-nav a {
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.site-nav a:hover {
    color: #00aaff !important;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("hero.png.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(60%);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 12px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hero .small {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    color: #fff;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 16px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero .lead {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hero .small {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.btn {
    background: #ffcc33;
    color: #222;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #ffd84d;
}

.btn-outline {
    border: 2px solid #222;
    color: #222;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #222;
    color: #fff;
}

.section {
    padding: 6rem 0 4rem;
}

.section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #ffcc33;
    margin: 0.5rem auto;
    border-radius: 2px;
}


.about .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about ul {
    margin-top: 1rem;
    list-style: disc;
    margin-left: 1.5rem;
}

.about-img img {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 10px;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 1.2rem;
}

.card-body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}


.gallery .masonry {
    columns: 3 200px;
    column-gap: 1rem;
}

.gallery img {
    margin-bottom: 1rem;
    border-radius: 8px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.03);
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form input,
.form textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 0.3rem;
    font-family: inherit;
}

.form button {
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.contact a {
    color: #222;
    text-decoration: underline;
}


.site-footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.site-footer a {
    color: #ffcc33;
    text-decoration: none;
}


@media (max-width: 900px) {

    .about .grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .site-nav {
        display: none;
        flex-direction: column;
        text-align: right;
        background: rgba(0, 0, 0, 0.85);
        padding: 1rem;
        position: absolute;
        top: 60px;
        right: 10px;
        border-radius: 8px;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .lead {
        font-size: 1rem;
    }
}

.p3 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    font-style: italic;
}

.site-header .logo img {
    max-height: 40px;
    width: auto;
    display: block;
    margin-right: 10px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 5px 20px;
}

.site-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    margin-left: 10px;
}

.site-nav a:hover {
    color: #007BFF;
}




#bookings {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

#bookings h2 {
    text-align: center;
    font-size: 2rem;
    color: #111;
    margin-bottom: 1rem;
}

#bookings p {
    text-align: center;
    color: #444;
    font-size: 1rem;
    margin-bottom: 2rem;
}

#bookingForm {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#bookingForm label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

#bookingForm input,
#bookingForm textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
    font-family: inherit;
}

#bookingForm button {
    width: 100%;
    padding: 12px;
    background-color: #00aaff;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

#bookingForm button:hover {
    background-color: #0094d4;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
}

.insta-icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.insta-link:hover .insta-icon {
    transform: scale(1.1);
}


.social-links {
    margin-top: 1rem;
    text-align: center;
}

.insta-icon {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
    /* makes icon white */
}

.insta-link:hover .insta-icon {
    transform: scale(1.15);
    filter: brightness(0) invert(0.8);
}

/* Smooth fade-in animation for all sections */
section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

section.show-section {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Styles */
@media (max-width: 900px) {

    .about .grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery .masonry {
        columns: 2;
        column-gap: 0.5rem;
    }
}

@media (max-width: 700px) {
    .site-nav {
        display: none;
        flex-direction: column;
        text-align: center;
        background: rgba(0, 0, 0, 0.9);
        padding: 1rem 0;
        position: absolute;
        top: 60px;
        right: 10px;
        border-radius: 8px;
        z-index: 2000;
    }

    .site-nav a {
        margin: 10px 0;
        font-size: 16px;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 25px;
        position: relative;
    }

    .menu-toggle span {
        display: block;
        height: 4px;
        width: 100%;
        background: #fff;
        margin: 5px 0;
        border-radius: 2px;
        transition: 0.3s;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .hero .small {
        font-size: 0.8rem;
    }

    #bookingForm {
        padding: 1rem;
    }

    .gallery .masonry {
        columns: 1;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 3rem 1.5rem;
    }

    #about .grid {
        display: block;
    }

    #about p {
        text-align: justify;
        margin-bottom: 1rem;
    }

    .about-img {
        margin-top: 2rem;
        text-align: center;
    }

    .about-img img {
        max-width: 90%;
        border-radius: 12px;
    }
}

.footer-instagram {
    text-align: center;
    background: #1e1e1e;
    padding: 2rem 1rem;
}

.footer-instagram .insta-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-instagram .insta-logo:hover {
    transform: scale(1.1);
}

#bookings {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

#bookings.show-section {
    opacity: 1;
    transform: translateY(0);
}


#about {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.farmhouse-location {
    text-align: center;
    padding: 40px 20px;
    background-color: #222;
    color: white;
}

.farmhouse-location h3 {
    margin-bottom: 15px;
    color: #ffcc00;
    font-size: 1.4rem;
}

#location {
    background: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
}

#location h2 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 1rem;
}

#location p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

section {
    scroll-margin-top: 80px;
}

#about {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    text-align: justify;
}

.contact-info {
    text-align: center;
    margin: 3rem auto 0;
    font-size: 1rem;
    color: #222;
    max-width: 600px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.contact-info a {
    color: #00aaff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #00aaff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    cursor: pointer;
    display: none;
    transition: 0.3s;
    z-index: 999;
}

#backToTop:hover {
    background: #0094d4;
}

.section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    #about {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.social-media {
    text-align: center;
    margin-top: 40px;
    color: #fff;
}

.social-media h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f1f1f1;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons a {
    color: #f1f1f1;
    font-size: 28px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #c19b53; /* your gold accent */
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .social-icons a {
        font-size: 24px;
    }
}


