/* Artehonestao Running Website - Styles */

/* CSS Variables */
:root {
    /* Colors */
    --artehonestao-black: #0B0B0C;
    --artehonestao-gray: #1F1F22;
    --artehonestao-yellow: #F1C40F;
    --artehonestao-red: #E74C3C;
    --artehonestao-green: #27AE60;
    --artehonestao-white: #FFFFFF;
    --artehonestao-light-gray: #EEEEEE;
    --artehonestao-dark-gray: #111111;

    /* Gradients */
    --artehonestao-gradient-dark: linear-gradient(135deg, var(--artehonestao-black) 0%, var(--artehonestao-gray) 100%);
    --artehonestao-gradient-accent: linear-gradient(135deg, var(--artehonestao-yellow) 0%, var(--artehonestao-red) 100%);
    --artehonestao-gradient-green: linear-gradient(135deg, var(--artehonestao-green) 0%, var(--artehonestao-yellow) 100%);

    /* Cosmic Accents */
    --artehonestao-cosmic-glow: 0 0 15px rgba(241, 196, 15, 0.5);
    --artehonestao-pulse-shadow: 0 0 20px rgba(231, 76, 60, 0.3);
    --artehonestao-quantum-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);

    /* Spacing */
    --artehonestao-space-xs: 0.25rem;
    --artehonestao-space-sm: 0.5rem;
    --artehonestao-space-md: 1rem;
    --artehonestao-space-lg: 2rem;
    --artehonestao-space-xl: 3rem;
    --artehonestao-space-xxl: 5rem;

    /* Border Radius */
    --artehonestao-radius-sm: 4px;
    --artehonestao-radius-md: 8px;
    --artehonestao-radius-lg: 16px;
    --artehonestao-radius-full: 9999px;

    /* Animations */
    --artehonestao-transition-fast: 0.2s ease;
    --artehonestao-transition-medium: 0.4s ease;
    --artehonestao-transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Typography */
    --artehonestao-font-heading: 'Syne', sans-serif;
    --artehonestao-font-body: 'Space Grotesk', sans-serif;
}

/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--artehonestao-font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--artehonestao-white);
    background-color: var(--artehonestao-black);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--artehonestao-transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Container */
.artehonestao-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 var(--artehonestao-space-md);
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--artehonestao-font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--artehonestao-space-md);
}

p {
    margin-bottom: var(--artehonestao-space-md);
}

/* Buttons */
.artehonestao-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--artehonestao-radius-md);
    font-family: var(--artehonestao-font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--artehonestao-transition-fast);
    border: none;
    outline: none;
}

.artehonestao-btn i {
    margin-left: 0.5rem;
}

.artehonestao-btn-primary {
    background: var(--artehonestao-gradient-accent);
    color: var(--artehonestao-black);
    box-shadow: var(--artehonestao-cosmic-glow);
}

.artehonestao-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--artehonestao-cosmic-glow), var(--artehonestao-quantum-shadow);
}

.artehonestao-btn-secondary {
    background-color: var(--artehonestao-gray);
    color: var(--artehonestao-white);
}

.artehonestao-btn-secondary:hover {
    background-color: var(--artehonestao-dark-gray);
}

.artehonestao-btn-outline {
    background: transparent;
    border: 2px solid var(--artehonestao-yellow);
    color: var(--artehonestao-yellow);
}

.artehonestao-btn-outline:hover {
    background-color: rgba(241, 196, 15, 0.1);
    transform: translateY(-3px);
}

.artehonestao-btn-text {
    background: transparent;
    color: var(--artehonestao-yellow);
    padding: 0;
    border-radius: 0;
    position: relative;
}

.artehonestao-btn-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--artehonestao-yellow);
    transition: width var(--artehonestao-transition-fast);
}

.artehonestao-btn-text:hover::after {
    width: 100%;
}

.artehonestao-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.artehonestao-btn-full {
    width: 100%;
}

/* Header */
.artehonestao-header {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: var(--artehonestao-space-md) 0;
    transition: all var(--artehonestao-transition-medium);
    background: rgba(11, 11, 12, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.artehonestao-header.scrolled {
    padding: var(--artehonestao-space-sm) 0;
    background: rgba(11, 11, 12, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.artehonestao-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.artehonestao-logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.artehonestao-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.artehonestao-logo-text-main {
    font-family: var(--artehonestao-font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--artehonestao-white);
    letter-spacing: -0.02em;
    position: relative;
}

.artehonestao-logo-text-main::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--artehonestao-yellow);
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--artehonestao-cosmic-glow);
}

.artehonestao-logo-text-sub {
    font-family: var(--artehonestao-font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--artehonestao-yellow);
    margin-top: -0.25rem;
}

/* Navigation */
.artehonestao-nav {
    display: none;
}

.artehonestao-nav-list {
    display: flex;
    align-items: center;
    gap: var(--artehonestao-space-lg);
}

.artehonestao-nav-link {
    font-weight: 500;
    position: relative;
    padding: var(--artehonestao-space-xs) 0;
}

.artehonestao-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--artehonestao-yellow);
    transition: width var(--artehonestao-transition-fast);
}

