@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --main: #ff4d00;
    --main-glow: rgba(255, 77, 0, 0.4);
    --dark: #070707;
    --grey: #141414;
    --grey-border: #262626;
    --white: #f5f5f5;
    --text-muted: #999;
}

* {
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    outline: none; border: none;
}

html { 
    font-size: 62.5%; 
    scroll-behavior: smooth; 
    background: var(--dark); 
    color: var(--white); 
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--dark);
}

section { 
    padding: 10rem 7%; 
}

.heading { 
    font-family: 'Syncopate', sans-serif; 
    font-size: 3.6rem; 
    text-align: center; 
    margin-bottom: 1.5rem; 
    letter-spacing: 2px; 
    text-transform: uppercase;
}
.heading span { color: var(--main); }

.section-subtitle {
    text-align: center;
    font-size: 1.6rem;
    color: var(--text-muted);
    margin-bottom: 5rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.sub-badge {
    display: inline-block;
    font-family: 'Syncopate', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--main);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: rgba(255, 77, 0, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
}

.btn {
    display: inline-block;
    padding: 1.4rem 3.2rem;
    background: var(--main);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--main);
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 77, 0, 0.2);
}

.btn:hover { 
    background: transparent; 
    color: var(--main); 
    box-shadow: 0 4px 25px rgba(255, 77, 0, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: #444;
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--main);
    color: var(--main);
    background: rgba(255, 77, 0, 0.05);
}

/* --- HEADER --- */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 5%; border-bottom: 1px solid var(--grey-border);
}

.header .logo {
    display: flex;
    align-items: center;
    padding: 0;
}

.header .logo img { 
    height: 5.2rem;
    width: auto; 
    display: block;
}

.header .navbar a { font-size: 1.5rem; color: var(--white); margin-left: 2.5rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.2s;}
.header .navbar a:hover { color: var(--main); }

.header-socials {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.header-socials a i {
    font-size: 1.9rem;
    color: var(--white);
    transition: 0.3s;
}

.header-socials a i:hover {
    color: var(--main);
}

.header .icons div { font-size: 2.5rem; color: var(--white); cursor: pointer; display: none; }

/* --- HERO SECTION --- */
.home { 
    min-height: 100vh;
    width: 100%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    position: relative; 
    overflow: hidden;
    background-color: var(--dark);
    padding-top: 8rem;
}

.hero-image-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: 200%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-bg {
    width: 50%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
   
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Fondo estático para la revista en formato Hero 
.static-bg {
    background-image: url('../images/evasf-magazine-1985.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.55;
}

*/

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
 
    z-index: 2;
}

.home .content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 90rem;
    padding: 2rem;
}

.home h1 { 
    font-family: 'Syncopate', sans-serif; 
    font-size: clamp(3rem, 7vw, 6.2rem); 
    line-height: 1.15; 
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.home p { 
    font-size: clamp(1.6rem, 2.5vw, 2rem); 
    margin-bottom: 3.5rem; 
    color: var(--text-muted); 
    max-width: 65rem;
    margin-left: auto;
    margin-right: auto;
}

.home .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- GALLERY GRID --- */
.gallery .box-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr)); 
    gap: 3rem; 
}

.gallery .box { 
    background: var(--grey); 
    border-radius: 16px; 
    overflow: hidden;
    text-align: left; 
    border: 1px solid var(--grey-border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.gallery .box:hover { 
    border-color: var(--main); 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255, 77, 0, 0.15);
}

.gallery .box .img-wrapper {
    width: 100%;
    height: 34rem;
    overflow: hidden;
    background: #000;
}

.gallery .box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease;
}

.gallery .box:hover img {
    transform: scale(1.05);
}

.gallery .box .info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.gallery .box .info h3 { 
    font-size: 2rem; 
    margin-bottom: 1rem; 
    font-family: 'Syncopate', sans-serif; 
    color: var(--white);
    letter-spacing: 0.5px;
}

.gallery .box .info p { 
    font-size: 1.5rem; 
    color: var(--text-muted); 
    line-height: 1.6;
}

/* --- ARTIST SECTION --- */
.artist .row { display: flex; align-items: center; gap: 6rem; flex-wrap: wrap; margin-bottom: 6rem; }
.artist .row.reverse { flex-direction: row-reverse; }
.artist .row .image { flex: 1 1 40rem; border-radius: 16px; overflow: hidden; border: 1px solid var(--grey-border); }
.artist .row .image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.artist .row .image:hover img { transform: scale(1.03); }
.artist .row .content { flex: 1 1 45rem; }
.artist .row .content p { font-size: 1.7rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 2rem; }

