/*
Theme Name: Cataclismo Producciones
Theme URI: https://cataclismoproducciones.com
Author: Cataclismo
Author URI: https://cataclismoproducciones.com
Description: Tema radical i alternatiu per a Cataclismo Producciones - Agència cultural independent de Barcelona. Disseny brutalist amb tipografia distintiva i efectes visuals impactants.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cataclismo
Tags: culture, alternative, brutalist, modern, radical, music, arts
*/

/* Reset bàsic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Container general */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.site-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.site-title:hover {
    color: #0073aa;
}

.site-description {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Burger Menu Button */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Overlay per tancar el menú */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Navegació */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.current {
    color: var(--color-primary)
}

/* Contingut principal */
main {
    padding: 40px 0;
    min-height: 60vh;
}

/* Posts */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

article {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
    transition: transform 0.3s, box-shadow 0;
}

/* article:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
} */

.page-template-default .page-title {
    display: none;
}

.page-template-default .page-container {
    padding: 150px 0px 100px;
}

.post-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.entry-header,
.entry-content,
.entry-footer {
    padding: 20px;
}

.entry-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.entry-title a:hover {
    color: #0073aa;
}

.entry-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.entry-content p {
    margin-bottom: 15px;
    color: #555;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #005177;
}

/* Single post */
.single-post article {
    background: transparent;
    padding: 40px;
    border-radius: 8px;
    box-shadow: none;
}

.single-post .entry-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.single-post .post-thumbnail {
    margin-bottom: 30px;
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Comments */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e5e5e5;
}

.comment-list {
    list-style: none;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
    margin-top: 40px;
}

.widget {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
}

.widget ul {
    list-style: none;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.widget ul li a:hover {
    color: #0073aa;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
}

.footer-content a {
    color: #0073aa;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Paginació */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.pagination a:hover,
.pagination span.current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

/* Responsive - BURGER MENU */
@media (max-width: 1024px) {
    .burger-menu {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px;
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation ul li {
        padding: 15px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .main-navigation ul li:last-child {
        border-bottom: none;
    }

    .main-navigation ul li a {
        display: block;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .single-post article {
        padding: 0px;
    }

    .single-post .entry-title {
        font-size: 28px;
    }
}

/* ====================================
   FRONT PAGE - CATACLISMO STYLES
==================================== */

/* Google Fonts - Loaded in front-page.php */
:root {
    --color-primary: #f4624e;
    --color-secondary: #e8c547;
    --color-dark: #0d0f12;
    --color-light: #ffffff;
    --color-gray: #6b7280;
    --color-accent: #00FF88;
    --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-title: 'Archivo Black', sans-serif;
    --font-body: 'Work Sans', sans-serif;
}

/* Override body styles for front page */
body.home {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: transparent;
    color: var(--color-dark);
    /* Text fosc sobre fons clar */
    font-family: var(--font-body);
}

/* Ensure html has LIGHT background behind transparent body */
html {
    background: #f5f5f5;
    /* Fons clar gris molt suau */
}

body {
    background: transparent;
}

/* ====================================
   CANVAS SMOKE EFFECT (BACKGROUND)
==================================== */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    /* TEMPORAL: opacitat màxima per debugging */
    pointer-events: none;
}

#canvas-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* ====================================
   BURGER MENU - TOP RIGHT (GLOBAL)
==================================== */
.site-header-global {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    background: transparent;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.site-header-global.hide-on-scroll {
    transform: translateY(-100px);
}

.site-header-global .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 34px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.site-header-global .burger-menu:hover {
    transform: scale(1.1);
}

.site-header-global .burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-light);
    transition: all 0.3s ease;
}

.site-header-global .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.site-header-global .burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.site-header-global .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ====================================
   LANGUAGE SWITCHER - TOP RIGHT
==================================== */
.language-switcher {
    position: fixed;
    top: 30px;
    right: 85px;
    z-index: 9999;
}

.language-switcher ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
}

.language-switcher li {
    margin: 0;
}

.language-switcher a {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-light);
    text-decoration: none;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
    opacity: 0.6;
    display: block;
}

.language-switcher a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.language-switcher li.current-lang a {
    opacity: 1;
    color: var(--color-primary);
    font-weight: 800;
}

/* ====================================
   MENU OVERLAY & NAVIGATION (GLOBAL)
==================================== */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 375px;
    height: 100vh;
    background: rgba(13, 15, 18, 0.95);
    border-left: 3px solid var(--color-primary);
    padding: 100px 40px 50px;
    z-index: 9998;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.main-navigation.active {
    right: 0;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.main-navigation ul li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.main-navigation.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.main-navigation.active ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.main-navigation.active ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.main-navigation.active ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.main-navigation.active ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.main-navigation.active ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.main-navigation ul li a {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation ul li a:hover {
    color: var(--color-primary);
    padding-left: 20px;
}

.main-navigation ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 0;
    height: 3px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.main-navigation ul li a:hover::before {
    width: 10px;
}

/* Submenus */
.main-navigation ul ul.sub-menu {
    display: none;
    padding-left: 30px;
    margin-top: 15px;
}

.main-navigation ul li.submenu-open>ul.sub-menu {
    display: block;
}

.main-navigation ul ul.sub-menu li a {
    font-size: 24px;
    font-family: var(--font-display);
    font-weight: 600;
}

.main-navigation ul li.menu-item-has-children>a::after {
    content: ' ↓';
    font-size: 30px;
    margin-left: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.main-navigation ul li.menu-item-has-children.submenu-open>a::after {
    transform: rotate(180deg);
}

/* ====================================
   LOGO LINK - TOP LEFT (GLOBAL)
==================================== */
.site-logo {
    position: fixed;
    top: 30px;
    left: 50px;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.site-logo.hide-on-scroll {
    transform: translateY(-100px);
}

/* Ocultar site-logo a la home (ja hi ha hero-title gran) */
.home .site-logo {
    display: none;
}

.site-logo a {
    text-decoration: none;
    display: inline-block;
}

/* Hero title petit (logo a altres pàgines) */
.site-logo .hero-title {
    font-size: 36px;
    color: var(--color-light);
    letter-spacing: 3px;
    line-height: 1;
    margin: 0;
    cursor: pointer;
}

.site-logo .hero-title::before,
.site-logo .hero-title::after {
    letter-spacing: 3px;
}

.site-logo a:hover .hero-title {
    color: var(--color-primary);
}

/* ====================================
   NEON FLICKER EFFECT - PAMPALLUGUES
==================================== */
.hero-title.neon-flicker-off,
.hero-title.neon-flicker-off::before,
.hero-title.neon-flicker-off::after {
    opacity: 0 !important;
    transition: none !important;
}

/* ====================================
   PAGE CONTENT (GLOBAL)
==================================== */
.page-container {
    position: relative;
    min-height: 100vh;
    padding: 150px 50px 100px;
    z-index: 10;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 120px);
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 0.9;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 30px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.entry-content {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.9;
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content h2 {
    font-family: var(--font-title);
    font-size: 36px;
    color: var(--color-dark);
    text-transform: uppercase;
    margin-top: 60px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.entry-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--color-primary);
}

.entry-content h3 {
    font-family: var(--font-title);
    font-size: 24px;
    color: var(--color-secondary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.entry-content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: var(--color-secondary);
}

.entry-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 20px 30px;
    margin: 40px 0;
    background: rgba(0, 0, 0, 0.05);
    font-style: italic;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 30px 0;
}

/* ====================================
   HERO SECTION - MAIN CONTENT
==================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 50px;
    z-index: 10;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ====================================
   GLITCH TITLE - BASE STYLES (GLOBAL)
   Animació compartida per hero i logo
==================================== */
.hero-title {
    font-family: var(--font-display);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    animation: glitch-skew 2s infinite;
}

.hero-title::before,
.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-title::before {
    left: 2px;
    text-shadow: -2px 0 #ff0000;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.hero-title::after {
    left: -2px;
    text-shadow: 2px 0 #0000ff;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

/* Hero title gran (home page) */
.hero-section .hero-title {
    font-size: clamp(60px, 15vw, 180px);
    color: var(--color-light);
    letter-spacing: 8px;
    line-height: 0.9;
    margin-bottom: 30px;
}

.hero-section .hero-title::before,
.hero-section .hero-title::after {
    letter-spacing: 8px;
}

@keyframes glitch-skew {
    0% {
        transform: skew(0deg);
    }

    10% {
        transform: skew(0deg);
    }

    11% {
        transform: skew(-2deg);
    }

    12% {
        transform: skew(0deg);
    }

    90% {
        transform: skew(0deg);
    }

    91% {
        transform: skew(1deg);
    }

    92% {
        transform: skew(0deg);
    }

    100% {
        transform: skew(0deg);
    }
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    }

    5% {
        clip-path: polygon(0 15%, 100% 15%, 100% 18%, 0 18%);
    }

    10% {
        clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    }

    15% {
        clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    }

    20% {
        clip-path: polygon(0 8%, 100% 8%, 100% 14%, 0 14%);
    }

    25% {
        clip-path: polygon(0 33%, 100% 33%, 100% 37%, 0 37%);
    }

    30% {
        clip-path: polygon(0 71%, 100% 71%, 100% 78%, 0 78%);
    }

    35% {
        clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    }

    40% {
        clip-path: polygon(0 44%, 100% 44%, 100% 49%, 0 49%);
    }

    45% {
        clip-path: polygon(0 44%, 100% 44%, 100% 49%, 0 49%);
    }

    50% {
        clip-path: polygon(0 87%, 100% 87%, 100% 92%, 0 92%);
    }

    55% {
        clip-path: polygon(0 22%, 100% 22%, 100% 28%, 0 28%);
    }

    60% {
        clip-path: polygon(0 61%, 100% 61%, 100% 65%, 0 65%);
    }

    65% {
        clip-path: polygon(0 9%, 100% 9%, 100% 12%, 0 12%);
    }

    70% {
        clip-path: polygon(0 38%, 100% 38%, 100% 42%, 0 42%);
    }

    75% {
        clip-path: polygon(0 76%, 100% 76%, 100% 81%, 0 81%);
    }

    80% {
        clip-path: polygon(0 76%, 100% 76%, 100% 81%, 0 81%);
    }

    85% {
        clip-path: polygon(0 3%, 100% 3%, 100% 7%, 0 7%);
    }

    90% {
        clip-path: polygon(0 55%, 100% 55%, 100% 60%, 0 60%);
    }

    95% {
        clip-path: polygon(0 91%, 100% 91%, 100% 95%, 0 95%);
    }

    100% {
        clip-path: polygon(0 29%, 100% 29%, 100% 34%, 0 34%);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: polygon(0 84%, 100% 84%, 100% 89%, 0 89%);
    }

    5% {
        clip-path: polygon(0 84%, 100% 84%, 100% 89%, 0 89%);
    }

    10% {
        clip-path: polygon(0 41%, 100% 41%, 100% 47%, 0 47%);
    }

    15% {
        clip-path: polygon(0 6%, 100% 6%, 100% 11%, 0 11%);
    }

    20% {
        clip-path: polygon(0 73%, 100% 73%, 100% 79%, 0 79%);
    }

    25% {
        clip-path: polygon(0 27%, 100% 27%, 100% 31%, 0 31%);
    }

    30% {
        clip-path: polygon(0 27%, 100% 27%, 100% 31%, 0 31%);
    }

    35% {
        clip-path: polygon(0 94%, 100% 94%, 100% 98%, 0 98%);
    }

    40% {
        clip-path: polygon(0 48%, 100% 48%, 100% 54%, 0 54%);
    }

    45% {
        clip-path: polygon(0 13%, 100% 13%, 100% 17%, 0 17%);
    }

    50% {
        clip-path: polygon(0 63%, 100% 63%, 100% 68%, 0 68%);
    }

    55% {
        clip-path: polygon(0 63%, 100% 63%, 100% 68%, 0 68%);
    }

    60% {
        clip-path: polygon(0 19%, 100% 19%, 100% 24%, 0 24%);
    }

    65% {
        clip-path: polygon(0 82%, 100% 82%, 100% 88%, 0 88%);
    }

    70% {
        clip-path: polygon(0 36%, 100% 36%, 100% 41%, 0 41%);
    }

    75% {
        clip-path: polygon(0 4%, 100% 4%, 100% 8%, 0 8%);
    }

    80% {
        clip-path: polygon(0 69%, 100% 69%, 100% 75%, 0 75%);
    }

    85% {
        clip-path: polygon(0 69%, 100% 69%, 100% 75%, 0 75%);
    }

    90% {
        clip-path: polygon(0 24%, 100% 24%, 100% 29%, 0 29%);
    }

    95% {
        clip-path: polygon(0 89%, 100% 89%, 100% 93%, 0 93%);
    }

    100% {
        clip-path: polygon(0 51%, 100% 51%, 100% 56%, 0 56%);
    }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 300;
    color: var(--color-light);
    /* Subtítol fosc sobre fons clar */
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0;
    animation:
        fadeInUp 1.5s ease-out forwards,
        breatheFloat 16s linear 1.5s infinite;
    transform-origin: center center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(280px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animació de respiració i flotació orgànica - Moviment lineal continu */
@keyframes breatheFloat {
    0% {
        transform: translate(0px, 0px) scale(1);
        filter: blur(0px);
    }

    25% {
        transform: translate(0px, -3.5px) scale(1.035);
        filter: blur(1.8px);
    }

    50% {
        transform: translate(3px, 3.5px) scale(1.01);
        filter: blur(0.5px);
    }

    75% {
        transform: translate(-3.5px, 0px) scale(1.04);
        filter: blur(2px);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
        filter: blur(0px);
    }
}

/* Highlight text */
.highlight {
    color: var(--color-dark);
    font-weight: 800;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    color: var(--color-light);
    /* Fletxa fosca sobre fons clar */
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    transform: translateX(-50%);
}

.scroll-arrow:hover {
    color: var(--color-primary);
}

/* ====================================
   SECTIONS GRID
==================================== */
.sections-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3px;
    background: var(--color-primary);
    margin-top: 100px;
    z-index: 10;
}

.section-card {
    background: var(--color-dark);
    padding: 30px 40px 10px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    margin: 2px 0;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.section-card:hover::before {
    left: 100%;
}

.section-card:hover {
    background: rgba(255, 0, 51, 0.1);
    transform: scale(1.02);
}

.section-number {
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    right: 20px;
    line-height: 1;
}

.section-title {
    font-family: var(--font-title);
    font-size: 36px;
    color: var(--color-light);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.section-description {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* Estils per contingut WYSIWYG dins de section-description */
.section-description p {
    margin-bottom: 15px;
}

.section-description p:last-child {
    margin-bottom: 0;
}

.section-description strong,
.section-description b {
    font-weight: 600;
    color: var(--color-light);
}

.section-description em,
.section-description i {
    font-style: italic;
}

.section-description a {
    color: var(--color-secondary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.section-description a:hover {
    color: var(--color-primary);
}

.section-description ul,
.section-description ol {
    margin: 15px 0;
    padding-left: 25px;
}

.section-description ul li,
.section-description ol li {
    margin-bottom: 8px;
}

.section-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.section-list li {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-light);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-light);
    font-weight: bold;
    opacity: 0.7;
}

/* ====================================
   FLOATING ELEMENTS
==================================== */
.floating-label {
    position: fixed;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-primary);
    opacity: 0.3;
    z-index: 5;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.floating-label.label-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.floating-label.label-2 {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.floating-label.label-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ====================================
   FOOTER (GLOBAL)
==================================== */
.site-footer {
    position: relative;
    background: var(--color-dark);
    border-top: 3px solid var(--color-primary);
    padding: 80px 0px 40px;
    z-index: 10;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

/* Footer brand title amb efecte glitch */
.footer-brand .hero-title {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--color-light);
    letter-spacing: 4px;
    line-height: 1;
    margin: 0 0 20px 0;
}

.footer-brand .hero-title::before,
.footer-brand .hero-title::after {
    letter-spacing: 4px;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}


.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section.baixa {
    margin-top: 14px;
}

.footer-section.baixa.esq a {
    margin-top: -11px;
}

.footer-section h3 {
    font-family: var(--font-title);
    font-size: 20px;
    color: var(--color-light);
    text-transform: uppercase;
    margin-bottom: 20px;
}

p.puja {
    margin-top: -10px;
}

.footer-section p,
.footer-section a {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 3px solid var(--color-primary);
    text-align: center;
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--color-secondary);
}

/* ====================================
   ARTIST PAGE (SINGLE POST)
==================================== */
.artist-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 0px;
    z-index: 10;
}

.artist-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Artist Title */
.artist-header {
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

.artist-title {
    font-family: var(--font-display);
    font-size: clamp(50px, 10vw, 120px);
    font-weight: 900;
    color: var(--color-light);
    letter-spacing: 6px;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(245, 87, 108, 0.3);
}

/* Artist Image */
.artist-image-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease-out 0.3s backwards;
}

.artist-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.artist-image:hover {
    transform: scale(1.02);
}

/* Artist Subtitle */
.artist-subtitle {
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.artist-subtitle h2 {
    font-family: var(--font-title);
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    color: var(--color-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
}

/* Artist Description */
.artist-description {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: rgba(13, 15, 18, 0.3);
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 10px;
    animation: fadeIn 1s ease-out 0.9s backwards;
    text-align: left;
}

.artist-description p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

.artist-description p:last-child {
    margin-bottom: 0;
}

/* Artist Navigation */
.artist-navigation {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    animation: fadeIn 1s ease-out 1.2s backwards;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-light);
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(13, 15, 18, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    border-color: var(--color-primary);
    background: rgba(245, 87, 108, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.3);
}

.nav-arrow {
    font-size: 24px;
    font-weight: bold;
}

.nav-label {
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ====================================
   RESPONSIVE (HOME)
==================================== */
@media (max-width: 768px) {

    .site-header-global .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .site-header-global .burger-menu span {
        background: var(--color-dark);
    }

    .scroll-arrow {
        color: var(--color-dark);
    }

    .main-navigation {
        background: rgba(13, 15, 18, 0.4);
    }

    .hero-section {
        padding: 60px 30px;
    }

    .hero-title {
        font-size: 60px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .sections-grid {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .section-card {
        padding: 40px 30px;
    }

    .section-number {
        font-size: 80px;
    }

    .section-title {
        font-size: 28px;
    }

    .home .main-navigation {
        max-width: 100%;
        padding: 80px 30px 30px;
    }

    .home .main-navigation ul li a {
        font-size: 36px;
    }

    .floating-label {
        display: none;
    }

    .site-footer {
        padding: 60px 30px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .site-logo .hero-title {
        color: var(--color-dark);
    }

    .main-navigation {
        max-width: none;
    }
}

/* ====================================
   CONTACT PAGE - BRUTALIST EDITORIAL DESIGN
==================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 60vh;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    padding: 100px 50px 80px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(244, 98, 78, 0.03) 2px,
            rgba(244, 98, 78, 0.03) 4px);
    pointer-events: none;
}

.contact-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.contact-hero-label {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.contact-label-text {
    font-family: var(--font-title);
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.contact-label-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right,
            var(--color-primary),
            transparent);
    max-width: 200px;
}

.contact-hero-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 12vw, 140px);
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 0.9;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: slideInUp 0.8s ease 0.2s forwards;
}

.contact-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
    height: 4px;
    background: var(--color-primary);
}

.contact-hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-gray);
    max-width: 600px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.4s forwards;
}

.contact-hero-decoration {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    opacity: 0.1;
    color: var(--color-primary);
    animation: float 6s ease-in-out infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        transform: translateY(-55%) rotate(5deg);
    }
}

/* Contact Grid Section */
.contact-grid {
    background: var(--color-light);
    padding: 100px 50px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    position: sticky;
    top: 120px;
}

.contact-info-block {
    margin-bottom: 60px;
    position: relative;
    padding-left: 80px;
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.contact-info-block:nth-child(1) {
    animation-delay: 0.2s;
}

.contact-info-block:nth-child(2) {
    animation-delay: 0.4s;
}

.contact-info-block:nth-child(3) {
    animation-delay: 0.6s;
}

.contact-info-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
}

.contact-info-title {
    font-family: var(--font-title);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.contact-info-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray);
}

.contact-info-content p {
    margin: 0;
}

.contact-email-link {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.contact-email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.contact-email-link:hover {
    color: var(--color-primary);
}

.contact-email-link:hover::after {
    width: 100%;
}

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social-link {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
    width: fit-content;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-social-link::before {
    content: '→';
    margin-right: 10px;
    color: var(--color-primary);
    transition: margin-right 0.3s ease;
}

.contact-social-link:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.contact-social-link:hover::before {
    margin-right: 15px;
}

.contact-statement {
    margin-top: 80px;
    padding: 30px;
    background: var(--color-dark);
    color: var(--color-light);
    font-family: var(--font-title);
    font-size: 18px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.contact-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
}

.contact-statement p {
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Contact Form */
.contact-form-wrapper {
    opacity: 0;
    animation: slideInRight 0.8s ease 0.4s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-header {
    margin-bottom: 50px;
}

.contact-form-title {
    font-family: var(--font-title);
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.contact-form-line {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
}

.contact-form {
    background: transparent;
}

.form-group {
    margin-bottom: 40px;
    position: relative;
}

.form-label {
    display: block;
    font-family: var(--font-title);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--color-dark);
    font-weight: 600;
}

.form-required {
    color: var(--color-primary);
    margin-left: 4px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-size: 16px;
    color: var(--color-dark);
    font-family: inherit;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: var(--color-primary);
}

.form-input:focus+.form-input-line,
.form-textarea:focus+.form-input-line {
    transform: scaleX(1);
}

.form-input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-submit-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.form-submit-btn {
    background: var(--color-dark);
    color: var(--color-light);
    border: none;
    padding: 20px 50px;
    font-family: var(--font-title);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.form-submit-btn:hover::before {
    left: 0;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.btn-text,
.btn-arrow {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.form-submit-note {
    font-size: 13px;
    color: var(--color-gray);
    font-style: italic;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    display: none;
    font-size: 14px;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Validation Errors */
.form-input.error,
.form-textarea.error {
    border-bottom-color: #dc3545;
}

.field-error-msg {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 8px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Map (Optional) */
.contact-map {
    position: relative;
    height: 500px;
    background: var(--color-gray);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.8;
}

.contact-map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
}

.contact-map-label {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 10px;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        position: relative;
        top: 0;
    }

    .contact-hero {
        padding: 80px 30px 60px;
        min-height: 50vh;
    }

    .contact-hero-decoration {
        display: none;
    }

    .contact-grid {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .contact-info-block {
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .contact-info-number {
        font-size: 36px;
    }

    .contact-info-title {
        font-size: 20px;
    }

    .contact-form-title {
        font-size: 24px;
    }

    .form-submit-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-map-label {
        font-size: 40px;
        letter-spacing: 5px;
    }

    .contact-statement {
        font-size: 16px;
        margin-top: 40px;
        padding: 20px;
    }
}