/* Snow Fairy Nail & Spa - Custom Styles */

/* Root Color Variables */
:root {
  --primary: #00cbb5;
  --primary-dark: #0098ef;
  --primary-light: #4decbf;
  --text-dark: #0d152b;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --shadow-light: 0 2px 8px rgba(0, 203, 181, 0.1);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.center-align .section-title::after {
  left: 50%;
}

/* Navigation Styles */
.navbar-top {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 4px 12px rgba(0, 203, 181, 0.15);
  height: 70px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-top .nav-wrapper {
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-top .brand-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-top .right li a {
  color: white !important;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0 15px;
}

.navbar-top .right li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.navbar-top .btn-floating {
  background-color: white !important;
  color: var(--primary) !important;
  font-weight: 600;
}

.sidenav {
  background-color: white;
}

.sidenav li a {
  color: var(--text-dark) !important;
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -70px;
  padding-top: 120px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 203, 181, 0.4) 0%, rgba(13, 21, 43, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 0 20px;
  animation: slideUp 0.8s ease-out;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main-content {
  flex: 1;
}

/* Sections */
.section {
  padding: 80px 0;
}

.welcome-section {
  background-color: #ffffff;
}

.services-preview-section {
  background-color: var(--bg-light);
}

.why-choose-section {
  background-color: #ffffff;
}

.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-section .lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 203, 181, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Service Cards */
.service-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: var(--shadow-light);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 203, 181, 0.25);
}

.service-card .card-image {
  height: 200px;
  overflow: hidden;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-card .card-title {
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Circle Icons */
.circle-icon {
  font-size: 3.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 203, 181, 0.1) 0%, rgba(78, 220, 191, 0.1) 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.circle-icon:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(0, 203, 181, 0.2) 0%, rgba(78, 220, 191, 0.2) 100%);
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn.teal {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.btn.teal:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  box-shadow: 0 6px 16px rgba(0, 203, 181, 0.35);
}

.btn-floating {
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.teal-text {
  color: var(--primary) !important;
}

.white-text {
  color: white !important;
}

.grey-text {
  color: var(--text-light) !important;
}

/* Footer */
.page-footer {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  padding: 40px 0 0 0 !important;
}

.page-footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

.page-footer p {
  color: rgba(255, 255, 255, 0.8);
}

.page-footer .grey-text.text-lighten-3 {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.3s ease;
}

.page-footer .grey-text.text-lighten-3:hover {
  color: white !important;
}

.footer-copyright {
  background-color: rgba(13, 21, 43, 0.8);
  padding: 20px 0 !important;
}

.footer-copyright .container {
  color: rgba(255, 255, 255, 0.7);
}

/* Content Sections */
.content-section {
  padding: 60px 0;
}

.content-section h1 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.content-section h2 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content-section h3 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
}

.content-image {
  border-radius: 12px;
  overflow: hidden;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0, 203, 181, 0.15);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Grid Adjustments */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-section {
    height: 400px;
    padding-top: 80px;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 600px) {
  .navbar-top .nav-wrapper {
    padding: 0 10px;
  }

  .navbar-top .brand-logo {
    font-size: 1.2rem;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-section {
    height: 300px;
    padding-top: 70px;
  }

  .section {
    padding: 40px 0;
  }

  .container {
    padding: 0 15px;
  }
}

/* Utility Classes */
.center-align {
  text-align: center;
}

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-40 {
  padding-top: 40px;
}