/* --- PHILOSOPHY SECTION --- */
.philosophy {
    background: var(--dark);
    text-align: center;
}

.philosophy-card {
    background: var(--grey);
    border-radius: 16px;
    padding: 4rem 3rem;
    border: 1px solid var(--grey-border);
    max-width: 85rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.philosophy-card:hover {
    border-color: var(--main);
}

.philosophy-card p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.philosophy-card strong {
    color: var(--white);
}

/* --- NEWS & SOCIALS --- */
.news { padding-top: 6rem; }
.news .article-card { text-align: center; background: var(--grey); border-radius: 16px; padding: 5rem 3rem; border: 1px solid var(--grey-border); max-width: 85rem; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.news .article-card h3 { font-size: 2.4rem; margin-bottom: 2rem; font-family: 'Syncopate', sans-serif; letter-spacing: 1px; }
.news .article-card p { font-size: 1.8rem; margin-bottom: 3rem; font-style: italic; color: var(--text-muted); line-height: 1.6;}

.social-feed-footer { display: flex; justify-content: center; gap: 3.5rem; margin-top: 3rem; }
.social-feed-footer a i { font-size: 4rem; color: var(--white); transition: .3s; }
.social-feed-footer a i:hover { color: var(--main); transform: translateY(-5px); }

/* --- CONTACT --- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr)); gap: 3rem; max-width: 90rem; margin: 0 auto; }
.contact-card { background: var(--grey); border-radius: 16px; padding: 5rem 3rem; text-align: center; border: 1px solid var(--grey-border); transition: 0.3s;}
.contact-card:hover { border-color: var(--main); transform: translateY(-5px); }
.contact-card i { font-size: 4.5rem; color: var(--main); margin-bottom: 2rem; }
.contact-card h3 { font-size: 2.4rem; margin-bottom: 1rem; font-family: 'Syncopate', sans-serif; }
.contact-card p { font-size: 1.7rem; color: var(--text-muted); margin-bottom: 2.5rem; }

/* --- TERMS SECTION --- */
.terms .terms-content { background: var(--grey); border-radius: 16px; padding: 5rem; border: 1px solid var(--grey-border); max-width: 90rem; margin: 0 auto; }
.terms .terms-content p { font-size: 1.6rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 2.5rem; }
.terms .terms-content p:last-child { margin-bottom: 0; }
.terms .terms-content strong { color: var(--white); }

/* --- FOOTER --- */
.site-footer {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid var(--grey-border);
    color: var(--text-muted);
    font-size: 1.4rem;
    letter-spacing: 1px;
}

/* --- STICKY WHATSAPP --- */
.sticky-whatsapp {
    position: fixed;
    bottom: 3rem; right: 3rem;
    background: #25D366;
    color: white;
    width: 6rem; height: 6rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.2rem;
    z-index: 1000;
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.4);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sticky-whatsapp:hover { transform: scale(1.12); background: #1ebe57; color: white;}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    html { font-size: 55%; }
    section { padding: 8rem 5%; }

    .header .icons div { display: block; }
    
    .header .navbar { 
        position: absolute; 
        top: 100%; left: 0; right: 0; 
        background: rgba(7,7,7,0.98); 
        backdrop-filter: blur(15px);
        border-top: 1px solid var(--grey-border); 
        border-bottom: 1px solid var(--grey-border); 
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); 
        transition: .3s cubic-bezier(0.4, 0, 0.2, 1); 
        padding: 2rem 0;
    }
    
    .header .navbar.active { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); 
    }
    
    .header .navbar a { 
        display: block; 
        margin: 2rem 0; 
        font-size: 2.2rem; 
        text-align: center;
    }

    .artist .row.reverse { flex-direction: column; }
    .artist .row { gap: 4rem; }
}

@media (max-width: 450px) {
    html { font-size: 50%; }
    .gallery .box-container { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}



/* --- HERO 2 SECTION (MAGAZINE SPREAD) --- */
.home2 { 
    min-height: 80vh;
    width: 100%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    position: relative; 
    overflow: hidden;
    background-color: var(--dark);
    padding: 8rem 5%;
}

.hero-image-container2 {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg2.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.home2 .content2 {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 90rem;
    padding: 2rem;
}

.home2 h1 { 
    font-family: 'Syncopate', sans-serif; 
    font-size: clamp(2.2rem, 5vw, 5.2rem); 
    line-height: 1.15; 
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.home2 p { 
    font-size: clamp(1.4rem, 2vw, 1.8rem); 
    margin-bottom: 0; 
    color: var(--text-muted); 
    max-width: 65rem;
    margin-left: auto;
    margin-right: auto;
}