:root {
  --primary: #8b5e3c;
  --light-bg: #f5f0e6;
  --accent: #3e8e41;
  --text-dark: #333;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Roboto", sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary);
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.site-nav ul.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 20px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.site-nav a {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
}

.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: url("../assets/images/1.jpg") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(139, 94, 60, 0.6),
    rgba(245, 240, 230, 0.6)
  );
}
.hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}
.hero-content .btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  transition: background 0.3s;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}
.hero-content .btn:hover {
  background: #336b2e;
}

section {
  padding: 80px 0;
}
h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.about-section,
.suburb-section,
.nature-section {
  background: var(--light-bg);
}
.about-section p,
.suburb-section p,
.nature-section p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-dark);
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}
.suburb-section p {
  animation-delay: 0.2s;
}
.nature-section p {
  animation-delay: 0.4s;
}
html {
  scroll-behavior: smooth;
}
.cottages-section .cottages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .cottages-section .cottages-grid {
    grid-template-columns: 1fr;
  }
}
.cottage-item {
  text-align: center;
  transition: transform 0.3s;
}
.cottage-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.cottage-item h3 {
  margin: 12px 0 8px;
  color: var(--text-dark);
}
.cottage-item .link {
  font-weight: 500;
  color: var(--accent);
}
.cottage-item:hover {
  transform: translateY(-5px);
}

.parallax-section {
  height: 50vh;
  background: url("../assets/images/2.jpg") center/cover fixed;
  position: relative;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-overlay h2 {
  color: #fff;
  font-size: 2.5rem;
  animation: fadeIn 0.8s forwards;
}

.realtor-section {
  background: #fff;
}
.realtor-content {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.realtor-photo {
  flex: 1 1 300px;
  border-radius: 8px;
}
.realtor-info {
  flex: 1 1 300px;
  animation: fadeIn 0.8s forwards;
  opacity: 0;
  animation-delay: 0.3s;
}
.realtor-info h2 {
  margin-bottom: 12px;
  color: var(--primary);
}
.realtor-info p {
  color: var(--text-dark);
}

.realtor-photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .realtor-photo {
    max-width: 100%;
    margin-bottom: 24px;
  }
}

.advantages-section {
  background: var(--light-bg);
}
.advantages-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 16px;
}
.advantages-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-dark);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}
.advantages-list li:nth-child(1) {
  animation-delay: 0.2s;
}
.advantages-list li:nth-child(2) {
  animation-delay: 0.4s;
}
.advantages-list li:nth-child(3) {
  animation-delay: 0.6s;
}
.advantages-list li:nth-child(4) {
  animation-delay: 0.8s;
}
.advantages-list li:nth-child(5) {
  animation-delay: 1s;
}
.advantages-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
}

