/* Farge Mobile - style.css */

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* -- Custom Fonts ------------------------------------------ */
@font-face {
    font-family: 'SaCinta';
    src: url('/fonts/cinta.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'AFontWithSerifs';
    src: url('/fonts/A_Font_with_Serifs.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Bookos';
    src: url('/fonts/BOOKOS.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('/images/logos/web_bg.webp') center center / cover fixed no-repeat;
    min-height: 100vh;
}

/* Container for consistent width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #636282;
}

nav .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 1rem;
}

nav ul:first-child {
    justify-content: flex-end;
    margin-right: 2rem;
}

nav ul:last-child {
    justify-content: flex-start;
    margin-left: 2rem;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #fff3b5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.4rem;
    font-family: 'SaCinta', cursive;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: #636282;
}

.logo-item {
    justify-self: center;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s, opacity 0.3s;
}

.logo-item:hover .logo-img {
    transform: scale(1.05);
    opacity: 0.85;
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #fff3b5;
    border-bottom: 3px solid #636282;
    padding-bottom: 1rem;
    font-family: 'SaCinta', cursive;
    letter-spacing: 3px;
}

.section-intro {
    text-align: center;
    color: #fff3b5;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-family: 'Bookos', serif;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #636282;
    color: #fff3b5;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: 2px solid #636282;
    margin-top: 1rem;
    font-family: 'Bookos', serif;
    letter-spacing: 1px;
}

.btn:hover {
    background: #4f4e6a;
    transform: translateY(-2px);
}

.btn-center {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 250px;
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   TOUR DATES
   ============================================================ */
.tour-dates {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 2rem;
}

.tour-date {
    background: #2a2a2a;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-left: 4px solid #636282;
}

.tour-date:last-child {
    margin-bottom: 0;
}

.tour-date:hover {
    background: #333;
}

.date-info h3 {
    color: #fff3b5;
    margin-bottom: 0.5rem;
    font-family: 'Bookos', serif !important;
    font-size: 1.3rem !important;
    font-weight: bold;
    letter-spacing: normal !important;
}

.date-info p {
    color: #fff3b5;
    font-family: 'Bookos', serif;
}

.tour-preview p,
.tour-dates p,
.no-upcoming {
    font-family: 'Bookos', serif;
    color: #fff3b5;
}

.date-btn {
    padding: 0.5rem 1.5rem;
    background: #636282;
    color: #fff3b5;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    transition: background 0.3s;
    font-family: 'Bookos', serif;
    white-space: nowrap;
}

.date-btn:hover {
    background: #4f4e6a;
}

/* ============================================================
   BAND MEMBERS
   ============================================================ */
.band-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.member-preview,
.member {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.member-preview:hover,
.member:hover {
    transform: translateY(-10px);
}

.member-photo {
    height: 250px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: #fff3b5;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-family: 'SaCinta', cursive;
    letter-spacing: 2px;
}

.member-info p {
    color: #fff3b5;
    font-style: italic;
    font-family: 'Bookos', serif;
}

.member-bio {
    color: #fff3b5;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    font-family: 'Bookos', serif;
}

/* ============================================================
   PAGE HEADERS
   ============================================================ */
.page-header {
    text-align: center;
    padding: 6rem 2rem 2rem;
    margin-top: 60px;
    background: transparent;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #fff3b5;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'SaCinta', cursive;
}

.page-header p {
    color: #fff3b5;
    font-size: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Bookos', serif;
}

.content {
    padding: 3rem 0;
}

/* ============================================================
   CONTACT & SOCIAL
   ============================================================ */
.contact-section {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-section h2 {
    color: #fff3b5;
    margin-bottom: 1rem;
    font-size: 2.1rem;
    border: none;
    padding: 0;
    max-width: none;
    font-family: 'SaCinta', cursive;
    letter-spacing: 2px;
}

.contact-section p {
    color: #fff3b5;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Bookos', serif;
}

.contact-section a {
    color: #636282;
    text-decoration: none;
    font-size: 1.6rem;
    font-family: 'Bookos', serif;
}

.contact-section a:hover {
    color: #4f4e6a;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #333;
    border-color: #636282;
    transform: translateY(-5px);
}

.social-link a {
    color: #636282;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Bookos', serif;
}

/* Contact Page Social Icons */
.contact-social-icons {
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem !important;
    grid-template-columns: unset !important;
    margin-top: 2rem;
}

.contact-social-icons a {
    color: #fff3b5;
    font-size: 3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    width: 80px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #636282;
}

.contact-social-icons a:hover {
    color: #fff3b5;
    background: #636282;
    transform: translateY(-5px) scale(1.1);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-box {
    background: linear-gradient(135deg, #636282, #4f4e6a);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    color: #fff3b5;
}

.newsletter-box h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
    color: #fff3b5;
    max-width: none;
    font-family: 'SaCinta', cursive;
    letter-spacing: 3px;
}

.newsletter-box p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Bookos', serif;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Bookos', serif;
}

.newsletter-form button {
    width: 100%;
    padding: 1rem 2rem;
    background: #222;
    color: #fff3b5;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.4rem;
    font-family: 'Bookos', serif;
}

.newsletter-form button:hover {
    background: #000;
}

.benefits {
    margin-top: 3rem;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
}

.benefits h3 {
    color: #636282;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-family: 'SaCinta', cursive;
    letter-spacing: 2px;
}

.benefits ul {
    list-style: none;
    color: #fff3b5;
}

.benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Bookos', serif;
}

.benefits li:before {
    content: "✓";
    color: #636282;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #0a0a0a;
    color: #fff3b5;
    text-align: center;
    padding: 2rem;
    border-top: 2px solid #636282;
}

footer p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-family: 'Bookos', serif;
    color: #fff3b5;
}

footer a {
    color: #636282;
    text-decoration: none;
    font-family: 'Bookos', serif;
}

footer a:hover {
    color: #4f4e6a;
}

footer .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    grid-template-columns: unset;
    margin-top: 0;
}

footer .social-links a {
    color: #fff3b5;
    font-size: 2.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .social-links a:hover {
    color: #636282;
    transform: translateY(-3px);
}

footer .social-links i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay for content sections */
.tour-dates,
.contact-section,
.newsletter-archive,
.newsletter-box,
.benefits {
    background: rgba(0, 0, 0, 0.6) !important;
    border-radius: 10px;
}

/* ============================================================
   RESPONSIVE — TABLET  (max-width: 900px)
   ============================================================ */
@media (max-width: 900px) {
    .band-members {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    section h2 {
        font-size: 2.6rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }
}

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

    /* --- Nav ------------------------------------------------ */
    nav {
        padding: 0.75rem 0;
        background: rgba(0, 0, 0, 0.75);
    }

    nav .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .logo-item {
        order: -1;
        margin-bottom: 0.25rem;
    }

    .logo-img {
        height: 44px;
    }

    nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
        margin: 0 !important;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        font-size: 1.05rem;
        padding: 0.25rem 0.5rem;
        display: inline-block;
    }

    /* --- Page header --------------------------------------- */
    .page-header {
        margin-top: 110px; /* taller mobile nav */
        padding: 2rem 1.25rem 1rem;
    }

    .page-header h1 {
        font-size: 2.1rem;
        letter-spacing: 1px;
    }

    .page-header p {
        font-size: 1.2rem;
    }

    /* --- Sections ------------------------------------------ */
    section {
        padding: 2.5rem 0;
    }

    section h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .section-intro {
        font-size: 1.15rem;
        padding: 0 0.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .content {
        padding: 1.5rem 0;
    }

    /* --- Gallery ------------------------------------------- */
    .gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    /* --- Tour dates ---------------------------------------- */
    .tour-dates {
        padding: 1.25rem;
    }

    .tour-date {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.1rem;
        gap: 0.75rem;
    }

    .date-btn {
        margin-top: 0;
        align-self: flex-start;
        padding: 0.5rem 1.2rem;
        font-size: 1rem;
    }

    /* --- Band members -------------------------------------- */
    .band-members {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .member-preview:hover,
    .member:hover {
        transform: none; /* avoid jarring lift on touch */
    }

    .member-photo {
        height: 220px;
    }

    /* --- Contact ------------------------------------------- */
    .contact-section {
        padding: 1.25rem;
    }

    .contact-section h2 {
        font-size: 1.7rem;
    }

    .contact-section p,
    .contact-section a {
        font-size: 1.2rem;
    }

    .contact-social-icons {
        gap: 1.25rem !important;
        justify-content: center;
    }

    .contact-social-icons a {
        width: 62px;
        height: 55px;
        font-size: 2rem;
    }

    /* --- Newsletter ---------------------------------------- */
    .newsletter-box {
        padding: 2rem 1.25rem;
    }

    .newsletter-box h2 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .newsletter-box p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        font-size: 1rem;
    }

    /* --- Benefits ------------------------------------------ */
    .benefits {
        padding: 1.25rem;
    }

    .benefits h3 {
        font-size: 1.5rem;
    }

    /* --- Footer -------------------------------------------- */
    footer {
        padding: 1.5rem 1rem;
    }

    footer p {
        padding: 0;
        font-size: 0.95rem;
    }

    footer .social-links {
        gap: 1.25rem;
    }

    footer .social-links a {
        font-size: 1.7rem;
    }

    footer .social-links i {
        width: 32px;
        height: 32px;
    }

    /* --- Buttons ------------------------------------------- */
    .btn {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }

    .btn-center {
        margin-top: 1.5rem;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    nav ul li a {
        font-size: 0.95rem;
    }

    .logo-img {
        height: 38px;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1.05rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .member-info h3 {
        font-size: 1.35rem;
    }

    .gallery-item {
        height: 175px;
    }

    .contact-social-icons a {
        width: 54px;
        height: 50px;
        font-size: 1.7rem;
    }

    .newsletter-box h2 {
        font-size: 1.5rem;
    }

    .benefits h3 {
        font-size: 1.3rem;
    }

    footer .social-links a {
        font-size: 1.5rem;
    }
}