.artehonestao-nav-link:hover::after,
.artehonestao-nav-link.active::after {
    width: 100%;
}

.artehonestao-nav-link-highlight {
    color: var(--artehonestao-yellow);
}

/* Mobile Menu Toggle */
.artehonestao-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.artehonestao-menu-toggle-line {
    width: 100%;
    height: 2px;
    background-color: var(--artehonestao-white);
    transition: all var(--artehonestao-transition-fast);
    transform-origin: center;
}

.artehonestao-menu-toggle.active .artehonestao-menu-toggle-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.artehonestao-menu-toggle.active .artehonestao-menu-toggle-line:nth-child(2) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.artehonestao-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--artehonestao-gradient-dark);
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--artehonestao-transition-medium);
    overflow-y: auto;
    padding-top: 80px;
}

.artehonestao-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.artehonestao-mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--artehonestao-space-lg);
}

.artehonestao-mobile-nav-link {
    font-family: var(--artehonestao-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    position: relative;
    color: var(--artehonestao-white);
    transition: color var(--artehonestao-transition-fast);
}

.artehonestao-mobile-nav-link:hover,
.artehonestao-mobile-nav-link.active {
    color: var(--artehonestao-yellow);
}

/* Hero Section */
.artehonestao-hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.artehonestao-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.artehonestao-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 11, 12, 0.7) 0%, rgba(11, 11, 12, 0.9) 100%);
    z-index: 2;
}

.artehonestao-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.artehonestao-hero-title {
    font-size: 2.5rem;
    margin-bottom: var(--artehonestao-space-md);
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: var(--artehonestao-gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--artehonestao-cosmic-glow);
}

.artehonestao-hero-title-small {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: var(--artehonestao-space-sm);
    color: var(--artehonestao-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.artehonestao-hero-text {
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--artehonestao-space-lg);
}

.artehonestao-hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--artehonestao-space-md);
    margin-bottom: var(--artehonestao-space-xl);
}

.artehonestao-hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--artehonestao-space-xl);
    flex-wrap: wrap;
}

.artehonestao-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artehonestao-hero-stat-number {
    font-family: var(--artehonestao-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--artehonestao-yellow);
    line-height: 1;
    margin-bottom: var(--artehonestao-space-xs);
}

.artehonestao-hero-stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Section Styles */
.artehonestao-section {
    padding: var(--artehonestao-space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.artehonestao-section-dark {
    background: var(--artehonestao-gradient-dark);
}

.artehonestao-section-header {
    text-align: center;
    margin-bottom: var(--artehonestao-space-xl);
}

.artehonestao-section-title {
    font-size: 2.25rem;
    position: relative;
    display: inline-block;
    margin-bottom: var(--artehonestao-space-sm);
}

.artehonestao-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--artehonestao-gradient-accent);
    border-radius: var(--artehonestao-radius-full);
}

.artehonestao-section-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Cards */
.artehonestao-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--artehonestao-space-lg);
}

.artehonestao-card {
    background-color: var(--artehonestao-gray);
    border-radius: var(--artehonestao-radius-lg);
    padding: var(--artehonestao-space-lg);
    box-shadow: var(--artehonestao-quantum-shadow);
    transition: transform var(--artehonestao-transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.artehonestao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--artehonestao-gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--artehonestao-transition-medium);
}

.artehonestao-card:hover {
    transform: translateY(-10px);
}

.artehonestao-card:hover::before {
    transform: scaleX(1);
}

.artehonestao-card-icon {
    font-size: 2.5rem;
    color: var(--artehonestao-yellow);
    margin-bottom: var(--artehonestao-space-md);
    display: inline-block;
}

.artehonestao-card-title {
    font-size: 1.5rem;
    margin-bottom: var(--artehonestao-space-sm);
}

.artehonestao-card-text {
    margin-bottom: var(--artehonestao-space-lg);
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
}

/* Feature */
.artehonestao-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--artehonestao-space-xl);
    align-items: center;
}

.artehonestao-feature-title {
    font-size: 1.75rem;
    margin-bottom: var(--artehonestao-space-md);
    position: relative;
}