.contact-section {
  background: var(--light-bg);
  text-align: center;
}
.contact-section p {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.site-footer {
  background: #fff;
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid #e0dcd6;
}
.site-footer p {
  color: #777;
  font-size: 0.9rem;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .site-nav ul {
    display: none;
  }
  .site-nav ul.show {
    display: flex;
    flex-direction: column;
  }
  .menu-toggle {
    display: flex;
  }
  .cottages-grid,
  .advantages-list {
    gap: 24px;
  }
  .realtor-content {
    flex-direction: column;
  }
}

.timeline-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.timeline-section h2 {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.timeline-list {
  display: flex;
  flex-wrap: nowrap;        
  justify-content: space-between;
  gap: 60px;
  padding: 0 20px;
  list-style: none;
  overflow: hidden;         
  position: relative;
}

.timeline-item {
  position: relative;
  flex: 1 1 200px;          
  min-width: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.timeline-icon img {
  width: 48px;
  height: 48px;
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.1);
}

.timeline-content h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.timeline-item:hover .timeline-content h3 {
  color: var(--accent);
}

.timeline-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.timeline-list::-webkit-scrollbar {
  display: none;
}
.timeline-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


@media (max-width: 768px) {
  .timeline-list {
    gap: 40px;
  }
  .timeline-item {
    flex: 0 0 160px;
  }
  .timeline-icon {
    width: 60px;
    height: 60px;
  }
}

.suburb-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(62, 142, 65, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay p {
  color: #fff;
  font-size: 1rem;
  padding: 8px 12px;
  text-align: center;
}

@media (max-width: 600px) {
  .suburb-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.cottage-detail-gallery {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cottage-detail-gallery img {
  flex: 1 1 48%;
  border-radius: 8px;
  object-fit: cover;
  height: 300px;
  transition: transform 0.3s ease;
}
.cottage-detail-gallery img:hover {
  transform: scale(1.05);
}
.cottage-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 24px 0;
}
.cottage-spec {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.cottage-spec h4 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.1rem;
}
.contact-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  transition: background 0.3s;
  text-decoration: none;
  margin-top: 24px;
}
.contact-btn:hover {
  background: #2f7435;
}

.title_background {
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    rgba(245, 240, 230, 0.8) 100%
  );
  padding: 60px 0;
}
.title_background .container {
  display: flex;
  justify-content: center;
}
.title_background .title {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  animation: slideInDown 0.8s ease forwards;
}

.text_background {
  background: var(--light-bg);
  padding: 40px 0;
}
.text_background .container {
  max-width: 800px;
  margin: 0 auto;
}
.text_background .text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  text-align: justify;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .title_background .title {
    font-size: 1.6rem;
  }
  .text_background .text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.cottage-detail-gallery-det {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.cottage-detail-gallery-det img {
  width: 100%;
  height: auto;        
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .cottage-detail-gallery-det {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  background: var(--light-bg);
  padding: 80px 0;
}
.faq-section h2 {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 40px;
}
.faq-item {
  max-width: 800px;
  margin: 0 auto 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.faq-question {
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.faq-question:hover {
  background: #f0ece6;
}
.faq-question .icon {
  transition: transform 0.3s;
}
.faq-question.active .icon {
  transform: rotate(90deg);
}
.faq-answer {
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-answer p {
  padding: 0 24px 18px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 0.95rem;
    padding: 14px 18px;
  }
  .faq-answer p {
    padding: 0 18px 14px;
  }
}

.contact-section {
  background: var(--light-bg);
  padding: 80px 0;
}
.contact-section h2 {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-info, .contact-map {
  flex: 1 1 320px;
}

.contact-info h3 {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info li {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.contact-info a {
  color: var(--accent);
}
.contact-invite {
  margin-top: 16px;
  font-size: 1rem;
}
.contact-invite .link {
  color: var(--primary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-form .form-row {
    flex-direction: column;
  }
}

.special-offer-section {
  background: linear-gradient(135deg, rgba(62,142,65,0.1), rgba(139,94,60,0.1));
  padding: 80px 0;
  text-align: center;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}
.special-offer-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.special-offer-section .offer-intro {
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.special-offer-section .offer-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: left;
}
.special-offer-section .offer-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-dark);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.special-offer-section .offer-list li:nth-child(1) { animation-delay: 0.2s; }
.special-offer-section .offer-list li:nth-child(2) { animation-delay: 0.4s; }
.special-offer-section .offer-list li:nth-child(3) { animation-delay: 0.6s; }
.special-offer-section .offer-list li:nth-child(4) { animation-delay: 0.8s; }
.special-offer-section .offer-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--accent);
}
.special-offer-section .offer-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1rem;
  transition: background 0.3s;
}
.special-offer-section .offer-cta:hover {
  background: var(--primary);
}

@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);   }
}

@media (max-width: 768px) {
  .special-offer-section h2 {
    font-size: 2rem;
  }
  .special-offer-section .offer-intro {
    font-size: 1rem;
    padding: 0 16px;
  }
}

.about-us-section {
  background: var(--light-bg);
  padding: 80px 0;
}
.about-us-section h2 {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.about-us-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about-us-text {
  flex: 1 1 400px;
  animation: fadeInLeft 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}
.about-us-text p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}
.about-us-values {
  list-style: none;
  padding: 0;
}
.about-us-values li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-dark);
}
.about-us-values li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.about-us-image {
  flex: 1 1 320px;
  text-align: center;
  animation: fadeInRight 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.5s;
}
.about-us-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  object-fit: cover;
}

.about-us-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  gap: 32px;
  margin-top: 60px;
  text-align: center;
}
.about-us-stats .stat h3 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.about-us-stats .stat p {
  font-size: 1rem;
  color: var(--text-dark);
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
  .about-us-grid {
    flex-direction: column;
  }
  .about-us-stats {
    grid-template-columns: 1fr 1fr;
  }
}