/* STRAYHERTZ.COM */
    /* ========== Tipografías ========== */
@font-face {
    font-family: 'fontello';
    src: url('../fonts/fontello.eot');
    src: url('../fonts/fontello.eot') format('embedded-opentype'),
         url('../fonts/fontello.woff') format('woff'),
         url('../fonts/fonts/fontello.ttf') format('truetype'),
         url('../fonts/fonts/fontello.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Syne Mono", serif;
    background-color: #050b10fc;
    color: #fff;
}

/* ========== Video de Fondo ========== */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 120vw;
    height: 100vh;
    overflow: hidden;
}

.background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: grayscale(100%);
    z-index: 0;
}

/* ========== Header ========== */
.header {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(to top, rgb(0 9 16 / 92%), #000910);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.main-title {
    font-size: 3rem;
    text-transform: uppercase;
    margin: 0;
    animation: fadeIn 2s ease-in-out;
}

.sub-title {
    font-size: 1.2rem;
    margin-top: 10px;
    animation: fadeIn 3s ease-in-out;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s;
}

.menu a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: #fff;
    transition: width 0.3s;
}

.menu a:hover {
    color: #aaa;
    text-shadow: 1px 1px #fff;
}

.menu a:hover::after {
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Contenido General ========== */
.main-content {
    position: absolute;
}

section {
    min-height: 100vh;
    padding: 183px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 10px;
    background-color: #000910ed;
}

h2 {
    font-size: 2rem;
    color: #d5dbe1cf;
}

ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

ul li {
    margin: 10px 0;
}

#sound img {
    width: 100%;
    max-width: 150px;
    border-radius: 8px;
}

/* ========== Formularios ========== */
form input,
form textarea,
form select,
form button {
    width: 100% !important;
    margin-bottom: 20px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #000910;
    color: #ffffff;
    border: 1px solid #ffffff6b;
}

form button {
    cursor: pointer;
}

/* ========== Imágenes ========== */
.row img {
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.3s ease;
}

.row img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ========== Footer ========== */
.footer-section {
    height: 100vh;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    background-color: #050b10ba;
}

/* ========== Logos & Decoración ========== */
.logo {
    width: 77%;
}

.deco {
    max-width: 350px;
}

/* ========== Redes Sociales ========== */
.social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.social-icons li {
    display: inline-block;
}

.social-icon {
    text-decoration: none;
    font-size: 2rem;
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    text-shadow: 2px 2px 3px #999;
    transform: scale(1.1);
}

.social-icon:active {
    transform: scale(0.9);
}

/* Iconos específicos */
i.icon-bandcamp,
i.icon-cd {
    font-family: "fontello";
    font-style: normal;
}

/* ========== Media Queries ========== */
@media (min-width: 1024px) {
    .logo {
        width: 50%;
    }
    .main-content {
        position: relative;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 70%;
    }
    .social-icons {
        flex-direction: column;
        gap: 10px;
    }
    body {
        padding-top: 100px;
    }
}

@media (max-width: 480px), (max-width: 320px) {
    .header, body {
        width: 100% !important;
    }
}
