/* BUIS PASSION - Styles CSS */

/* Variables CSS */
:root {
    --primary-cyan: #194894;
    --primary-orange: #9f2e2f;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --dark-gray: #333333;
    --text-dark: #212529;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}
/* FONT */
p {
    line-height: 1.2;
    margin-bottom: 1rem;
      font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
     font-size: 1.1rem;
    color: black;
      letter-spacing: 1px;
 }

.buispassion {
  line-height: 1.5;
  margin-bottom: 1rem;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-cyan);
  letter-spacing: 1px;
    
}

.quicksand {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
   font-size: 1.2rem;
  font-weight: <weight>;
  font-style: normal;
}

.motto-occitan {
     font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.motto-french {
    font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
    font-style: italic;
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--primary-orange);
    opacity: 0.8;
}

/* sondage Section */

.sondage {
 color: var(--primary-orange);
 font-weight: 500;
 font-size: 1.1rem;
 border:1px solid var(--primary-orange);
 padding:10px;
 text-decoration: none;
 }
.sondage:hover {
 color: white;
 font-weight: 500;
 font-size: 1.1rem;
  border:1px solid var(--primary-orange);
 text-decoration: none;
 background-color: var(--primary-orange);
}

/* form Section */

.form {
 color: var(--primary-orange);
 font-weight: 500;
 font-size: 1.1rem;
 border:1px solid var(--primary-orange);
 padding:5px;
 text-decoration: none;
 }


.centre {
    
   position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.red {
  color: var(--primary-orange);
}



a {
  color: #194894;
}

a:hover {
  color:#9f2e2f;
  text-decoration: none;
}

/* Typographie */
h1 {
    color: var(--primary-cyan) !important;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    color: var(--primary-orange) !important;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

h3 {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h4 {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

h5 {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}



.lead {
    line-height: 1.5;
    font-size: 1.1rem;
    font-weight: 400;
}


/* Header Section */
.header-section {
    background-color: var(--light-gray);
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-orange);
}

.motto-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}


.logo-header {
    max-height: 120px;
    width: auto;
    transition: var(--transition);
}

.logo-header:hover {
    transform: scale(1.2);
}

.header-description {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
    text-align: right;
    font-weight: 500;
}

/* Menu Section */
.menu-section {
    background-color: var(--primary-orange);
    padding: 0;
    box-shadow: var(--shadow);
}

.menu-section .navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    padding: 15px 20px !important;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-section .navbar-nav .nav-link:hover {
 color: var(--primary-orange);
}

.navbar-toggler {
    border-color: var(--white);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Main Section */
.main-section {
    background-color: var(--white);
    padding: 60px 0;
    min-height: 70vh;
}

/* Content Blocks */
.content-block {
    padding: 20px 0;
}

.orange-line {
    width: 100%;
    height: 4px;
    background-color: var(--primary-orange);
    margin-bottom: 20px;
    border-radius: 2px;
}
.cyan-line {
    width: 100%;
    height: 4px;
    background-color: var(--primary-cyan);
    margin-bottom: 20px;
    border-radius: 2px;
}
/* Images */
img {
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

.img-fluid {
    border-radius: 8px;
}

.img-fluid:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

/* Footer Section */
.footer-section {
    background-color: var(--light-gray);
    padding: 40px 0;
    border-top: 3px solid var(--primary-orange);
    margin-top: 60px;
}

.logo-footer {
    max-height: 100px;
    width: auto;
}

.footer-section h5 {
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.footer-section a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--primary-orange);
}

/* Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.btn-back-to-top:hover {
    background-color: var(--primary-cyan);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Publications Page */
.publications-grid {
    margin-top: 30px;
}

.publication-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-orange);
}

.publication-item:hover {
    background-color: #e0e0e0;
    transform: translateX(5px);
}

.publication-name {
    font-weight: 650;
  font-size: 1.2rem;
    color: var(--primary-orange);
}

.publication-text {
    font-size: 1rem;
    font-weight: 350;
    color: grey;
}
t

.download-link {
    color: var(--primary-cyan);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.download-link:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
}

/* Team List */
.team-list {
    list-style: none;
    padding: 0;
}

.team-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.team-list li:last-child {
    border-bottom: none;
}

/* Contact Info */
.contact-info h4 {
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--primary-cyan);
}

/* Membership Info */
.membership-info {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin: 15px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-description {
        text-align: center;
        margin-top: 15px;
        font-size: 0.9rem;
    }
    
    .motto-line {
        margin-bottom: 20px;
    }
    
    .motto-occitan {
        font-size: 1rem;
    }
    
    .motto-french {
        font-size: 0.8rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .main-section {
        padding: 40px 0;
    }
    
    .content-block {
        margin-bottom: 30px;
    }
    
    .btn-back-to-top {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section .col-md-3,
    .footer-section .col-md-6 {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .publication-item {
        padding: 10px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .membership-info {
        padding: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-block {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus States */
a:focus,
button:focus {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .header-section,
    .menu-section,
    .footer-section,
    .btn-back-to-top {
        display: none;
    }
    
    .main-section {
        padding: 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}