/* ===== COSTUME RENTAL TEMPLATE - MAIN STYLES ===== */

/* Color Palette - 5 Primary Colors + Shades */
:root {
  /* Primary Colors */
  --primary-burgundy: #8B1538;
  --primary-gold: #D4AF37;
  --primary-deep-purple: #4A148C;
  --primary-emerald: #00695C;
  --primary-charcoal: #2C2C2C;
  
  /* Light Shades */
  --light-burgundy: #B54B6B;
  --light-gold: #F4D03F;
  --light-purple: #7B1FA2;
  --light-emerald: #26A69A;
  --light-charcoal: #5D5D5D;
  
  /* Dark Shades */
  --dark-burgundy: #5D0F26;
  --dark-gold: #B7950B;
  --dark-purple: #311B92;
  --dark-emerald: #004D40;
  --dark-charcoal: #1A1A1A;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-burgundy), var(--primary-gold));
  --gradient-secondary: linear-gradient(135deg, var(--primary-deep-purple), var(--primary-emerald));
  --gradient-accent: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #000000;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-800: #495057;
  --gray-900: #212529;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--white);
  font-size: 1rem;
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  max-width: none;
}

/* Header Styles */
.navbar {
  background: var(--gradient-primary) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-gold) !important;
  transform: translateY(-1px);
}

.navbar-toggler {
  border-color: var(--white);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-secondary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 30%;
  left: 5%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-deep-purple);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--primary-emerald);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* About Section */
.about-section {
  background: var(--gray-100);
}

.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 1rem 0;
}

.service-features {
  text-align: left;
  margin: 1.5rem 0;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-emerald);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Team Section */
.team-section {
  background: var(--gray-100);
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--light-gold);
}

.team-role {
  color: var(--primary-emerald);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Reviews Section */
.reviews-section {
  background: var(--primary-deep-purple);
  color: var(--white);
}

.review-item {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: 600;
  color: var(--light-gold);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--gray-100);
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 2rem;
}

.price-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.price-card.featured {
  border: 3px solid var(--primary-gold);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  margin: 1.5rem 0;
}

/* Contact Form */
.contact-section {
  background: var(--white);
}

.contact-form {
  background: var(--gray-100);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-control {
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-burgundy);
  box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.25);
}

.contact-info {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 3rem;
  border-radius: 15px;
}

.contact-info h4 {
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-info i {
  margin-right: 1rem;
  color: var(--light-gold);
}

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 21, 56, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-burgundy);
  color: var(--primary-burgundy);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  background: var(--gray-100);
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-question::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
  color: var(--gray-800);
}

/* Blog Section */
.blog-section {
  background: var(--white);
}

.blog-item {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-deep-purple);
}

/* Gallery Section */
.gallery-section {
  background: var(--gray-100);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--dark-charcoal);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-gold);
  margin-bottom: 1.5rem;
}

.footer p, .footer a {
  color: var(--gray-300);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer a:hover {
  color: var(--light-gold);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet-active {
  background: var(--primary-burgundy);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-burgundy);
}

/* Process/Timeline Styles */
.process-section, .timeline-section {
  background: var(--white);
}

.process-item, .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--gray-100);
  border-radius: 15px;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: 2rem;
  flex-shrink: 0;
}

/* Case Study Section */
.casestudy-section {
  background: var(--gray-100);
}

.casestudy-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.casestudy-item:hover {
  transform: translateY(-5px);
}

/* Career Section */
.career-section {
  background: var(--white);
}

.career-item {
  background: var(--gray-100);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-burgundy);
}

.career-role {
  color: var(--primary-emerald);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--primary-deep-purple);
  color: var(--white);
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--light-gold);
  margin-bottom: 1.5rem;
} 