/* Snow Fairy Nail & Spa - Luxury Design System */
/* Using Bulma as base framework, with custom elegant styling */

:root {
  /* Primary Palette - Soft Luxury */
  --cream-50: #FFFEF9;
  --cream-100: #FAF9F6;
  --cream-200: #F5F4EF;
  --cream-300: #EBE9E1;

  /* Accent Colors - Warm Rose Gold */
  --rose-100: #FDF2F0;
  --rose-200: #F5E1DC;
  --rose-300: #E8C4BC;
  --rose-400: #D4A59A;
  --rose-500: #C69C8C;

  /* Gold Accent */
  --gold-light: #D4AF7A;
  --gold: #B8956C;
  --gold-dark: #9A7B54;

  /* Neutrals */
  --charcoal: #2C2C2C;
  --gray-700: #4A4A4A;
  --gray-500: #7A7A7A;
  --gray-300: #B8B8B8;
  --white: #FFFFFF;

  /* Spacing */
  --section-padding: 6rem 1.5rem;
  --section-padding-mobile: 3rem 1rem;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream-50);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--gray-700);
}

.lead {
  font-size: 1.25rem;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

a {
  color: var(--rose-500);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand .navbar-item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}

.navbar-brand .navbar-item:hover {
  color: var(--rose-500);
  background: transparent;
}

.navbar-menu {
  background: transparent;
}

.navbar-item {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-700);
  padding: 0.5rem 1.25rem;
  transition: var(--transition-smooth);
}

.navbar-item:hover {
  color: var(--rose-500);
  background: transparent;
}

.navbar-burger {
  color: var(--charcoal);
}

.navbar-burger span {
  height: 2px;
  background-color: var(--charcoal);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 60px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 3rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--gray-500);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Sections */
.section-padding {
  padding: var(--section-padding);
}

.section-cream {
  background: var(--cream-100);
}

.section-white {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
}

/* Cards */
.service-card {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.service-card p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* Image Styling */
.img-frame {
  position: relative;
  overflow: hidden;
}

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

.img-frame:hover img {
  transform: scale(1.03);
}

/* Feature Image */
.feature-image {
  position: relative;
}

.feature-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold-light);
  z-index: -1;
}

/* Testimonial */
.testimonial-card {
  background: var(--white);
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--rose-200);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--charcoal);
  padding-left: 2rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Price List */
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream-300);
}

.price-item:last-child {
  border-bottom: none;
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
}

.price-dots {
  flex: 1;
  border-bottom: 1px dotted var(--gray-300);
  margin: 0 1rem;
}

.price-value {
  font-weight: 600;
  color: var(--gold);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--cream-300);
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--cream-200);
  padding: 5rem 1.5rem 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.footer-tagline {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-500);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--rose-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Decorative Elements */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 2rem auto;
}

.divider-left {
  margin-left: 0;
}

/* Page Header */
.page-header {
  background: var(--cream-100);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  margin-top: 60px;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.breadcrumb a {
  color: var(--gray-500);
}

.breadcrumb a:hover {
  color: var(--rose-500);
}

/* Content Typography */
.content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--rose-500);
}

.content ul, .content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content li {
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

/* FAQ Styles */
.faq-item {
  border-bottom: 1px solid var(--cream-300);
  padding: 1.5rem 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.faq-item p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }
}

@media screen and (max-width: 768px) {
  .navbar-menu {
    background: var(--white);
    box-shadow: var(--shadow-medium);
    padding: 1rem;
  }

  .navbar-menu.is-active {
    display: block;
  }

  .hero-section {
    min-height: 70vh;
  }

  .hero-content {
    padding: 2rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .section-padding {
    padding: var(--section-padding-mobile);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .feature-image::before {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

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

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.py-6 { padding-top: 4rem; padding-bottom: 4rem; }

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}
