/*
Theme Name: El Clout Theme
Theme URI: https://tuweb.com/el-clout
Author: REYERS GOTTIT AND TIMOTEO
Description: Un tema minimalista y oscuro para sesiones de música urbana y moda.
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: el-clout
*/

@font-face {
    font-family: 'ChettaVissto';
    src: url('fonts/ChettaVissto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'VintageFashion';
    src: url('fonts/VintageFashion-DemoVersion-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'VintageMohai';
    src: url('fonts/VintageMohai-DemoVersion-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Colors */
    --clout-black: #0a0a0a;
    --clout-white: #f5f5f5;
    --clout-red: #e63946;
    --clout-yellow: #ffb703;
    --clout-blue: #219ebc;
    --clout-green: #2a9d8f;
    --clout-purple: #7209b7;

    /* Fonts */
    --font-sans: 'Montserrat', 'Inter', sans-serif;
    --font-display: 'ChettaVissto', 'Oswald', sans-serif;
    --font-fashion: 'VintageFashion', serif;
    --font-mohai: 'VintageMohai', serif;
}

/* Base Styles */
body {
    background-color: var(--clout-black);
    color: var(--clout-white);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: var(--clout-black);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: white;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s;
}

@media (hover: none) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* Typography Utilities */
.font-sans {
    font-family: var(--font-sans);
}

.font-display {
    font-family: var(--font-display);
}

.font-fashion {
    font-family: var(--font-fashion);
}

.font-mohai {
    font-family: var(--font-mohai);
}

/* Background Utilities */
.bg-clout-black {
    background-color: var(--clout-black);
}

.bg-clout-white {
    background-color: var(--clout-white);
}

.bg-clout-red {
    background-color: var(--clout-red);
}

.bg-clout-yellow {
    background-color: var(--clout-yellow);
}

.bg-clout-blue {
    background-color: var(--clout-blue);
}

.bg-clout-green {
    background-color: var(--clout-green);
}

.bg-clout-purple {
    background-color: var(--clout-purple);
}

/* Text Color Utilities */
.text-clout-black {
    color: var(--clout-black);
}

.text-clout-white {
    color: var(--clout-white);
}

.text-clout-red {
    color: var(--clout-red);
}

.text-clout-yellow {
    color: var(--clout-yellow);
}

.text-clout-blue {
    color: var(--clout-blue);
}

.text-clout-green {
    color: var(--clout-green);
}

.text-clout-purple {
    color: var(--clout-purple);
}

/* Hover Utilities (replacing Tailwind 'hover:text-clout-x') */
.hover-text-clout-red:hover {
    color: var(--clout-red);
}

.hover-text-clout-yellow:hover {
    color: var(--clout-yellow);
}

.hover-text-clout-blue:hover {
    color: var(--clout-blue);
}

.hover-text-clout-green:hover {
    color: var(--clout-green);
}

.hover-bg-clout-red:hover {
    background-color: var(--clout-red);
}

/* Animation Utilities */
.img-zoom {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.group:hover .img-zoom {
    transform: scale(1.05);
}

.cursor-hover {
    /* Marker class for JS */
}

.navbar-logo {
    height: 7rem;
    /* 48px */
    object-fit: contain;
}