.artehonestao-feature-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--artehonestao-gradient-accent);
    border-radius: var(--artehonestao-radius-full);
}

.artehonestao-feature-text {
    margin-bottom: var(--artehonestao-space-lg);
    color: rgba(255, 255, 255, 0.9);
}

.artehonestao-feature-list {
    margin-bottom: var(--artehonestao-space-lg);
}

.artehonestao-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--artehonestao-space-md);
}

.artehonestao-feature-item i {
    font-size: 1.25rem;
    color: var(--artehonestao-yellow);
    margin-right: var(--artehonestao-space-md);
}

.artehonestao-feature-image {
    aspect-ratio: 16/9;
    position: relative;
    border-radius: var(--artehonestao-radius-lg);
    overflow: hidden;
}

.artehonestao-feature-image-inner {
    width: 100%;
    height: 100%;
    background-color: var(--artehonestao-gray);
    background-image: url('https://source.unsplash.com/random/800x450/?running,fitness');
    background-size: cover;
    background-position: center;
    position: relative;
}

.artehonestao-feature-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(241, 196, 15, 0.2) 0%, rgba(11, 11, 12, 0.8) 70%);
    top: 0;
    left: 0;
    mix-blend-mode: overlay;
}

/* Gift Cards */
.artehonestao-gift-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--artehonestao-space-lg);
    margin-bottom: var(--artehonestao-space-lg);
}

.artehonestao-gift-card {
    perspective: 1000px;
    position: relative;
    height: 180px;
}

.artehonestao-gift-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--artehonestao-radius-lg);
    background: linear-gradient(135deg, var(--artehonestao-gray) 0%, var(--artehonestao-dark-gray) 100%);
    box-shadow: var(--artehonestao-quantum-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--artehonestao-space-lg);
    transition: transform var(--artehonestao-transition-medium);
    transform-style: preserve-3d;
    overflow: hidden;
}

.artehonestao-gift-card:hover .artehonestao-gift-card-front {
    transform: rotateY(10deg) translateZ(20px);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
}

.artehonestao-gift-card-premium {
    background: linear-gradient(135deg, var(--artehonestao-yellow) 0%, var(--artehonestao-red) 100%);
}

.artehonestao-gift-card-elite {
    background: linear-gradient(135deg, var(--artehonestao-red) 0%, var(--artehonestao-green) 100%);
}

.artehonestao-gift-card-logo {
    display: flex;
    align-items: center;
}

.artehonestao-gift-card-logo-text {
    font-family: var(--artehonestao-font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.artehonestao-gift-card-value {
    font-family: var(--artehonestao-font-heading);
    font-weight: 800;
    font-size: 2rem;
    align-self: flex-end;
}

.artehonestao-gift-card-design {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.artehonestao-gift-card-design-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.artehonestao-gift-card-design-circle:nth-child(1) {
    width: 150px;
    height: 150px;
    top: -75px;
    left: -75px;
}

.artehonestao-gift-card-design-circle:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: -50px;
    right: -50px;
}

.artehonestao-gift-card-design-circle:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.artehonestao-gift-cards-cta {
    text-align: center;
    margin-top: var(--artehonestao-space-lg);
}

.artehonestao-gift-cards-cta p {
    margin-bottom: var(--artehonestao-space-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Etiquette */
.artehonestao-etiquette {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--artehonestao-space-lg);
}

.artehonestao-etiquette-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--artehonestao-space-lg);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--artehonestao-radius-lg);
    box-shadow: var(--artehonestao-quantum-shadow);
    transition: transform var(--artehonestao-transition-medium);
}

.artehonestao-etiquette-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

.artehonestao-etiquette-icon {
    font-size: 2.5rem;
    color: var(--artehonestao-yellow);
    margin-bottom: var(--artehonestao-space-md);
}

.artehonestao-etiquette-title {
    font-size: 1.25rem;
    margin-bottom: var(--artehonestao-space-sm);
}

.artehonestao-etiquette-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Contact */
.artehonestao-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--artehonestao-space-xl);
}

.artehonestao-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--artehonestao-space-lg);
}

.artehonestao-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--artehonestao-space-md);
}

.artehonestao-contact-icon {
    font-size: 1.5rem;
    color: var(--artehonestao-yellow);
    flex-shrink: 0;
}

.artehonestao-contact-title {
    font-size: 1.25rem;
    margin-bottom: var(--artehonestao-space-xs);
}

.artehonestao-contact-text p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.artehonestao-contact-map {
    margin-top: var(--artehonestao-space-lg);
    border-radius: var(--artehonestao-radius-lg);
    overflow: hidden;
    box-shadow: var(--artehonestao-quantum-shadow);
}

