/* Stella Style - Custom Brand Design
   Where Every Style Shines
   
   Brand Colors:
   - Primary: Deep Rose Gold (#C89595)
   - Secondary: Soft Cream (#F8F6F0)
   - Accent: Charcoal Gray (#4A4A4A)
   - Highlight: Blush Pink (#E8C4C4)
   - Neutral: Pure White (#FFFFFF), Light Gray (#F5F5F5)
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;500;600&family=Dancing+Script:wght@400;500;600&display=swap');

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.6;
  color: #4A4A4A;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #4A4A4A;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 400;
}

.accent-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: #C89595;
  font-weight: 500;
}

/* Header */
.header {
  background: linear-gradient(135deg, #F8F6F0 0%, #FFFFFF 100%);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #C89595;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #4A4A4A;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #C89595;
}

.cta-button {
  background: linear-gradient(135deg, #C89595, #E8C4C4);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(200, 149, 149, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 149, 149, 0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #F8F6F0 0%, #FFFFFF 50%, #F8F6F0 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23E8C4C4' fill-opacity='0.05'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20s-20-8.954-20-20 8.954-20 20-20 20 8.954 20 20zm10 0c0-5.523-4.477-10-10-10s-10 4.477-10 10 4.477 10 10 10 10-4.477 10-10z'/%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(0px) rotate(0deg); }
  50% { transform: translateX(30px) rotate(180deg); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #4A4A4A;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-highlight {
  color: #C89595;
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C89595, #E8C4C4);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4A4A4A;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #C89595;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #4A4A4A;
  font-weight: 500;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, #C89595, #E8C4C4);
  border-radius: 20px;
  z-index: -1;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Rating Badge */
.rating-badge {
  position: absolute;
  top: -30px;
  right: -30px;
  background: white;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.rating-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.rating-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A4A4A;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: #F8F6F0;
}

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

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

.section-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: #C89595;
  margin-bottom: 0.5rem;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #E8C4C4;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-title {
  font-size: 1.5rem;
  color: #4A4A4A;
  margin-bottom: 1rem;
}

.service-description {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #C89595;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: white;
}

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

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

.testimonial-card {
  background: #F8F6F0;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  border-left: 4px solid #C89595;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #E8C4C4;
  position: absolute;
  top: -10px;
  left: 20px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #4A4A4A;
}

.testimonial-author {
  font-weight: 600;
  color: #C89595;
}

.testimonial-rating {
  color: #FFD700;
  margin-bottom: 1rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: linear-gradient(135deg, #F8F6F0 0%, #FFFFFF 100%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-content h3 {
  color: #C89595;
  margin-bottom: 2rem;
}

.about-features {
  list-style: none;
  margin: 2rem 0;
}

.about-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-features li::before {
  content: '✓';
  color: #C89595;
  font-weight: 700;
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: #4A4A4A;
  color: white;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  color: #C89595;
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.contact-details li::before {
  content: '📍';
  margin-right: 1rem;
  font-size: 1.2rem;
}

.contact-details li:nth-child(2)::before {
  content: '📞';
}

.contact-details li:nth-child(3)::before {
  content: '⏰';
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #C89595;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C89595;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.submit-button {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #C89595, #E8C4C4);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 149, 149, 0.4);
}

/* Footer */
.footer {
  background: #2A2A2A;
  color: #F8F6F0;
  padding: 2rem 0;
  text-align: center;
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #C89595;
  margin-bottom: 1rem;
}

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

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-container,
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }

  .hero {
    padding: 6rem 0 3rem;
  }

  .nav-links {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    justify-content: center;
  }

  .rating-badge {
    position: static;
    margin: 1rem auto 0;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .hero-container,
  .services-container,
  .testimonials-container,
  .about-container,
  .contact-container,
  .footer-container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Smooth scrolling enhancements */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* Header Contact Info */
.header-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-display {
  font-weight: 600;
  color: #4A4A4A;
  font-size: 1rem;
}

/* Updated Contact Section */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-details {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-details li {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.cta-button-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.trust-message {
  font-weight: 600;
  color: #E8C4C4;
  margin-bottom: 1rem;
}

/* Focus states for accessibility */
.cta-button:focus,
.submit-button:focus {
  outline: 3px solid #C89595;
  outline-offset: 2px;
}

/* Mobile adjustments for new layout */
@media (max-width: 768px) {
  .header-contact {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .phone-display {
    font-size: 0.9rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}