/* Custom styles for V Nails */

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a1628;
    color: #ffffff;
}

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

.geo-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 193, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 193, 0.05) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.geo-circle-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 193, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-slow 6s ease-in-out infinite;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 100px 60px;
    border-color: transparent transparent rgba(0, 229, 193, 0.1) transparent;
    top: 30%;
    left: 5%;
    animation: spin-slow 20s linear infinite;
    pointer-events: none;
}

.geo-triangle-1 {
    border-width: 0 40px 70px 40px;
    top: 60%;
    left: 8%;
    opacity: 0.5;
}

.geo-square {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 229, 193, 0.15);
    border-radius: 16px;
    pointer-events: none;
}

.geo-square-1 {
    top: 45%;
    right: 8%;
    transform: rotate(15deg);
    animation: spin-slow 15s linear infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Animation */
.hero-content {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-image {
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

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

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

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
#navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Selection */
::selection {
    background: rgba(0, 229, 193, 0.3);
    color: #ffffff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 193, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 229, 193, 0.5);
}

/* Select styling */
select option {
    background: #152238;
    color: #ffffff;
}

/* Mobile menu animation */
#mobile-menu {
    animation: menuSlide 0.3s ease-out;
}

@keyframes menuSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service card hover effect */
.group:hover .group-hover\:bg-mint\/20 {
    background-color: rgba(0, 229, 193, 0.2);
}

/* Focus styles */
input:focus,
select:focus,
textarea:focus {
    outline: none;
}