.artehonestao-contact-map iframe {
    display: block;
}

/* Form */
.artehonestao-form {
    display: flex;
    flex-direction: column;
    gap: var(--artehonestao-space-md);
    padding: var(--artehonestao-space-lg);
    background-color: var(--artehonestao-gray);
    border-radius: var(--artehonestao-radius-lg);
    box-shadow: var(--artehonestao-quantum-shadow);
}

.artehonestao-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--artehonestao-space-xs);
}

.artehonestao-form-label {
    font-weight: 500;
    font-size: 0.875rem;
}

.artehonestao-form-input,
.artehonestao-form-select,
.artehonestao-form-textarea {
    padding: var(--artehonestao-space-sm) var(--artehonestao-space-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--artehonestao-radius-md);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--artehonestao-white);
    font-family: var(--artehonestao-font-body);
    font-size: 1rem;
    transition: all var(--artehonestao-transition-fast);
}

.artehonestao-form-input:focus,
.artehonestao-form-select:focus,
.artehonestao-form-textarea:focus {
    outline: none;
    border-color: var(--artehonestao-yellow);
    box-shadow: 0 0 0 2px rgba(241, 196, 15, 0.2);
}

/* Footer */
.artehonestao-footer {
    background-color: var(--artehonestao-black);
    padding: var(--artehonestao-space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.artehonestao-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--artehonestao-space-md);
    text-align: center;
}

.artehonestao-footer-logo-text {
    font-family: var(--artehonestao-font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.artehonestao-footer-links {
    display: flex;
    gap: var(--artehonestao-space-lg);
}

.artehonestao-footer-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--artehonestao-transition-fast);
}

.artehonestao-footer-link:hover {
    color: var(--artehonestao-yellow);
}

.artehonestao-footer-social {
    display: flex;
    gap: var(--artehonestao-space-md);
}

.artehonestao-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--artehonestao-gray);
    color: var(--artehonestao-white);
    transition: all var(--artehonestao-transition-fast);
}

.artehonestao-footer-social-link:hover {
    background-color: var(--artehonestao-yellow);
    color: var(--artehonestao-black);
    transform: translateY(-3px);
}

.artehonestao-footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Privacy Popup */
.artehonestao-privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--artehonestao-gray);
    padding: var(--artehonestao-space-md);
    z-index: 1100;
    transform: translateY(100%);
    transition: transform var(--artehonestao-transition-medium);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.artehonestao-privacy-popup.active {
    transform: translateY(0);
}

.artehonestao-privacy-popup-content {
    display: flex;
    flex-direction: column;
    gap: var(--artehonestao-space-md);
    align-items: center;
    text-align: center;
}

.artehonestao-privacy-popup-content p {
    margin-bottom: 0;
}

.artehonestao-privacy-popup-actions {
    display: flex;
    gap: var(--artehonestao-space-md);
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 500px) {


    .artehonestao-contact-form-container {
        padding: 0 !important;
    }

    .artehonestao-contact-hero {
        padding-bottom: 48px;
    }
}

/* Responsive Styles */
@media (min-width: 576px) {
    .artehonestao-hero-title {
        font-size: 3rem;
    }

    .artehonestao-contact-form-container {
        padding: 0;
    }

    .artehonestao-hero-actions {
        flex-direction: row;
        justify-content: center;
    }

    .artehonestao-etiquette {
        grid-template-columns: repeat(2, 1fr);
    }

    .artehonestao-privacy-popup-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 888px) {
    .artehonestao-nav {
        display: block;
    }

    .artehonestao-menu-toggle {
        display: none;
    }

    .artehonestao-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .artehonestao-feature {
        grid-template-columns: 1fr 1fr;
    }

    .artehonestao-contact {
        grid-template-columns: 1fr 1fr;
    }

    .artehonestao-hero-title {
        font-size: 3.5rem;
    }

    .artehonestao-section-title {
        font-size: 2.75rem;
    }

    .artehonestao-etiquette {
        grid-template-columns: repeat(4, 1fr);
    }

    .artehonestao-footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .artehonestao-hero-title {
        font-size: 4rem;
    }

    .artehonestao-hero-text {
        font-size: 1.25rem;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(241, 196, 15, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(241, 196, 15, 0.5);
    }

    100% {
        box-shadow: 0 0 5px rgba(241, 196, 15, 0.3);
    }
}

/* Animation Classes */
.artehonestao-pulse {
    animation: pulse 3s infinite ease-in-out;
}

.artehonestao-float {
    animation: float 6s infinite ease-in-out;
}

.artehonestao-glow {
    animation: glow 4s infinite ease-in-out;
}

select option {
    background-color: black;
}