/* Eastwood Estates Luxury Styling */
:root {
  --primary-color: #9A8A78; /* Warm beige/taupe */
  --secondary-color: #3C3C3C; /* Dark gray */
  --accent-color: #D4C8B0; /* Light beige */
  --text-color: #333333;
  --light-color: #F5F5F0; /* Off-white */
  --dark-color: #222222;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

/* Texture backgrounds */
.texture-parchment {
  background-image: url('/assets/textures/cream-parchment-paper-texture-with-subtle-gold-fi.png');
  background-size: cover;
  color: var(--text-color);
}

.texture-navy-damask {
  background-image: url('/assets/textures/elegant-heritage-pattern-for-luxury-brand-damask.png');
  background-size: 400px 400px;
  color: var(--light-color);
}

.texture-navy-linen {
  background-image: url('/assets/textures/navy-blue-linen-fabric-texture-with-gold-thread-a.png');
  background-size: cover;
  color: var(--light-color);
}

.texture-vintage-paper {
  background-image: url('/assets/textures/subtly-aged-vintage-paper-texture-with-gold-leaf.png');
  background-size: cover;
  color: var(--text-color);
}

/* Decorative elements */
.gold-corners {
  position: relative;
  padding: 20px;
}

.gold-corners::before, .gold-corners::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.gold-corners::before {
  top: -10px;
  left: -10px;
  background-image: url('/assets/decorative/frames/gold-ornate-corner-frame-element-filigree-design.png');
  transform: rotate(0deg);
}

.gold-corners::after {
  bottom: -10px;
  right: -10px;
  background-image: url('/assets/decorative/frames/gold-ornate-corner-frame-element-filigree-design.png');
  transform: rotate(180deg);
}

.gold-divider {
  position: relative;
  text-align: center;
  margin: 2rem 0;
}

.gold-divider::before {
  content: '';
  display: block;
  width: 200px;
  height: 30px;
  margin: 0 auto;
  background-image: url('/assets/decorative/dividers/elegant-gold-divider-element-with-laurel-motif-lu.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.gold-seal {
  position: relative;
}

.gold-seal::after {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: -15px;
  right: -15px;
  background-image: url('/assets/decorative/badges/gold-wax-seal-with-ornate-monogram-ee-for-eastwoo.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(15deg);
  z-index: 10;
}

.hero-overlay {
  position: relative;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/textures/subtle-gold-geometric-overlay-pattern-for-hero-im.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.3;
}

.wedding-badge {
  position: relative;
}

.wedding-badge::before {
  content: '';
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  background-image: url('/assets/decorative/badges/wedding-venue-elegant-badge-with-floral-elements.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.price-tag-top-right {
  position: relative;
}

.price-tag-top-right::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 140px;
  background-image: url('/assets/decorative/pricing/luxury-real-estate-pricing-tag-design-with-gold-f.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  top: -10px;
  right: -10px;
}

.key-icon-before {
  position: relative;
  padding-left: 50px;
}

.key-icon-before::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('/assets/decorative/pricing/gold-key-icon-for-luxury-property-website-photore.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 60px;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin-left: 2rem;
}

.main-nav a {
  color: var(--secondary-color);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('/assets/images/ct-villa/exterior.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Welcome Section */
.welcome-section {
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

.welcome-text {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

.logo-container {
  margin: 2rem auto;
}

.logo-image {
  max-width: 200px;
}

/* Properties Section */
.properties-section {
  padding: 4rem 0;
  background-color: white;
}

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

.property-card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.property-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.property-content {
  padding: 1.5rem;
}

.property-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.property-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.property-description {
  margin-bottom: 1rem;
  color: var(--text-color);
}

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

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

.property-actions {
  display: flex;
  gap: 1rem;
}

/* Wedding Section */
.wedding-section {
  padding: 4rem 0;
}

.wedding-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.wedding-packages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.wedding-package {
  padding: 2rem;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.wedding-package.recommended {
  position: relative;
  z-index: 2;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wedding-package.recommended:hover {
  transform: scale(1.05) translateY(-5px);
}

.package-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.package-description {
  margin-bottom: 1.5rem;
}

.package-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
}

.package-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background-color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.contact-text {
  font-size: 1.2rem;
  line-height: 1.8;
}

.contact-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.contact-image {
  border-radius: 5px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
}

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

.testimonial {
  padding: 2rem;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: -20px;
  left: -15px;
  opacity: 0.5;
}

.testimonial-author {
  font-weight: 500;
  color: var(--primary-color);
  text-align: right;
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
}

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

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-logo {
  max-width: 150px;
  margin-top: 1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .properties-grid,
  .wedding-packages,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .site-header {
    flex-direction: column;
    padding: 1rem;
  }
  
  .main-nav ul {
    margin-top: 1rem;
  }
  
  .main-nav li {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .properties-grid,
  .wedding-packages,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
