/* Brisbane Luxury Theme Stylesheet */
/* Elegant styling for luxury real estate */

/* ========================================
   Base Theme Styles
   ======================================== */

.brisbane-theme {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Typography
   ======================================== */

.brisbane-theme h1,
.brisbane-theme h2,
.brisbane-theme h3,
.brisbane-theme h4,
.brisbane-theme h5,
.brisbane-theme h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brisbane-theme .font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ========================================
   Luxury Buttons
   ======================================== */

.brisbane-theme .btn-luxury {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background-color: #1a2744;
  color: #faf8f5;
  border: none;
  transition: all 0.3s ease;
}

.brisbane-theme .btn-luxury:hover {
  background-color: #c9a962;
  color: #1a2744;
}

.brisbane-theme .btn-luxury-outline {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background-color: transparent;
  color: #1a2744;
  border: 1px solid #1a2744;
  transition: all 0.3s ease;
}

.brisbane-theme .btn-luxury-outline:hover {
  background-color: #1a2744;
  color: #faf8f5;
}

/* ========================================
   Cards
   ======================================== */

.brisbane-theme .card-luxury {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(26, 39, 68, 0.08);
  transition: all 0.4s ease;
  border: none;
}

.brisbane-theme .card-luxury:hover {
  box-shadow: 0 8px 30px rgba(26, 39, 68, 0.12);
  transform: translateY(-4px);
}

/* ========================================
   Form Elements
   ======================================== */

.brisbane-theme input[type="text"],
.brisbane-theme input[type="email"],
.brisbane-theme input[type="tel"],
.brisbane-theme input[type="password"],
.brisbane-theme input[type="number"],
.brisbane-theme textarea,
.brisbane-theme select {
  border: 1px solid rgba(26, 39, 68, 0.2);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
  background-color: #ffffff;
}

.brisbane-theme input:focus,
.brisbane-theme textarea:focus,
.brisbane-theme select:focus {
  border-color: #c9a962;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

/* ========================================
   Property Cards
   ======================================== */

.brisbane-theme .property-card {
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 39, 68, 0.08);
  transition: all 0.4s ease;
}

.brisbane-theme .property-card:hover {
  box-shadow: 0 8px 30px rgba(26, 39, 68, 0.12);
  transform: translateY(-4px);
}

.brisbane-theme .property-card .property-image {
  position: relative;
  overflow: hidden;
}

.brisbane-theme .property-card .property-image img {
  transition: transform 0.6s ease;
}

.brisbane-theme .property-card:hover .property-image img {
  transform: scale(1.05);
}

.brisbane-theme .property-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a2744;
}

.brisbane-theme .property-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: #c9a962;
  color: #1a2744;
}

/* ========================================
   Hero Section
   ======================================== */

.brisbane-theme .hero-luxury {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brisbane-theme .hero-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 39, 68, 0.5) 0%,
    rgba(26, 39, 68, 0.7) 100%
  );
  z-index: 1;
}

.brisbane-theme .hero-luxury .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #faf8f5;
}

.brisbane-theme .hero-luxury h1 {
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .brisbane-theme .hero-luxury h1 {
    font-size: 2.25rem;
  }
}

/* ========================================
   Section Styling
   ======================================== */

.brisbane-theme .section-luxury {
  padding: 5rem 0;
}

.brisbane-theme .section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #1a2744;
  margin-bottom: 1rem;
}

.brisbane-theme .section-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c9a962;
  margin-bottom: 0.5rem;
}

/* ========================================
   Dividers
   ======================================== */

.brisbane-theme .divider-gold {
  width: 60px;
  height: 2px;
  background-color: #c9a962;
  margin: 1.5rem auto;
}

.brisbane-theme .divider-gold-left {
  width: 60px;
  height: 2px;
  background-color: #c9a962;
  margin: 1.5rem 0;
}

/* ========================================
   Animations
   ======================================== */

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

.brisbane-theme .animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.brisbane-theme .shimmer {
  background: linear-gradient(
    90deg,
    rgba(201, 169, 98, 0) 0%,
    rgba(201, 169, 98, 0.3) 50%,
    rgba(201, 169, 98, 0) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* ========================================
   Utility Classes
   ======================================== */

.brisbane-theme .text-luxury-navy {
  color: #1a2744;
}

.brisbane-theme .text-luxury-gold {
  color: #c9a962;
}

.brisbane-theme .text-luxury-cream {
  color: #faf8f5;
}

.brisbane-theme .text-luxury-cream\/80 {
  color: rgba(250, 248, 245, 0.8);
}

.brisbane-theme .text-luxury-cream\/70 {
  color: rgba(250, 248, 245, 0.7);
}

.brisbane-theme .bg-luxury-navy {
  background-color: #1a2744;
}

.brisbane-theme .bg-luxury-cream {
  background-color: #faf8f5;
}

.brisbane-theme .bg-luxury-pearl {
  background-color: #f5f3f0;
}

.brisbane-theme .bg-luxury-gold {
  background-color: #c9a962;
}

.brisbane-theme .border-luxury-gold {
  border-color: #c9a962;
}

.brisbane-theme .border-luxury-gold\/20 {
  border-color: rgba(201, 169, 98, 0.2);
}

.brisbane-theme .border-luxury-navy\/5 {
  border-color: rgba(26, 39, 68, 0.05);
}

/* Global utility classes for Tailwind JIT fallback - ensure luxury colors always apply */
.bg-luxury-navy {
  background-color: #1a2744 !important;
}

.bg-luxury-gold {
  background-color: #c9a962 !important;
}

.bg-luxury-cream {
  background-color: #faf8f5 !important;
}

.text-luxury-navy {
  color: #1a2744 !important;
}

.text-luxury-gold {
  color: #c9a962 !important;
}

.text-luxury-cream {
  color: #faf8f5 !important;
}

.text-luxury-cream\/80 {
  color: rgba(250, 248, 245, 0.8) !important;
}

.text-luxury-cream\/70 {
  color: rgba(250, 248, 245, 0.7) !important;
}

.border-luxury-gold\/20 {
  border-color: rgba(201, 169, 98, 0.2) !important;
}

.border-luxury-navy\/5 {
  border-color: rgba(26, 39, 68, 0.05) !important;
}

/* ========================================
   Landing Page Styles
   ======================================== */

.brisbane-theme .brisbane-landing .prose {
  max-width: none;
}

/* ========================================
   Hero Section (Liquid Template)
   ======================================== */

.brisbane-theme .hero-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
}

.brisbane-theme .hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.brisbane-theme .hero-bg-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 39, 68, 0.7) 0%,
    rgba(26, 39, 68, 0.5) 50%,
    rgba(26, 39, 68, 0.7) 100%
  );
  z-index: 2;
}

