/* VELOURÉ NAILS & SPA - Base Styles */

/* Color Variables */
:root {
  --veloure-primary: #e0a79a;
  --veloure-secondary: #d49b8a;
  --veloure-accent: #c8897a;
  --veloure-dark: #4a3b35;
  --veloure-light: #fdf7f5;
  --veloure-white: #ffffff;
  --veloure-text: #6b5b54;
  --veloure-muted: #a0918a;
}

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

body {
  font-family: "Jost", sans-serif;
  line-height: 1.6;
  color: var(--veloure-dark);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Upright", serif;
  font-weight: 600;
  line-height: 1.2;
}

.display-3,
.display-4 {
  font-family: "Cormorant Upright", serif;
}

/* Common Button Styles */
.btn-book {
  background: linear-gradient(135deg, var(--veloure-primary), var(--veloure-secondary));
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(224, 167, 154, 0.4);
  color: white;
  text-decoration: none;
}

/* Logo Styles */
.navbar-brand .logo {
  max-height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand .logo:hover {
  transform: scale(1.05);
}

.footer-menu .logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 20px;
}

/* Responsive Logo Sizes */
@media (max-width: 768px) {
  .navbar-brand .logo {
    max-height: 60px;
  }

  .footer-menu .logo {
    max-height: 50px;
  }
}

@media (max-width: 576px) {
  .navbar-brand .logo {
    max-height: 60px;
  }

  .footer-menu .logo {
    max-height: 60px;
  }
}

/* Google Maps Section */
.map-section {
  padding: 80px 0;
  background: var(--veloure-light);
}

.map-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 15px;
}

.map-info {
  padding-left: 30px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.info-card h4 {
  color: var(--veloure-dark);
  font-family: "Cormorant Upright", serif;
  font-weight: 600;
}

.info-item {
  display: flex;
  align-items: flex-start;
  color: var(--veloure-text);
  line-height: 1.6;
}

.info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item a {
  color: var(--veloure-primary);
  font-weight: 500;
}

.info-item a:hover {
  color: var(--veloure-secondary);
}

/* Responsive Design for Maps */
@media (max-width: 991px) {
  .map-info {
    padding-left: 0;
    margin-top: 30px;
  }

  .info-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 60px 0;
  }

  .map-container iframe {
    height: 300px;
  }

  .info-card {
    padding: 20px;
  }
}

/* Small Google Maps in Footer */
.small-map-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.small-map-container iframe {
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 8px;
}

.map-info-small {
  text-align: center;
}

.map-info-small .btn {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.map-info-small .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Small Maps */
@media (max-width: 768px) {
  .small-map-container iframe {
    height: 120px;
  }

  .map-info-small .btn {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}

/* Common Section Styles */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--veloure-dark);
  margin-bottom: 15px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--veloure-primary), var(--veloure-secondary));
  border-radius: 2px;
}

.section-title p {
  color: var(--veloure-text);
  font-size: 1.1rem;
}

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, var(--veloure-primary) 0%, var(--veloure-secondary) 100%);
  padding: 100px 0 80px;
  color: white;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* Card Styles */
.card-base {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-base:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Icon Styles */
.icon-base {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--veloure-primary), var(--veloure-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}

.icon-large {
  width: 80px;
  height: 80px;
  font-size: 32px;
}

/* Price Tag Styles */
.price-tag {
  background: linear-gradient(135deg, var(--veloure-primary), var(--veloure-secondary));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 18px;
  display: inline-block;
  margin-top: 15px;
}

/* Background Variations */
.bg-light-section {
  background: var(--veloure-light);
  padding: 80px 0;
}

.bg-gradient-section {
  background: linear-gradient(135deg, var(--veloure-primary), var(--veloure-secondary));
  color: white;
  padding: 60px 0;
}

/* Grid Layouts */
.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.grid-3-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Text Styles */
.text-gradient {
  background: linear-gradient(135deg, var(--veloure-primary), var(--veloure-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

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

  .grid-auto-fit,
  .grid-3-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-base {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

  .btn-book {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* Sticky Navbar Styles */
.navbar-veloure {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.navbar-veloure.sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 167, 154, 0.2);
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-veloure.sticky-navbar .navbar-brand .logo {
  height: 50px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-veloure.sticky-navbar .nav-link {
  font-size: 0.95rem;
  transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-veloure.sticky-navbar .nav-link:hover {
  color: var(--veloure-primary) !important;
  transform: translateY(-1px);
}

/* Body padding when navbar is sticky */
body.sticky-navbar-active {
  padding-top: 85px;
}

/* Hide header top when navbar is sticky */
.sticky-navbar-active .header-top {
  display: none !important;
}

/* Responsive adjustments for sticky navbar */
@media (max-width: 991px) {
  .navbar-veloure.sticky-navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  body.sticky-navbar-active {
    padding-top: 75px;
  }
}

@media (max-width: 768px) {
  .navbar-veloure.sticky-navbar .navbar-brand .logo {
    height: 45px;
  }

  body.sticky-navbar-active {
    padding-top: 70px;
  }

  .navbar-veloure.sticky-navbar .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  body.sticky-navbar-active {
    padding-top: 65px;
  }

  .navbar-veloure.sticky-navbar .navbar-brand .logo {
    height: 40px;
  }
}

/* Ensure offcanvas works correctly with navbar-veloure */
.offcanvas {
  z-index: 1055;
}

.offcanvas-backdrop {
  z-index: 1054;
}

