@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --color-background: #000;
    --color-card-background: #111;
    --color-text-primary: #fff;
    --color-text-secondary: #9CA3AF;
    --color-highlight: #A8715A;
    --color-highlight-light: #C28D76;
    --color-border: #333;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-primary);
    background-color: var(--color-background);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Animations */
.floating-animation {
    animation: float 4s ease-in-out infinite;
}

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

.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

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

/* Custom Components */
.hero-gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(20, 20, 20, 1) 100%);
    position: relative;
    z-index: 1;
}

.hero-text-shadow {
    text-shadow: 0 4px 15px rgba(168, 113, 90, 0.4);
}

.btn-bronze {
    background-color: var(--color-highlight);
    color: var(--color-background);
    transition: background-color 0.3s ease;
}

.btn-bronze:hover {
    background-color: var(--color-highlight-light);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-highlight);
    color: var(--color-highlight);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--color-highlight);
    color: var(--color-background);
}

.guarantee-badge {
    background-color: var(--color-card-background);
    color: var(--color-text-secondary);
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid var(--color-border);
    font-weight: 500;
}

.luxury-card {
    background-color: var(--color-card-background);
    border: 1px solid var(--color-border);
}

.product-card {
    background-color: var(--color-card-background);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--color-highlight);
}

.product-watch {
    background: linear-gradient(145deg, #181818, #0a0a0a);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5), -5px -5px 15px rgba(40, 40, 40, 0.2);
}

.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-highlight) 50%, transparent 100%);
}

.testimonial-avatar {
    border: 2px solid var(--color-highlight);
    box-shadow: 0 0 10px rgba(168, 113, 90, 0.5);
}

.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

.stock-warning {
    color: #F87171;
    font-weight: 600;
}

/* Hamburguer Menu Icon */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}