@charset "utf-8";
/* CSS Document */
:root {
--burgundy: #3d0311;
--gold: #C5A059;
--off-white: #FAF9F6;
--charcoal: #1A1A1A;
}

body {
font-family: 'Inter', sans-serif;
background-color: var(--off-white);
color: var(--charcoal);
overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
font-family: 'Playfair Display', serif;
}

/* Utility Classes */
.bg-burgundy { background-color: var(--burgundy); }
.text-burgundy { color: var(--burgundy); }
.border-burgundy { border-color: var(--burgundy); }
.bg-gold { background-color: var(--gold); }
.text-gold { color: var(--gold); }
.border-gold { border-color: var(--gold); }
.text-off-white { color: var(--off-white); }
.bg-off-white { background-color: var(--off-white); }

/* Smooth Scroll Fixes */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Navigation */
.nav-transparent {
background-color: transparent;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}
.nav-scrolled {
background-color: var(--burgundy);
padding-top: 1rem;
padding-bottom: 1rem;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.nav-link {
position: relative;
padding-bottom: 2px;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 1px;
bottom: 0;
left: 0;
background-color: var(--gold);
transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
width: 100%;
}
.nav-link.active {
color: var(--gold);
}
.hero-gradient {
background: linear-gradient(to bottom, rgba(91, 16, 29, 0.6), rgba(26, 26, 26, 0.8));
}

/* Highlight Button in Nav */
.btn-salon-nav {
background-color: var(--gold);
color: white;
padding: 0.6rem 1.25rem;
border-radius: 0px;
transition: all 0.3s ease;
border: thin solid;
border-color: var(--gold);
}
.btn-salon-nav:hover {
background-color: transparent;
color: var(--gold);
border: thin solid;
border-color: var(--gold);
}

/* CTA Buttons */
.btn-primary {
background-color: var(--gold);
color: white;
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
z-index: 1;
border: 1px solid var(--gold);
border-radius: 8px;
}
.btn-primary:hover {
background-color: transparent;
color: var(--gold);
}

.btn-secondary {
background-color: transparent;
border: 1px solid white;
color: white;
transition: all 0.3s ease;
border-radius: 8px;
}
.btn-secondary:hover {
background-color: white;
color: var(--burgundy);
}

.gold-button {
background-color: var(--gold);
color: white;
border: thin solid;
border-color: var(--gold);
border-radius: 8px;
}
.gold-button:hover {
background-color: transparent;
border: thin solid;
border-color: var(--burgundy);
color: var(--burgundy);
}

.burgundy-button {
background-color: var(--burgundy);
color: white;
border: thin solid;
border-color: var(--burgundy);
border-radius: 8px;
}
.burgundy-button:hover {
background-color: transparent;
border: thin solid;
border-color: var(--burgundy);
color: var(--burgundy);
}

.gold-tr-button {
background-color: transparent;
border: thin solid;
border-color: var(--gold);
color: var(--gold);
border-radius: 8px;
}
.gold-tr-button:hover {
border-color: var(--off-white);
color: var(--off-white);
}

/* Scroller Logic */
.scroller {
max-width: 100%;
overflow: hidden;
-webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}
.scroller-inner {
display: flex;
gap: 2rem;
width: max-content;
flex-wrap: nowrap;
}
.salon-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(197, 160, 89, 0.3);
width: 300px;
padding: 2rem;
transition: transform 0.3s ease, border-color 0.3s ease;
}
.salon-card:hover {
border-color: var(--gold);
background: rgba(255, 255, 255, 0.1);
}

.social-icons:hover {
color: var(--gold);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--burgundy); }

@keyframes fadeIntx {
from { opacity: 0; }
to { opacity: 1; }
}

/* Brand Scrolling Section */
.brands-scroller {
width: 100%;
overflow: hidden;
padding: 20px 0;
position: relative;
/* Use black for the mask to ensure visibility */
-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* The track that actually moves */
.brands-track {
display: flex;
width: max-content;
gap: 4rem; /* Spacing between logos */
animation: scroll-brands 40s linear infinite;
will-change: transform;
}

/* Standard logo styling */
.brand-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.75rem;
flex-shrink: 0;
width: 140px;
}

