html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #8B7355;    /* Warm brown */
    --secondary-color: #A67B5B;  /* Terracotta */
    --accent-color: #4A5D23;     /* Olive green */
    --text-color: #2C1810;       /* Dark brown */
    --light-bg: #F5F1ED;         /* Light beige */
    --white: #FFFFFF;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 800px;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 100%;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    nav {
        padding: 0.75rem 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-button {
        display: block;
    }

    nav {
        top: 0.5rem;
        width: 95%;
        padding: 0.75rem 1.5rem;
    }
    
    body {
        padding-top: 60px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        padding: 1rem;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .property-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .property-card {
        margin: 0 0 1.5rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-values {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    nav .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .reason-card,
    .amenity-card {
        padding: 1rem;
    }

    .property-features {
        flex-direction: column;
        align-items: flex-start;
    }

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

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./images/VarCoverPhoto.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-logo {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    height: 180px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-logo {
        height: 120px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #5B7A2A;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 115, 85, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.why-choose .container {
    position: relative;
    z-index: 2;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.reason-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.reason-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.1),
        0 15px 25px rgba(0, 0, 0, 0.15);
}

.reason-card:hover::before {
    opacity: 1;
}

.reason-card i {
    font-size: 2.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.reason-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.reason-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.reason-card:hover h3 {
    color: var(--accent-color);
}

.reason-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 1200px) {
    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }
    
    .reason-card {
        padding: 2rem 1.5rem;
    }
}

/* Properties Section */
.properties {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.properties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 115, 85, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.properties .container {
    position: relative;
    z-index: 2;
}

.properties h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

.property-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.1),
        0 15px 25px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.property-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.4)
    );
    z-index: 1;
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(74, 93, 35, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.property-content {
    padding: 2rem;
}

.property-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.property-location {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-location i {
    color: var(--accent-color);
}

.property-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.property-features i {
    color: var(--accent-color);
}

.property-highlights p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.property-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.property-amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.property-amenities i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.property-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.property-rating i {
    color: #FFD700;
}

.host-info {
    color: var(--text-color);
    font-weight: 500;
    margin-left: auto;
}

.nearby-activities {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nearby-activities h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin: 0;
}

.nearby-activities span {
    color: var(--text-color);
    font-size: 0.9rem;
}

.booking-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.book-button {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
}

.book-button i {
    font-size: 1.2rem;
}

.book-button.airbnb {
    background: linear-gradient(45deg, #FF385C, #E61E4D);
}

.book-button.airbnb:hover {
    background: linear-gradient(45deg, #E61E4D, #FF385C);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 30, 77, 0.2);
}

.book-button.vrbo {
    background: linear-gradient(45deg, #3A5BA0, #1E47B8);
}

.book-button.vrbo:hover {
    background: linear-gradient(45deg, #1E47B8, #3A5BA0);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(30, 71, 184, 0.2);
}

@media (max-width: 768px) {
    .booking-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .book-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .property-grid {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }

    .property-content {
        padding: 1.5rem;
    }

    .property-amenities {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-features {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .property-footer {
        gap: 1.5rem;
    }

    .host-info {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .property-amenities {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .property-image {
        height: 250px;
    }
}

/* Amenities Section */
.amenities {
    padding: 5rem 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.amenity {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.amenity i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 115, 85, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.about h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-values {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.value {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.value:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.value i {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.value:hover i {
    transform: scale(1.1);
}

.value span {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-content {
        padding: 2rem;
    }

    .about-values {
        gap: 1rem;
    }

    .value {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

.contact .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-item {
        padding: 1.5rem;
    }
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .property-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Headers */
h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Features List */
.features {
    list-style: none;
    padding: 1rem;
}

.features li {
    margin-bottom: 0.5rem;
}

.features i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    border-radius: 5px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-logo {
        height: 30px;
    }

    .footer-logo-img {
        height: 50px;
    }
}
