/* style.css - Mylla Lima Studio de Beleza Custom Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Parisienne&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --primary-gold: #c5a880;
  --primary-gold-hover: #b4956c;
  --dark-charcoal: #121212;
  --light-cream: #faf7f2;
  --card-bg: rgba(255, 255, 255, 0.85);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--font-body);
  background-color: var(--light-cream);
  color: #333333;
  overflow-x: hidden;
  line-height: 1.7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.text-gold {
  color: var(--primary-gold);
}

.bg-dark-charcoal {
  background-color: var(--dark-charcoal);
  color: #ffffff;
}

/* Navbar */
.navbar-custom {
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  transition: var(--transition-smooth);
}

.navbar-custom .navbar-brand {
  font-family: 'Parisienne', cursive;
  font-size: 2.3rem;
  font-weight: 400;
  color: var(--primary-gold) !important;
  letter-spacing: 1px;
}

.navbar-custom .navbar-logo {
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  background-color: var(--light-cream);
  transition: var(--transition-smooth);
}

.navbar-custom .navbar-brand:hover .navbar-logo {
  transform: rotate(360deg);
  border-color: #ffffff;
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
}

.navbar-custom .nav-link {
  color: #e5e5e5 !important;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0 10px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary-gold) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 550px;
  background: url('../img/banner.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 0.8) 0%,
    rgba(18, 18, 18, 0.5) 50%,
    rgba(18, 18, 18, 0.9) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--primary-gold);
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s ease-out;
}

.btn-gold {
  background-color: var(--primary-gold);
  color: #121212;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid var(--primary-gold);
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.3);
  transform: translateY(-3px);
}

/* Sections Base Styling */
.section-padding {
  padding: 100px 0;
}

.section-title {
  position: relative;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--primary-gold);
  margin: 15px auto 0;
}

/* About Us Section */
.about-section {
  background-color: var(--light-cream);
}

.about-text {
  font-size: 1.05rem;
  color: #555555;
  margin-bottom: 20px;
}

.about-badge {
  display: inline-block;
  padding: 6px 15px;
  background-color: rgba(197, 168, 128, 0.15);
  color: #8c734e;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  background-color: #ffffff;
}

.service-card {
  position: relative;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: var(--card-bg);
  transition: var(--transition-smooth);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(197, 168, 128, 0.2);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-body {
  padding: 25px;
  text-align: center;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--dark-charcoal);
  transition: var(--transition-smooth);
}

.service-card:hover .service-title {
  color: var(--primary-gold);
}

/* Brands Section */
.brands-section {
  background-color: var(--light-cream);
  border-top: 1px solid rgba(197, 168, 128, 0.1);
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

.brand-card {
  background-color: #ffffff;
  border: 1px solid rgba(197, 168, 128, 0.1);
  border-radius: 10px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.brand-card:hover {
  border-color: var(--primary-gold);
  transform: scale(1.02);
}

/* Contact Section */
.contact-section {
  background-color: var(--dark-charcoal);
  color: #ffffff;
  position: relative;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(5px);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-gold);
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: #a5a5a5;
}

.contact-info-text p {
  font-size: 1.15rem;
  margin-bottom: 0;
  font-weight: 500;
}

.contact-info-text a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-info-text a:hover {
  color: var(--primary-gold);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.35);
}

/* Footer */
footer {
  background-color: #0d0d0d;
  color: #777777;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

footer a {
  color: #999999;
  text-decoration: none;
  transition: var(--transition-smooth);
}

footer a:hover {
  color: var(--primary-gold);
}

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

/* Mobile Tweaks */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
}