.brand-logo-container {
height: 200px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}

.brand-logo {
max-height: 100%;
max-width: 100%;
object-fit: contain;
filter: grayscale(100%);
opacity: 0.9;
transition: all 0.4s ease;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.brand-item:hover .brand-logo {
filter: grayscale(0%);
opacity: 1;
transform: scale(1.1);
}

.brand-name {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 2px;
color: #888;
font-weight: 500;
}

/* The Animation Logic: Move half-way then snap back */
@keyframes scroll-brands {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

/* Pause on hover */
.brands-scroller:hover .brands-track {
animation-play-state: paused;
}

@media (max-width: 768px) {
.brands-track { gap: 2rem; animation-duration: 25s; }
.brand-item { width: 100px; }
}

/* icon animation */
.fa-slide-ani {
  animation: slide-fade 3s infinite;
}
@keyframes slide-fade {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(20px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.fa-pulse-ani {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Privacy Policy */
.privacy-hero {
background: linear-gradient(rgba(61, 3, 17, 0.9), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
background-size: cover;
background-position: center;
padding: 120px 0 80px;
}

.privacy-container {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}

.privacy-content {
background-color: var(--off-white);
border-radius: 12px;
padding: 60px 50px;
margin-top: -40px;
position: relative;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(197, 160, 89, 0.2);
}

.privacy-section {
margin-bottom: 50px;
padding-bottom: 40px;
border-bottom: 1px solid rgba(61, 3, 17, 0.1);
}

.privacy-section:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}

.section-title {
display: flex;
align-items: center;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 2px solid var(--gold);
}

.section-number {
background-color: var(--burgundy);
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 20px;
}

.privacy-list {
list-style-type: none;
margin-left: 20px;
}

.privacy-list li {
margin-bottom: 12px;
position: relative;
padding-left: 25px;
}

.privacy-list li:before {
content: "•";
color: var(--gold);
font-size: 24px;
position: absolute;
left: 0;
top: -5px;
}

.contact-info-box {
background-color: rgba(61, 3, 17, 0.05);
border-left: 4px solid var(--gold);
padding: 25px;
margin: 30px 0;
border-radius: 0 8px 8px 0;
}

.update-date {
display: inline-block;
background-color: var(--gold);
color: white;
padding: 8px 20px;
border-radius: 30px;
font-size: 0.9rem;
margin-top: 20px;
}

/* Back to Home Button */
.back-to-home {
display: inline-flex;
align-items: center;
color: var(--burgundy);
text-decoration: none;
font-weight: 600;
margin-top: 40px;
transition: all 0.3s ease;
}

.back-to-home:hover {
color: var(--gold);
}

.back-to-home i {
margin-right: 8px;
transition: transform 0.3s ease;
}

.back-to-home:hover i {
transform: translateX(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.privacy-hero {
padding: 100px 0 60px;
}

.privacy-content {
padding: 40px 25px;
margin-top: -30px;
}

.section-title {
flex-direction: column;
align-items: flex-start;
}

.section-number {
margin-bottom: 10px;
}

.privacy-list li {
padding-left: 20px;
}
}

@media (max-width: 576px) {
.privacy-hero h1 {
font-size: 2rem;
}

.privacy-content {
padding: 30px 20px;
}
}

/* Terms & Conditions */
.terms-hero {
background: linear-gradient(rgba(61, 3, 17, 0.9), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
background-size: cover;
background-position: center;
padding: 120px 0 80px;
}

.terms-container {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}

.terms-content {
background-color: var(--off-white);
border-radius: 12px;
padding: 60px 50px;
margin-top: -40px;
position: relative;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(197, 160, 89, 0.2);
}

.terms-section {
margin-bottom: 50px;
padding-bottom: 40px;
border-bottom: 1px solid rgba(61, 3, 17, 0.1);
}

.terms-section:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}

.section-title {
display: flex;
align-items: center;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 2px solid var(--gold);
}

.section-number {
background-color: var(--burgundy);
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 20px;
}

.terms-list {
list-style-type: none;
margin-left: 20px;
}

.terms-list li {
margin-bottom: 12px;
position: relative;
padding-left: 25px;
}

.terms-list li:before {
content: "•";
color: var(--gold);
font-size: 24px;
position: absolute;
left: 0;
top: -5px;
}

.contact-info-box {
background-color: rgba(61, 3, 17, 0.05);
border-left: 4px solid var(--gold);
padding: 25px;
margin: 30px 0;
border-radius: 0 8px 8px 0;
}

.update-date {
display: inline-block;
background-color: var(--gold);
color: white;
padding: 8px 20px;
border-radius: 30px;
font-size: 0.9rem;
margin-top: 20px;
}

/* Back to Home Button */
.back-to-home {
display: inline-flex;
align-items: center;
color: var(--burgundy);
text-decoration: none;
font-weight: 600;
margin-top: 40px;
transition: all 0.3s ease;
}

.back-to-home:hover {
color: var(--gold);
}

.back-to-home i {
margin-right: 8px;
transition: transform 0.3s ease;
}

.back-to-home:hover i {
transform: translateX(-5px);
}

/* Highlight important terms */
.highlight-box {
background-color: rgba(197, 160, 89, 0.08);
border: 1px solid rgba(197, 160, 89, 0.3);
padding: 20px;
border-radius: 8px;
margin: 20px 0;
}

.highlight-box p {
margin-bottom: 10px;
}

.highlight-box p:last-child {
margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.terms-hero {
padding: 100px 0 60px;
}

.terms-content {
padding: 40px 25px;
margin-top: -30px;
}

.section-title {
flex-direction: column;
align-items: flex-start;
}

.section-number {
margin-bottom: 10px;
}

.terms-list li {
padding-left: 20px;
}
}

@media (max-width: 576px) {
.terms-hero h1 {
font-size: 2rem;
}

.terms-content {
padding: 30px 20px;
}
}

/* WhatsApp Floating Button */
.whatsapp-float {
position: fixed;
bottom: 30px;
left: 30px;
width: 60px;
height: 60px;
background-color: #25D366; /* WhatsApp brand color */
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
z-index: 9998;
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
text-decoration: none;
overflow: hidden;
}

.whatsapp-float:hover {
background-color: #128C7E;
transform: scale(1.1) translateY(-5px);
box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:active {
transform: scale(0.95);
}

/* WhatsApp pulse animation */
.whatsapp-float::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #25D366;
opacity: 0;
animation: whatsapp-pulse 2s infinite;
z-index: -1;
}

@keyframes whatsapp-pulse {
0% {
transform: scale(1);
opacity: 0.7;
}
70% {
transform: scale(1.5);
opacity: 0;
}
100% {
transform: scale(1.5);
opacity: 0;
}
}

/* Scroll to Top Button */
.scroll-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 36px;
height: 36px;
background-color: var(--burgundy);
color: white;
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
cursor: pointer;
box-shadow: 0 6px 20px rgba(61, 3, 17, 0.3);
z-index: 9999;
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
opacity: 0;
visibility: hidden;
transform: translateY(20px);
}

.scroll-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.scroll-top:hover {
background-color: var(--gold);
transform: scale(1.1) translateY(-5px);
box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.scroll-top:active {
transform: scale(0.95);
}

/* Gold border animation on hover */
.scroll-top::before {
content: '';
position: absolute;
inset: -2px;
background: linear-gradient(45deg, var(--gold), var(--burgundy), var(--gold));
border-radius: 50%;
opacity: 0;
transition: opacity 0.3s ease;
z-index: -1;
}

.scroll-top:hover::before {
opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.whatsapp-float {
bottom: 20px;
left: 20px;
width: 55px;
height: 55px;
font-size: 24px;
}

.scroll-top {
bottom: 20px;
right: 20px;
width: 55px;
height: 55px;
font-size: 18px;
}

.whatsapp-float::after {
animation: whatsapp-pulse 3s infinite;
}
}

@media (max-width: 480px) {
.whatsapp-float {
bottom: 15px;
left: 15px;
width: 50px;
height: 50px;
font-size: 22px;
}

.scroll-top {
bottom: 15px;
right: 15px;
width: 50px;
height: 50px;
font-size: 16px;
}
}