:root {
    --bg-color: #0d0d0d;
    --text-main: #f5f5f5;
    --text-muted: #888888;
    --accent-blue: #3a5a80; 
    --accent-blue-hover: #5c84b8;
    --border-color: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    position: relative; 
}

h1, h2, .logo-text {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.background-watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1; 
    pointer-events: none; 

    background-image: url('images/retro.png'); 
    background-position: center center;
    background-size: 80%; 
    background-repeat: no-repeat;
    opacity: 0.04; 
}

.navbar {
    display: flex;
    justify-content: left;
    align-items: left;
    padding: 10px 30px; 
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(13, 13, 13, 0.8); 
    backdrop-filter: blur(10px);      
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 

    transition: all 0.4s ease;
}

.nav-item {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 20px;
    font-size: 24px;
    letter-spacing: 2px;

    transition: color 0.3s ease;
}

.nav-item span {
    position: relative;
    z-index: 2;
}

.bio-container {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.bio-text {
    flex: 1.2;
}

.bio-image-side {
    flex: 1;
}

.bio-image-side img {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.bio-text p {
    font-size: 19px; 
    line-height: 1.8;
}

.team-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-main);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}


.team-member h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: var(--text-main);
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.member-role {
    font-size: 14px;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );

    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-item:hover {
    color: var(--text-main);
}

.nav-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-item.active {
    color: var(--text-main);
}

.nav-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
}

.hero-section {

    padding-top: 70px;
    padding-bottom: 80px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-kicker {
    font-family: 'Oswald', sans-serif;
    color: var(--accent-blue);
    letter-spacing: 4px;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px; 
}
.hero-logo {
    max-width: 250px; 
    width: 100%; 
    height: auto;
    margin-bottom: 10px; 
    display: inline-block;
}
.hero-content p {
    font-size: 18px; 
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8; 
}

.section-divider {
    border: 0;
    height: 2px;

    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    width: 70%; 
    max-width: 500px; 
    margin: 5px auto; 
}

.btn-outline, .btn-ticket, .btn-rsvp {
    display: inline-block;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 2px; 
}

.t-status { 
    width: 20%; 
    text-align: right; 
    padding-right: 10px; 
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.status-confirmed {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    letter-spacing: 1px;
}

.status-private { 
    color: var(--accent-blue); 
}

.status-tbc {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.btn-outline  {
    display: inline-block;
    border: 1px solid #000000;
    background-color: #ffffff; 
    color: #000000; 
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    padding: 12px 20px;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 2px;

    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 100%;
    background-color: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.btn-outline:hover {
    background-color: #000000; 
    color: #ffffff; 
    border-color: #000000;
}

.btn-outline:hover::before {
    transform: translateX(0);
}

.t-status { 
    width: 20%; 
    text-align: right; 
    padding-right: 10px; 
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.status-confirmed { 
    color: var(--text-main); 
}

.status-private { 
    color: var(--accent-blue); 
}

.status-tbc { 
    color: var(--text-muted); 
    font-style: italic;
}

.tour-section, .bio-section {
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-section h2, .bio-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-main);
}

.tour-header {
    display: flex;
    padding: 15px 10px;

    background: rgba(255, 255, 255, 0.05); 
    border-bottom: 1px solid rgba(255,255,255,0.3);

    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.tour-header div {
    opacity: 0.7;
}

.tour-header .t-venue {
    color: white; 
}
.tour-header div:not(:last-child),
.tour-row div:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.08);
    padding-right: 15px;
    margin-right: 15px;
}
.tour-header {
    backdrop-filter: blur(4px);
}
.tour-row {
    display: flex;
    align-items: center;
    padding: 22px 10px;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}
.tour-container {
    position: relative;
}

.tour-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
}

.t-date {
    flex: 1;
    font-size: 14px;
    color: var(--text-muted);
}

.t-venue {
    flex: 2;
    font-size: 18px; 
    color: var(--text-main);
}

.t-location {
    flex: 1.5;
    font-size: 15px;
    color: var(--text-muted);
}

.t-status {
    flex: 1;
    text-align: right;
}

.tour-row:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(6px); 
}
.contactbot{

	font-size:20px;

}
.footer {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer .credit {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer .credit:hover {
    opacity: 1;
}

.team-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-main);
}

.team-banner {
    margin-bottom: 50px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}
/* La grille pour aligner les 3 gars */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-member {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.member-img {
    width: 100%; 
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
 
}

.team-member:hover .member-img {
    filter: sepia(0%) grayscale(0%);
}

.team-member h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: var(--text-main);
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.member-role {
    font-size: 14px;
    color: var(--accent-blue); 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.t-date { width: 20%; padding-left: 10px; font-family: 'Oswald', sans-serif; }
.t-venue { width: 35%; font-weight: bold; }
.t-location { width: 25%; color: var(--text-muted); }
.t-action { width: 20%; text-align: right; padding-right: 10px; }

.bio-content p {
    font-size: 18px; 
    color: #cccccc;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.8; 
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
}

footer p, footer a {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 5px;
}

footer a:hover {
    color: var(--text-main);
}

.bio-pitch {
    margin-top: 30px;
    font-style: italic;
    color: #aaaaaa;
    font-size: 16px; 
}
.bio-pitch a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.bio-pitch a:hover {
    color: var(--text-main);
}

.media-section {
    padding: 0 20px 100px 20px; 
    max-width: 1000px;
    margin: 0 auto;
}

.media-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-main);
    text-align: center;
}

.media-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-placeholder {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 60px 20px; 
    margin-bottom: 40px;
    border-radius: 4px;
}

.video-placeholder p {
    color: #666666;
    font-size: 14px;
    letter-spacing: 2px;
}

.media-buttons .btn-outline {
    margin: 0 10px;
}

.contact-section {
    padding: 80px 20px 100px 20px;
    max-width: 800px; 
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-main);
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 40px;
}

.form-container {
    background-color: rgba(255, 255, 255, 0.02); 
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.form-group-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1; 
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: #aaaaaa;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.retro-form input,
.retro-form select,
.retro-form textarea {
    background-color: rgba(0, 0, 0, 0.5); 
    border: 1px solid #444444; 
    color: var(--text-main);
    padding: 12px 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.retro-form input:focus,
.retro-form select:focus,
.retro-form textarea:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 8px rgba(58, 90, 128, 0.3); 
    background-color: rgba(0, 0, 0, 0.8);
}

.retro-form input::placeholder,
.retro-form textarea::placeholder {
    color: #555555;
}

.retro-form select option {
    background-color: #1a1a1a;
    color: #fff;
}

.form-submit {
    text-align: center;
    margin-top: 10px;

}

.form-submit button {

    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links a {
        margin: 0 10px;
        font-size: 11px;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero-content h1 { font-size: 38px; }

	.media-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .media-buttons .btn-outline {
        margin: 0;
    }

    .t-status { 
        width: 100%; 
        text-align: center; 
        padding: 0; 
        margin-top: 5px;
    }
	.bio-container {
        flex-direction: column;
        text-align: center;
    }

    .bio-image-side {
        order: -1; 
        margin-bottom: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    .form-container {
        padding: 25px 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

}

