/* ============================================
   BED & BREAKFAST TEMPLATE - MAIN STYLES
   ============================================ */

:root {
  /* === 5-COLOR PALETTE === */
  --primary-warm: #D4A574;        /* Warm gold */
  --primary-sage: #8B9A7A;        /* Sage green */
  --primary-cream: #F5F2E8;       /* Cream white */
  --primary-terracotta: #B85C50;  /* Terracotta red */
  --primary-navy: #2C3E50;        /* Deep navy */
  
  /* Light/Dark Shades */
  --warm-light: #E8C9A0;
  --warm-dark: #B8924F;
  --sage-light: #A5B59A;
  --sage-dark: #6B7A5A;
  --cream-light: #FBFAF7;
  --cream-dark: #EAE6DA;
  --terracotta-light: #D07A6F;
  --terracotta-dark: #9A4A3F;
  --navy-light: #34495E;
  --navy-dark: #1A252F;
  
  /* Typography */
  --font-primary: 'Georgia', serif;
  --font-secondary: 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
}

/* === GLOBAL RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--navy-dark);
  background-color: var(--cream-light);
}

/* === TYPOGRAPHY === */
h1 {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.8rem;
}

h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  color: var(--navy-light);
}

/* === HEADER & NAVIGATION === */
.navbar {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--warm-light) 100%);
  border-bottom: 2px solid var(--primary-warm);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-navy) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--navy-dark) !important;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-warm) !important;
}

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--sage-light) 50%, var(--warm-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-warm) 0%, transparent 70%);
  opacity: 0.1;
  transform: rotate(30deg);
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 3rem;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--primary-terracotta);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: var(--font-size-large);
  color: var(--navy-light);
  margin-bottom: 2rem;
}

/* === SECTIONS === */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-terracotta);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--navy-light);
  max-width: 600px;
  margin: 0 auto;
}

/* === ABOUT SECTION === */
.about-section {
  background: var(--cream-light);
}

.about-features {
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-warm);
  margin-bottom: 1rem;
}

/* === SERVICES SECTION === */
.services-section {
  background: linear-gradient(135deg, var(--cream-light) 0%, white 100%);
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.3rem 0;
  color: var(--navy-light);
}

.service-features li::before {
  content: '✓ ';
  color: var(--primary-sage);
  font-weight: bold;
}

/* === TEAM SECTION === */
.team-section {
  background: var(--sage-light);
  background-image: radial-gradient(circle at 20% 80%, var(--warm-light) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, var(--cream-light) 0%, transparent 50%);
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-warm);
}

.team-role {
  color: var(--primary-terracotta);
  font-style: italic;
}

/* === REVIEWS/TESTIMONIALS === */
.reviews-section {
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--warm-light) 100%);
}

.swiper-container {
  padding-bottom: 50px;
  position: relative;
}

.review-slide {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  height: auto;
}

.review-text {
  font-style: italic;
  font-size: var(--font-size-large);
  color: var(--navy-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.review-author {
  font-weight: 600;
  color: var(--primary-terracotta);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  background: var(--primary-warm);
  border-radius: 50%;
  color: white !important;
  font-size: 18px;
  font-weight: bold;
  margin-top: -22px;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--warm-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--navy-light);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-warm);
  opacity: 1;
  transform: scale(1.2);
}

/* === FAQ SECTION === */
.faq-section {
  background: white;
}

.faq-item {
  background: var(--cream-light);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: var(--primary-sage);
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--sage-dark);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--navy-light);
  display: none;
}

/* === GALLERY === */
.gallery-section {
  background: var(--cream-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === CONTACT SECTION === */
.contact-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  color: white;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-warm);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-warm) 0%, var(--warm-dark) 100%);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

.contact-info {
  color: var(--cream-light);
}

.contact-info i {
  color: var(--primary-warm);
  margin-right: 10px;
}

/* === FOOTER === */
.footer {
  background: var(--navy-dark);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-warm);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-warm);
}

.footer-policies a {
  display: block;
  margin-bottom: 0.5rem;
}

/* === BREADCRUMBS === */
.breadcrumb-section {
  background: var(--cream-dark);
  padding: 1rem 0;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* === UTILITIES === */
.text-warm { color: var(--primary-warm) !important; }
.text-sage { color: var(--primary-sage) !important; }
.text-terracotta { color: var(--primary-terracotta) !important; }
.bg-warm { background-color: var(--primary-warm) !important; }
.bg-sage { background-color: var(--primary-sage) !important; }
.bg-cream { background-color: var(--primary-cream) !important; }

/* === ANIMATIONS === */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .service-card,
  .team-member,
  .feature-item {
    animation: fadeInUp 0.6s ease forwards;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === PRICE PLANS === */
.priceplan-section {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--warm-light) 100%);
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

/* === RESPONSIVE MEDIA QUERIES === */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .service-card,
  .team-member {
    margin-bottom: 2rem;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
} 