/* Custom Styles for All Nails & Spa Salon */

/* Base Reset & Smooth Scrolling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a1628;
    color: #ffffff;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a1628;
}

::-webkit-scrollbar-thumb {
    background: #d4a017;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e6b422;
}

/* Geometric Background Shapes */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    pointer-events: none;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    background: #d4a017;
    top: -200px;
    right: -200px;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    background: #d4a017;
    bottom: 10%;
    left: -100px;
}

.geo-circle-3 {
    width: 300px;
    height: 300px;
    background: #d4a017;
    top: 50%;
    right: 5%;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.03;
    pointer-events: none;
}

.geo-triangle-1 {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid #d4a017;
    top: 30%;
    left: 5%;
    transform: rotate(15deg);
}

.geo-square {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
}

.geo-square-1 {
    width: 150px;
    height: 150px;
    background: #d4a017;
    top: 60%;
    right: 10%;
    transform: rotate(45deg);
}

/* Hero Decorative Elements */
.hero-deco {
    position: absolute;
    pointer-events: none;
}

.hero-deco-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    border-radius: 50%;
}

.hero-deco-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
    bottom: 10%;
    right: -5%;
    border-radius: 50%;
}

.hero-deco-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    border-radius: 50%;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-75 {
    animation-delay: 0.075s;
}

.delay-150 {
    animation-delay: 0.15s;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.hidden {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.delay-100 {
    transition-delay: 0.1s;
}

.reveal.delay-200 {
    transition-delay: 0.2s;
}

.reveal.delay-300 {
    transition-delay: 0.3s;
}

/* Mobile Menu Styles */
.mobile-menu-link {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Navbar Scroll Effect */
.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Button Hover Effects */
button:hover,
a:hover {
    cursor: pointer;
}

/* Focus Styles for Accessibility */
input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
    outline: 2px solid #d4a017;
    outline-offset: 2px;
}

/* Select Dropdown Styling */
select option {
    background-color: #0a1628;
    color: #ffffff;
    padding: 10px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .geo-circle-1 {
        width: 300px;
        height: 300px;
    }
    
    .geo-circle-2 {
        width: 200px;
        height: 200px;
    }
    
    .geo-circle-3 {
        width: 150px;
        height: 150px;
    }
    
    .hero-deco-1 {
        width: 300px;
        height: 300px;
    }
    
    .hero-deco-2 {
        width: 250px;
        height: 250px;
    }
    
    .hero-deco-3 {
        width: 200px;
        height: 200px;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .bg-white\/5 {
        background-color: rgba(255, 255, 255, 0.15);
    }
    
    .text-white\/60 {
        color: #e0e0e0;
    }
    
    .text-white\/50 {
        color: #cccccc;
    }
}

/* Print Styles */
@media print {
    .fixed,
    .geo-circle,
    .geo-triangle,
    .geo-square,
    .hero-deco {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .text-white,
    .text-white\/60,
    .text-white\/50,
    .text-gold-400 {
        color: black !important;
    }
    
    .bg-navy-900,
    .bg-navy-800 {
        background-color: white !important;
    }
}