.brisbane-theme .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brisbane-theme .hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2744 0%, #2d3a52 100%);
}

.brisbane-theme .hero-content-wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.brisbane-theme .hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #faf8f5;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.brisbane-theme .hero-subtitle {
  font-size: 1rem;
  color: #faf8f5;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.brisbane-theme .hero-subtitle ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brisbane-theme .hero-subtitle li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.brisbane-theme .hero-subtitle li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #c9a962;
  border-radius: 50%;
  margin-right: 1rem;
  box-shadow: 0 0 8px rgba(201, 169, 98, 0.6);
}

.brisbane-theme .hero-subtitle i {
  color: #c9a962;
  margin-right: 0.75rem;
  filter: drop-shadow(0 0 4px rgba(201, 169, 98, 0.5));
}

@media (max-width: 768px) {
  .brisbane-theme .hero-section {
    min-height: 60vh;
  }

  .brisbane-theme .hero-title {
    font-size: 2.25rem;
  }

  .brisbane-theme .hero-subtitle {
    font-size: 0.875rem;
  }
}

/* ========================================
   PWB Hero Sections (Liquid page parts)
   ======================================== */
.brisbane-theme .pwb-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brisbane-theme .pwb-hero--centered {
  text-align: center;
}

.brisbane-theme .pwb-hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.brisbane-theme .pwb-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(28, 31, 36, 0.5) 0%, rgba(28, 31, 36, 0.35) 100%);
  z-index: 1;
}

.brisbane-theme .pwb-hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.brisbane-theme .pwb-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brisbane-theme .pwb-hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0 0 2rem 0;
}

@media (max-width: 768px) {
  .brisbane-theme .pwb-hero__title {
    font-size: 2.5rem;
  }
}

/* ========================================
   Services Section (Liquid Template)
   ======================================== */

.brisbane-theme .services-section-wrapper {
  background-color: #faf8f5;
  padding: 5rem 0;
}

.brisbane-theme .services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Wider container on very large screens */
@media (min-width: 1600px) {
  .brisbane-theme .services-container {
    max-width: 1600px;
  }
}

.brisbane-theme .service-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(26, 39, 68, 0.08);
  transition: all 0.4s ease;
}

.brisbane-theme .service-card:hover {
  box-shadow: 0 8px 30px rgba(26, 39, 68, 0.12);
  transform: translateY(-4px);
}

.brisbane-theme .service-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f3f0 0%, #faf8f5 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.brisbane-theme .service-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #c9a962 0%, #d4b87a 100%);
}

.brisbane-theme .service-icon-wrapper i {
  font-size: 1.75rem;
  color: #c9a962;
  transition: color 0.3s ease;
}

.brisbane-theme .service-card:hover .service-icon-wrapper i {
  color: #1a2744;
}

.brisbane-theme .service-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #1a2744;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.brisbane-theme .service-card .service-content {
  font-size: 0.875rem;
  color: rgba(45, 45, 45, 0.7);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .brisbane-theme .services-section-wrapper {
    padding: 3rem 0;
  }
}

/* ========================================
   Legacy Service Content Styles
   ======================================== */

/* Services icons in content area */
.brisbane-theme .service-content i,
.brisbane-theme .service-content .fa,
.brisbane-theme .service-content [class^="fa-"] {
  font-size: 2.5rem;
  color: #c9a962;
  display: block;
  margin-bottom: 1rem;
}

.brisbane-theme .service-content h3,
.brisbane-theme .service-content h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: #1a2744;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.brisbane-theme .service-content p {
  font-size: 0.875rem;
  color: rgba(45, 45, 45, 0.7);
  line-height: 1.7;
}

/* Line clamp utility for property titles */
.brisbane-theme .line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.brisbane-theme .line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Aspect ratio for property images */
.brisbane-theme .aspect-\[4\/3\] {
  aspect-ratio: 4 / 3;
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 768px) {
  .brisbane-theme .section-luxury {
    padding: 3rem 0;
  }

  .brisbane-theme .section-title {
    font-size: 1.875rem;
  }

  .brisbane-theme .service-content i,
  .brisbane-theme .service-content .fa {
    font-size: 2rem;
  }
}
