/* UNIVERSAL */

* {
    box-sizing: border-box;
}

.content {
    width: 70%;
    height: 100%;
    margin: 0 auto;
    padding: 100px;
    min-height: 100vh;
}

.home-colours {
    width: 65%;
    padding-top: 50px;
    margin: 0 auto;
}

.gap {
    height: 100px;
}

h1 {
    margin-top: 3%;
    margin-bottom: 5px;
    color: #F2F1ED;
    font-size: 68px;
    font-style: normal;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}

.title {
    padding-top: 15px;
}

body {
    font-family: "futura-100", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: #F2F1ED;
    --header-gradient: linear-gradient(to right, #C53A38,#E86A3A,#F8AF4B,#317A5C,#2D76A9,#785675);
    background-image: linear-gradient(to bottom,
    rgba(242, 241, 237, 0) 0px,
    rgba(242, 241, 237, 0) 150px,
    rgba(242, 241, 237, 0.15) 230px,
    rgba(242, 241, 237, 0.5) 300px,
    rgba(242, 241, 237, 0.85) 380px,
    rgba(242, 241, 237, 1) 450px
    ), var(--header-gradient);
    background-size: 100% 450px;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow-x: hidden;
}

body.home-page {
    background-image: linear-gradient(to bottom,
    rgba(242, 241, 237, 0) 0px,
    rgba(242, 241, 237, 0) 350px,
    rgba(242, 241, 237, 0.15) 430px,
    rgba(242, 241, 237, 0.5) 500px,
    rgba(242, 241, 237, 0.85) 580px,
    rgba(242, 241, 237, 1) 650px
    ), var(--header-gradient);

    background-size: 100% 650px;
}

body.category-red { --header-gradient: linear-gradient(to bottom, #C53A38, #C53A38); }
body.category-orange { --header-gradient: linear-gradient(to bottom, #E86A3A, #E86A3A); }
body.category-yellow { --header-gradient: linear-gradient(to bottom, #F8AF4B, #F8AF4B); }
body.category-green { --header-gradient: linear-gradient(to bottom, #317A5C, #317A5C); }
body.category-blue { --header-gradient: linear-gradient(to bottom, #2D76A9, #2D76A9); }
body.category-purple { --header-gradient: linear-gradient(to bottom, #785675, #785675); }

/* nav bar */
nav {
    width: 98%;
    background-color: #faf9f5;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 1%;
    border-radius: 30px;
    padding-left: 5px;
    padding-right: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display:flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 2;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 20px;
}

/* changes hamburger menu to x when open */
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: #0a0000;
    margin-top: 0;
    margin-bottom: 5px;
    margin-left: 0;
    margin-right: 0;
    transition: 0.4s;
}

.nav-list {
    display: flex;
    padding-right: 5%;
    align-items: center;
}

/* nav bar mobile - full screen */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 999;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        height: 100vh;
        background-color: #faf9f5;
        z-index: 998;
        padding-top: 120px;
        padding-right: 8%;
        padding-left: 5%;
        overflow-y: auto;
        box-sizing: border-box;
        box-shadow: -10px 0 25px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

    .nav-list.show {
        transform: translateX(0);
    }

    .nav-list li {
        margin-right: 0;
        margin-bottom: 25px;
        width: 100%;
    }

    .nav-list li a {
        font-size: 28px;
        display: inline-block;
    }

    /* submenu */
    nav li.dropdown {
        align-items: flex-end;
    }

    nav ul.submenu {
        position: static !important;
        width: 100%;
        box-shadow: none !important;
        background-color: transparent !important;
        padding-right: 20px;
        margin-top: 15px;
        border-right: 4px solid;
        border-image: linear-gradient(to bottom, #C53A38,#E86A3A,#F8AF4B,#317A5C,#2D76A9,#785675) 1;
    }

    nav li.dropdown:hover ul.submenu {
        display: none !important;
    }

    nav li.dropdown.mobile-expanded ul.submenu {
        display: flex !important;
        flex-direction: column;
        align-items: flex-end;
    }

    nav ul.submenu li {
        margin-bottom: 15px;
        padding: 0;
    }

    nav ul.submenu li a {
        font-size: 20px;
        font-weight: normal;
        color: #444;
    }

    .content {
        width: 85%;
        padding: 100px 20px 100px 20px;
    }

    .logo {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .logo img {
        max-height: 40px !important;
    }

    body {
        background-image: linear-gradient(to bottom,
        rgba(242, 241, 237, 0) 0px,
        rgba(242, 241, 237, 0) 250px,
        rgba(242, 241, 237, 0.15) 290px,
        rgba(242, 241, 237, 0.5) 370px,
        rgba(242, 241, 237, 0.85) 430px,
        rgba(242, 241, 237, 1) 500px
        ), var(--header-gradient);

        background-size: 100% 500px;
    }

    body.home-page {
        background-image: linear-gradient(to bottom,
        rgba(242, 241, 237, 0) 0px,
        rgba(242, 241, 237, 0) 450px,
        rgba(242, 241, 237, 0.15) 490px,
        rgba(242, 241, 237, 0.5) 530px,
        rgba(242, 241, 237, 0.85) 570px,
        rgba(242, 241, 237, 1) 600px
        ), var(--header-gradient);

        background-size: 100% 600px;
    }

    h1 {
        margin-top: 35px;
        font-size: clamp(20px, 7vw, 60px) !important;
    }
}

.logo {
    margin-left: 5%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.logo img {
    max-height: 40px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 18px;
    text-transform: uppercase;
}

nav ul li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #0a0000;
    font-weight: normal;
    position: relative;
}

nav li.active a,
nav a:hover {
    background: linear-gradient(to right, #C53A38,#E86A3A,#F8AF4B,#317A5C,#2D76A9,#785675);
    background-attachment: fixed;
    background-clip: text;
    color: transparent;
}

.active {
    background: linear-gradient(to right, #C53A38,#E86A3A,#F8AF4B,#317A5C,#2D76A9,#785675);
    background-attachment: fixed;
    background-clip: text;
    color: transparent;
}

/* --- DROPDOWN MENU (DESKTOP) --- */

nav li.dropdown {
    position: relative;
}


nav ul.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #faf9f5;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    flex-direction: column;
    text-transform: capitalize !important;
}


nav li.dropdown:hover ul.submenu {
    display: flex;
}


nav ul.submenu li {
    margin-right: 0;
    padding: 12px 20px;
    width: 100%;
}

nav ul.submenu li a {
    display: block;
    width: 100%;
}

nav ul.submenu li a::after {
    display: none;
}

nav ul.submenu li a:hover {
    background: linear-gradient(to right, #C53A38,#E86A3A,#F8AF4B,#317A5C,#2D76A9,#785675);
    background-attachment: fixed;
    background-clip: text;
    color: transparent;
}

/* HOME PAGE */
#content-home {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 70px 5% 60px 5%;
    text-align: left;
}

#content-home h2 {
    color: #F2F1ED !important;
    margin-top: 5px;
    font-size: 30px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-top: 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #27213C;
}

/* homepage specific grid centering */
.featured-stories .story-grid {
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.zine-teaser {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 60px 20px;
    margin: 40px 0;
}

.zine-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.zine-text {
    flex: 1;
    min-width: 300px;
}

.zine-text .section-title{
    margin-top: 0;
}

.zine-image {
    flex: 1;
    min-width: 300px;
}

.zine-placeholder {
    width: 100%;
    aspect-ratio: 3/2;
    background: linear-gradient(135deg, #f7a69d, #ccb0e0);
    border-radius: 5px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.zine-placeholder img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

/* buttons at the bottom */
.home-actions {
    text-align: center;
    margin: 60px 0;
}

.btn-text {
    color: #27213C;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #785675;
    padding-bottom: 2px;
}

.btn-text:hover {
    color: #785675;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    color: white;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    text-decoration: none;
    border-radius: 25px;
    margin: 10px;
    background-color: transparent;
    transition: transform 0.2s, background-color 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.home-actions .btn {
    display: inline-block;
    padding: 12px 24px;
    color: black;
    border-style: solid;
    border-width: 2px;
    border-color: black;
    text-decoration: none;
    border-radius: 25px;
    margin: 10px;
    background-color: transparent;
    transition: transform 0.2s, background-color 0.3s;
    cursor: pointer;
}

.home-actions .btn:hover {
    transform: translateY(-1px);
    background-color: rgba(0, 0, 0, 0.05);
}

/* STORIES */
.archive-header {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    gap: 30px; 
    margin-top: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.archive-header h1 {
    margin: 0 !important;
    font-size: 60px;
    color: #F2F1ED !important;
}

.filter-sort-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%; 
}

.filter-sort-form .select-wrapper {
    width: 100%;
}

.filter-sort-form .select-wrapper select {
    width: 100%;
    text-align: center; 
    text-align-last: center; 
}

/* TABLET/LAPTOP (Medium Screens)*/
@media (min-width: 769px) and (max-width: 1050px) {

    .archive-header {
        align-items: flex-start;
    }

    .filter-sort-form {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }
}

/* CUSTOM PILL DROPDOWNS */
.select-wrapper {
    position: relative;
    display: inline-block;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #F2F1ED;
    color: #F2F1ED;
    padding: 8px 35px 8px 15px;
    border-radius: 20px;
    font-family: inherit;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s, color 0.3s;
}

.select-wrapper select:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px) !important;
}

.select-wrapper::after {
    content: "▾";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-60%);
    color: #F2F1ED;
    pointer-events: none;
    font-size: 16px;
}

.select-wrapper select option {
    background-color: #FFFFFF;
    color: #000000;
    text-transform: capitalize;
}

.select-wrapper select option:hover,
.select-wrapper select option:focus,
.select-wrapper select option:checked {
    background-color: #E8E8E8 !important;
    color: #000000 !important;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
    width: 100%;
}

/* maximum of 3 columns per row */
@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* STORIES MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

    .archive-header {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .archive-header h1 {
        font-size: clamp(36px, 10vw, 60px) !important;
        text-align: center;
        line-height: 1.1;
    }

    .filter-sort-form {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .select-wrapper {
        width: 100%;
    }

    .select-wrapper select {
        width: 100%;
        text-align: center;
    }

    .featured-stories .story-grid {
        width: 90%;
        grid-template-columns: 1fr !important;
    }
}

.story-card {
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
    padding: 30px;
    border-radius: 12px;
    background-color: #fffffa;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    --card-color: transparent;
    background-image: linear-gradient(to top, var(--card-color) 0%, rgba(255, 255, 255, 0) 15%);
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.story-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.category-red    { --card-color: rgba(197, 58, 56, 0.7); }
.category-orange { --card-color: rgba(232, 106, 58, 0.7); }
.category-yellow { --card-color: rgba(248, 175, 75, 0.7); }
.category-green  { --card-color: rgba(49, 122, 92, 0.7); }
.category-blue   { --card-color: rgba(45, 118, 169, 0.7); }
.category-purple { --card-color: rgba(120, 86, 117, 0.7); }

/* VIEW STORY */
.full-story-container {
    max-width: 800px; /* comfortable reading width */
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* responsive media */
.story-media {
    margin: 20px 0;
    text-align: center;
}

.story-media img,
.story-media video {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.story-media audio {
    width: 100%;
    margin-top: 10px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #555;
    font-weight: bold;
}

.back-link:hover {
    color: #000;
}

/* media plyr customisation depending on category */
:root {
    --plyr-color-main: #9961c1;
}

.category-red { --plyr-color-main: #C53A38; }
.category-orange { --plyr-color-main: #E86A3A; }
.category-yellow { --plyr-color-main: #F8AF4B; }
.category-green { --plyr-color-main: #317A5C; }
.category-blue { --plyr-color-main: #2D76A9; }
.category-purple { --plyr-color-main: #785675; }

.plyr--full-ui input[type=range] {
    color: var(--plyr-color-main) !important;
}

.plyr__control--overlaid {
    background: var(--plyr-color-main) !important;
}

.plyr--audio .plyr__control.plyr__tab-focus,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[aria-expanded=true] {
    background: var(--plyr-color-main) !important;
    color: #fff;
}

/* transcript area */
.transcript-container {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.transcript-btn {
    background: none;
    border: 1px solid #27213C;
    padding: 8px 16px;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.transcript-btn:hover {
    background: #27213C;
    color: #FFFDF1;
}

.transcript-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    text-align: left;
}

.transcript-content.show {
    max-height: 1000px;
}

.transcript-inner {
    padding: 15px;
    font-style: italic;
    line-height: 1.6;
    color: #555;
    background: rgba(0,0,0,0.02);
    margin-top: 10px;
    border-radius: 8px;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s;
    font-size: 0.8em;
    margin-left: 5px;
}

/* ABOUT */

.subtitle {
    font-size: 24px;
    color: #F2F1ED;
    font-style: italic;
}

.about-section:first-of-type {
    margin-top: 100px;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 6;
}

.about-text h2 {
    color: #27213C;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.6;
    font-size: 18px;
    color: #333;
}

.about-image {
    flex: 4;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.05);
}

.about-image .zine-placeholder {
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    box-shadow: none;
}

.colour-icon img {
    box-shadow: none !important;
    width: 100%;
    height: auto;
}

.about-image.colour-icon {
    flex: 0 0 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text.colour-icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text.colour-icon h2 {
    margin-bottom: 5px;
}

.about-text.colour-icon p {
    margin-top: 0;
}

h2.centre {
    text-align: center !important;
    margin-bottom: 10px !important;
}

.contact-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.contact-cta h2 {
    color: #27213C;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-instagram {
    display: inline-block;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background: #27213C;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    transition: transform 0.2s, background-color 0.3s;
}

.btn-instagram:hover {
    background: #785675;
    transform: translateY(-1px);
}

/* mobile adjustments */
@media (max-width: 768px) {
    .about-section, .about-section.reverse {
        flex-direction: column;
        text-align: center;
    }

    .about-section:first-of-type {
        margin-top: 220px;
    }

    .about-section:has(.colour-icon) {
        display: grid;
        grid-template-columns: 60px 1fr;
        grid-template-areas: "icon title" "text text";
        gap: 5px 20px;
        align-items: center;
        text-align: left;
    }

    .about-text.colour-icon {
        display: contents;
    }

    .about-image.colour-icon {
        grid-area: icon;
        flex: none;
        margin: 0;
        width: 100%;
    }

    .about-text.colour-icon h2 {
        grid-area: title;
        margin: 0;
        font-size: 26px;
    }

    .about-text.colour-icon p {
        grid-area: text;
        margin-top: 10px;
    }
}

/* SUBMIT PAGE */
.submit-intro {
    width: 90%;
    padding-top: 150px;
    margin: 0 auto;
}

.submit-outro {
    width: 90%;
    margin: 0 auto;
}

.submit-container {
    margin: 50px auto 0;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.submit-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    font-weight: bold;
    color: #27213C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    font-family: inherit;
    font-size: 16px;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    width: 100%;
    resize: none;
}

.form-group .select-wrapper {
    width: 100%;
}

.form-group .select-wrapper select {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333;
    text-transform: none;
    font-size: 16px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #785675;
    background-color: #ffffff;
}

/* trap for bots */
.honeypot-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* For Chrome, Safari, Edge, and Opera */
.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
.form-group input[type="number"] {
    -moz-appearance: textfield;
}

.submit-btn {
    background-color: #27213C !important;
    color: #ffffff !important;
    border-color: #27213C !important;
    padding: 15px 40px !important;
    font-size: 18px !important;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #785675 !important;
    border-color: #785675 !important;
    transform: translateY(-1px);
}

/* mobile version */
@media (max-width: 768px) {
    .submit-intro {
        width: 98%;
        padding-top: 250px;
        margin: 0 auto;
    }

    .submit-outro {
        width: 98%;
        margin: 0 auto;
    }

    .submit-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ZINE DOWNLOAD PAGE */

.zine-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.zine-card {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zine-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.zine-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: inherit;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.zine-card h2 {
    font-size: 24px;
    color: #27213C;
    margin: 0 0 10px 0;
}

.zine-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-download {
    display: block;
    width: 100%;
    background-color: #27213C;
    color: #ffffff;
    padding: 15px 0;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-download:hover {
    background-color: #785675;
    color: #ffffff;
    transform: translateY(-1px);
}

/* FOOTER */
:root {
    --footer-bg: rgba(255, 255, 255, 0.5);
    --footer-text-color: #555555;
    --footer-link-color: #111111;
    --footer-link-hover-color: #404040;
    --footer-border-color: rgba(0, 0, 0, 0.1);
}

.footer-centered {
    background-color: var(--footer-bg);
    color: var(--footer-text-color);
    padding: 2.5rem 1.5rem;
    border-top: 1px solid var(--footer-border-color);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
}

.footer-centered__container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-sizing: border-box;
}

/* --- FOOTER LOGO HOVER CROSSFADE --- */

.footer-centered__logo {
    display: block;
    position: relative; 
    width: 60px; /* Assuming your Icon is roughly square. Adjust if it's wider! */
    height: 60px;
    margin: 0 auto; /* Centers the logo block horizontally */
}

.footer-centered__logo img {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the icon scales neatly */
    transition: opacity 0.3s ease-in-out; 
}

/* Hide the hover logo by default */
.footer-centered__logo .logo-hover {
    opacity: 0;
}

/* When the user hovers over the link... */
.footer-centered__logo:hover .logo-main {
    opacity: 0; 
}

.footer-centered__logo:hover .logo-hover {
    opacity: 1; 
}

.footer-centered__logo path {
    fill: #333;
}

.footer-centered__nav ul,
.footer-centered__social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-centered__nav a,
.footer-centered__social a {
    color: var(--footer-link-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.footer-centered__nav a:hover,
.footer-centered__social a:hover {
    color: var(--footer-link-hover-color);
}

.footer-centered__social svg {
    width: 22px;
    height: 22px;
    fill: var(--footer-text-color);
    transition: fill 0.2s ease-in-out;
}

.footer-centered__social a:hover svg {
    fill: var(--footer-link-hover-color);
}

.footer-centered__copyright {
    font-size: 0.875rem;
    margin: 0;
}

/* mobile */
@media (max-width: 768px) {
    .footer-centered__nav ul {
        gap: 1rem;
    }
}