/* Custom styles for Viu La Pepa */

/* Base adjustments */
:root {
    --color-coral: #ff6b35;
    --color-coral-light: #ffb088;
    --color-charcoal: #1a1a1a;
    --color-charcoal-light: #2a2a2a;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: rgba(255, 107, 53, 0.3);
    color: #f5f5f5;
}

/* Focus styles */
:focus-visible {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Reduced motion */
@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;
    }
}

/* Print styles */
@media print {
    nav, .back-to-top, .animate-float, .animate-float-reverse, .animate-rotate {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .geo-shape {
        display: none;
    }
}

/* Ensure navbar doesn't overlap content */
nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Active nav state */
.nav-link.active {
    color: #ff6b35 !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Mobile menu link hover */
.mobile-link:hover {
    transform: translateX(8px);
}

.mobile-link {
    transition: transform 0.3s ease;
    display: block;
}

/* Form focus states */
input:focus, textarea:focus, select:focus {
    background-color: #1e1e1e !important;
}

/* Button touch targets for mobile */
@media (max-width: 640px) {
    .btn-primary, .btn-secondary, a[role="button"] {
        min-height: 44px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .product-card, .feature-card, .testimonial-card {
        border-width: 2px;
    }
}
