/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  @font-face {
      font-family: 'Westonia Regular';
      font-style: normal;
      font-weight: normal;
      src: local('Westonia Regular'), url('westonia.woff2') format('woff');
  }

  body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #3A5F45;
    background: #f6f0e7;
    overflow-x: hidden;
  }

  /* Navigation */
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(246, 240, 231, 0.95);

    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(58, 95, 69, 0.1);
  }

  .nav-container.scrolled {
    background: rgba(246, 240, 231, 0.98);
    box-shadow: 0 2px 20px rgba(58, 95, 69, 0.1);
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3A5F45;
    text-decoration: none;
  }

  .logo svg {
    margin-right: 10px;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
  }

  .nav-links a {
    text-decoration: none;
    color: #3A5F45;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
  }

  .nav-links a:hover {
    color: #B87333;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B87333;
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .cta-nav {
    background: #3A5F45;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
  }

  .cta-nav:hover {
    background: #B87333;
    transform: translateY(-2px);
  }

  /* Hero Section */
  .hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(58, 95, 69, 0.8), rgba(184, 115, 51, 0.6)), url('images/hero_bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 3rem;
  }

  .hero-content {
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }

  .hero h1 span {
    display: block;
    font-size: 3rem;
    position: relative;
    top: -20px;
  }

  .hero img {
    margin-bottom: 4rem;
    width: 100%;
  }

  .hero .subtitle {
    font-family: 'Westonia Regular', cursive;
    font-size: 2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
  }

  .hero-cta {
    display: inline-block;
    background: white;
    color: #3A5F45;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #B87333;
    color: white;
  }

  /* Animated reveal sections */
  .reveal-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }

  .reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Content sections */
  .section {
    padding: 0 2rem 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #3A5F45;
    margin-bottom: 1rem;
  }

  .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Feature grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
  }

  .features-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
  }

  .feature-card {
    background: white;
    color: #712b31;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(58, 95, 69, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(58, 95, 69, 0.1);
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 95, 69, 0.15);
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    background: #712b31;
    border-radius: 50% 50% 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    font-size: 2rem;
    color: white;
  }

  .feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Property showcase */
  .property-showcase {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(58, 95, 69, 0.1);
    margin: 4rem 0;
  }

  .property-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
  }

  .property-info {
    padding: 3rem;
  }

  .property-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #3A5F45;
    margin-bottom: 1rem;
  }

  .property-info .subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5rem;
    color: #B87333;
    margin-bottom: 1.5rem;
  }

  .property-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #666;
  }

  .property-features {
    list-style: none;
    margin-bottom: 2rem;
  }

  .property-features li {
    padding: 0.5rem 0;
    color: #3A5F45;
  }

  .property-features li::before {
    content: '✓';
    color: #B87333;
    font-weight: bold;
    margin-right: 0.5rem;
  }

  .property-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    margin-right: 3rem;
    border-radius: 50% 50% 0 0;
    border-color: white;
    border-style: solid;
    position: relative;
  }

  .property-image::after {
    content: '';
    position: absolute;
    height: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 16px 32px rgba(58, 95, 69, 0.2);
  }

  /* Testimonials */
  .testimonials {
    background: #3A5F45;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
  }

  .testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 3rem;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
  }

  .testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .testimonial-author {
    font-weight: 600;
    color: #B87333;
  }

  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, #B87333, #3A5F45);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
  }

  .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: white;
    color: #3A5F45;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }

  .btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-secondary:hover {
    background: white;
    color: #3A5F45;
  }

  /* Footer */
  footer {
    background: #3A5F45;
    color: white;
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
  }

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

  .footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #B87333;
  }

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

  .footer-section a:hover {
    color: #B87333;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Mobile responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }

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

    .hero h1 span {
      font-size: 2rem;
      top: -10px;
    }

    .hero .subtitle {
      font-size: 1.5rem;
    }

    .section-header h2 {
      font-size: 2rem;
    }

    .features-grid, .features-grid-3 {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .property-content {
      grid-template-columns: 1fr;
    }

    .property-image {
      order: -1;
      height: 300px;
      margin: 3rem 3rem 0;
    }

    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }

    .testimonial-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 480px) {
    .section {
      padding: 4rem 1rem;
    }

    .hero-content {
      padding: 0 1rem;
    }

    .property-info {
      padding: 2rem;
    }

    .testimonials,
    .cta-section {
      padding: 4rem 1rem;
    }
}
