/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    position: relative;
}

/* Header styles */
header {
    background-color: #1A0E0A;
    color: #fff;
    position: relative;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 0 2rem;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    margin-right: 43px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #F5E6D3;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

li {
    margin-left: 2rem;
}

a {
    color: #F5E6D3;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #e0d4c0;
}

.social-icons {
    display: flex;
    align-items: center;
    border: 2px solid #8B4513;
    border-radius: 25px;
    padding: 0.3rem 0.8rem;
    background: none;
}

.social-icons span {
    margin-right: 0.5rem;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #F5E6D3;
}

.social-icons a {
    margin-left: 0.3rem;
    font-size: 1rem;
    border: 2px solid #8B4513;
    border-radius: 50%;
    padding: 0.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

/* Hero section styles */
#home {
    background-image: url('images/nature-4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    text-align: center;
    position: relative;
    color: #fff;
}
#home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

#home:hover::after {
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0;
    text-align: left;
    padding-left: 198px;
}

.hero-content h1 {
    color: #fff;
    position: relative;
}

.hero-content p {
    color: #fff;
    position: relative;
    font-size: 48px;
    line-height: 48px;
    font-weight: bold;
    z-index: 1;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bff;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

#menu p {
    font-size: 32px;
    color: #1A0E0A;
}

button {
    background-color: #007bff;
    color: #fff;
    position: relative;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Footer styles */
footer {
    background-color: #1A0E0A;
    color: #fff;
    position: relative;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-family: 'Roboto', sans-serif;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 2rem;
}

#aboutus {
    background-color: #1A0E0A;
    color: #F5E6D3;
}

#aboutus h2 {
    margin-bottom: 1rem;
}

#aboutus .container {
    position: relative;
}

#aboutus p {
    letter-spacing: 10%;
    font-size: 1rem;
}

.image-collage {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
}

.collage-img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: absolute;
}

.overlap {
    top: 180px;
    left: -120px;
}

.connect-section {
    border: 2px solid #8B4513;
    border-radius: 25px;
    padding: 0.3rem 0.8rem;
    background: none;
    color: #F5E6D3;
    text-align: center;
    margin-top: 1rem;
    display: inline-block;
}

.connect-section span {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

#visitus {
    background-color: #1A0E0A;
    color: #F5E6D3;
}

#nature-view h2 {
    color: #1A0E0A;
}

.visit-layout {
    display: flex;
    gap: 3rem;
}

.map-container {
    width: 50%;
}

.visit-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nature-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .nature-cards {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }

    .nature-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
}

.nature-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px;
}

.nature-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.nature-card .fa-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 1.5rem;
}

.card-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

/* Menu styles */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* About and Visit styles */
.about-img, .visit-img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 2rem;
}

.visit-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

/* Contact form */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

input, textarea {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    height: 150px;
    resize: vertical;
}

/* Contact Us styles */
#contactus {
    background-image: url('images/nature-4.png');
    background-size: cover;
    background-position: center;
    color: #F5E6D3;
    position: relative;
}

#contactus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

#contactus .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: #8B4513;
    margin-right: 1rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #F5E6D3;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
    color: #F5E6D3;
}

#contactus .social-icons {
    border: none;
    padding: 0;
    background: none;
    margin-top: 2rem;
    text-align: center;
}

#contactus .social-icons span {
    display: block;
    margin-bottom: 1rem;
    font-size: 14px;
    color: #F5E6D3;
}

#contactus .social-icons .icon-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

#contactus .social-icons a {
    font-size: 1rem;
    width: 35px;
    height: 35px;
    border: 2px solid #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #F5E6D3;
}

#contactus .social-icons a:hover {
    background-color: #8B4513;
}

.contact-form {
    flex: 1;
    margin-top: -1rem;
}

.contact-form form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background-color: #8B4513;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    width: 100%;
}

.contact-form button:hover {
    background-color: #5a2d0c;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial .profile {
    margin-bottom: 1rem;
}

.testimonial .profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #8B4513;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-weight: bold;
    color: #007bff;
}

/* Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content p {
        font-size: 36px;
        line-height: 40px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }

    nav {
        flex-direction: column;
        padding: 0 1rem;
    }

    .logo {
        height: 30px;
    }

    .hamburger {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
        align-self: flex-end;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        margin-top: 1rem;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        margin: 0;
    }

    li {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .nav-menu .social-icons {
        margin-top: 1rem;
        border: none;
        padding: 0;
        justify-content: center;
    }

    #home {
        height: auto;
        min-height: 50vh;
        padding: 1rem;
    }

    .hero-content p {
        font-size: 24px;
        line-height: 28px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .menu-item {
        flex: 0 0 250px;
        scroll-snap-align: start;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 1rem;
    }

    section {
        padding: 2rem 0;
    }

    .visit-info {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form form {
        padding: 1.5rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }

    .contact-item h3 {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    #contactus .social-icons span {
        font-size: 12px;
    }

    #contactus .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .about-img, .visit-img {
        height: 200px;
    }

    .image-collage {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
    }

    .collage-img {
        position: static;
        width: 100%;
        height: auto;
        max-width: 250px;
        flex: 0 0 250px;
        scroll-snap-align: start;
    }

    .overlap {
        position: static;
        margin-top: 0;
    }

    #aboutus .container {
        padding: 1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    input, textarea {
        font-size: 0.9rem;
    }

    button {
        font-size: 0.9rem;
    }
}
