/* Suburban Tenant Roadshows - Main CSS */

/* Root Variables */
:root {
  --primary-color-1: #2c5f3d;
  --primary-color-2: #f4a460;
  --primary-color-3: #8b4513;
  --primary-color-4: #d2691e;
  --primary-color-5: #4b8b3b;
  
  --primary-color-1-light: #4a8260;
  --primary-color-1-dark: #1a3a25;
  --primary-color-2-light: #f7c693;
  --primary-color-2-dark: #d08030;
  --primary-color-3-light: #a66832;
  --primary-color-3-dark: #5c2e0c;
  --primary-color-4-light: #e09050;
  --primary-color-4-dark: #b85715;
  --primary-color-5-light: #6fb55f;
  --primary-color-5-dark: #2f5926;
  
  --text-dark: #2c2c2c;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Georgia', serif;
  
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-1);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color-1-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-color-1) 0%, var(--primary-color-1-dark) 100%);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--text-light) !important;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255,255,255,0.1);
  border-radius: 4px;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color-2-light) 0%, var(--primary-color-2) 50%, var(--primary-color-2-dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(-10%, -10%) rotate(0deg); }
  50% { transform: translate(10%, 10%) rotate(180deg); }
}

#hero-title-1 {
  font-size: 2.5rem;
  color: var(--primary-color-1-dark);
  margin-bottom: 1rem;
}

#hero-subtitle-1 {
  font-size: 1.25rem;
  color: var(--primary-color-3-dark);
  margin-bottom: 1rem;
}

#hero-desc-1 {
  font-size: 1rem;
  color: var(--text-dark);
  max-width: 600px;
}

/* Section Base Styles */
section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background-color: #f5f5f5;
}

.section-title {
  font-size: 2rem;
  color: var(--primary-color-1);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary-color-3);
  text-align: center;
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-dark);
}

/* About Section */
#about {
  background: linear-gradient(to bottom, #ffffff 0%, var(--bg-light) 100%);
}

.feature-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 1rem;
}

/* Services Section */
.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
    overflow-x: hidden;
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-price {
  font-size: 1.75rem;
  color: var(--primary-color-4);
  font-weight: bold;
  margin: 1rem 0;
}

/* Team Section */
.team-member {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-member:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member-info {
  padding: 1.5rem;
}

/* Testimonials */
.testimonial-slide {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color-1);
}

/* Gallery */
#gallery {
  padding: 2rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* FAQ Section */
.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  background: linear-gradient(to right, var(--primary-color-5-light), var(--primary-color-5));
  color: white;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  background: linear-gradient(to right, var(--primary-color-5), var(--primary-color-5-dark));
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  background: #f9f9f9;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Contact Form */
#contact {
  background: linear-gradient(135deg, var(--primary-color-1-light) 0%, var(--primary-color-1) 100%);
  color: white;
}

#contact .section-title,
#contact .section-subtitle,
#contact .section-desc {
  color: white;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary-color-2);
  box-shadow: 0 0 0 0.2rem rgba(244, 164, 96, 0.25);
}

.contact-info {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--primary-color-2);
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

footer a {
  color: var(--primary-color-2);
}

footer a:hover {
  color: var(--primary-color-2-light);
}

#site-copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: 2rem;
  display: block;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

/* Blog Grid */
#blog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-body {
    overflow-x: hidden;
  padding: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb img {
  height: 30px;
  width: auto;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color-2) 0%, var(--primary-color-2-dark) 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-color-2-light) 0%, var(--primary-color-2) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Swiper Customization */
.swiper {
  padding: 2rem 0;
}

.swiper-pagination-bullet {
  background: var(--primary-color-2);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color-1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Additional Page Styles */
.additional-section {
  padding: 3rem 0;
  background: white;
}

.additional-section:nth-child(even) {
  background: var(--bg-light);
}

.element-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.element-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.element-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color-1-light) 0%, var(--primary-color-1) 50%, var(--primary-color-1-dark) 100%);
} 