/* Style principal pour LE GRAND DEBAT
 * Compatible avec WordPress
 */

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
.row{
	clear: both;
	display: flex;
}
.col-lg-6{
	width: 50%;
	float: left;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #0056b3;
    transition: all 0.3s ease;
}

a:hover {
    color: #e63946;
    transform: translateY(-2px);
}

/* En-tête et Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.site-header:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 180px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    max-height: 60px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
}

.main-navigation li {
    margin-left: 20px;
    position: relative;
}

.main-navigation li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #003d7a;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation li:hover::after {
    width: 80%;
}

.main-navigation a {
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    background-color: #f5f5f5;
    color: #003d7a;
    transform: translateY(-3px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background-color: #e63946;
}

/* Section Banner */
.hero-banner {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #003d7a 0%, #0269a0 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.banner-content {
    display: flex;
    align-items: center;
}

.banner-left {
    flex: 1;
    padding-right: 30px;
}

.banner-right {
    flex: 1;
    text-align: right;
    transition: all 0.5s ease;
}
.banner-left:hover  img,
.banner-right:hover img {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.banner-left img,
.banner-right img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    transition: all 0.5s ease;
}
.banner-left img{
	max-height: 250px;
}

.event-date {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.event-date:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-banner h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-banner h1:hover {
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.event-location {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.event-location:hover {
    transform: translateY(-3px);
}

.event-location i {
    margin-right: 10px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.event-location:hover i {
    transform: scale(1.2);
    color: #e63946;
}

/* Sections communes */
section {
    padding: 80px 0;
    transition: all 0.5s ease;
}

section:hover {
    background-color: rgba(249, 249, 249, 0.5);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #003d7a;
    transition: all 0.3s ease;
}

.section-title:hover {
    transform: translateY(-3px);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #e63946;
    margin: 15px auto 0;
    transition: all 0.3s ease;
}

.section-title:hover:after {
    width: 120px;
}

/* Section À propos */
.about-section {
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.about-text p:hover {
    color: #003d7a;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Section Programme */
.program-section {
    background-color: #fff;
}

.program-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: -30px;
    width: 2px;
    background-color: #e0e0e0;
    transition: all 0.3s ease;
}

.timeline-item:hover:before {
    background-color: #e63946;
    width: 3px;
}

.timeline-item:last-child:before {
    display: none;
}

.timeline-time {
    width: 150px;
    font-weight: 600;
    color: #003d7a;
    padding-right: 30px;
    text-align: right;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-time {
    color: #e63946;
    transform: translateX(-5px);
}

.timeline-content {
    flex: 1;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    margin-left: 30px;
}

.timeline-content:hover {
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.timeline-content:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: #003d7a;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.timeline-content:hover:before {
    background-color: #e63946;
    transform: scale(1.2);
    box-shadow: 0 0 0 5px rgba(230, 57, 70, 0.2);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: #003d7a;
    transition: all 0.3s ease;
}

.timeline-content:hover h3 {
    color: #e63946;
}

/* Section Enregistrement */
.registration-section {
    background-color: #f9f9f9;
}

.registration-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.registration-info {
    flex: 1;
}

.registration-info p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.registration-info p:hover {
    color: #003d7a;
}

.registration-details {
    margin-top: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateX(5px);
}

.detail-item i {
    margin-right: 10px;
    color: #003d7a;
    font-size: 20px;
    transition: all 0.3s ease;
}

.detail-item:hover i {
    color: #e63946;
    transform: scale(1.2);
}

.registration-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.registration-form:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #003d7a;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    outline: none;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #0056b3;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.btn-submit {
    background-color: #003d7a;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-submit:hover {
    background-color: #e63946;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.btn-submit:hover:before {
    left: 100%;
}

/* Section Partenaires */
.partners-section {
    background-color: #fff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.partner-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.partner-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #e0e0e0;
    background-color: #fff;
}

.partner-item img {
    max-height: 80px;
    width: auto;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.partner-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Section Speakers */
.speakers-section {
    background-color: #f9f9f9;
}

.speakers-note {
    text-align: center;
    font-style: italic;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.speakers-note:hover {
    color: #003d7a;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Section Sponsors */
.sponsors-section {
    background-color: #fff;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.sponsor-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sponsor-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #e0e0e0;
    background-color: #fff;
}

.sponsor-item img {
    max-height: 80px;
    width: auto;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.sponsor-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Section Media */
.media-section {
    background-color: #f9f9f9;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.media-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.media-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #e0e0e0;
}

.media-item img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.media-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Section Powered By */
.powered-section {
    background-color: #fff;
}

.powered-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.powered-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.powered-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #e0e0e0;
    background-color: #fff;
}

.powered-item img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.powered-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Pied de page */
.site-footer {
    background-color: #003d7a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info {
    display: flex;
    gap: 40px;
}

.footer-logo {
    max-width: 150px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-5px);
}

.footer-logo img {
    max-height: 60px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.footer-contact h3,
.footer-social h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-contact h3:hover,
.footer-social h3:hover {
    transform: translateX(5px);
}

.footer-contact h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #e63946;
    transition: all 0.3s ease;
}

.footer-contact h3:hover:after,
.footer-social h3:hover:after {
    width: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    margin-right: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: #e63946;
    transform: scale(1.2);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e63946;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover:before {
    transform: scale(1);
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-bottom:hover {
    border-top-color: rgba(255, 255, 255, 0.3);
}

/* Compatibilité WordPress */
.wp-block-image img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.wp-block-image img:hover {
    transform: scale(1.03);
}

.wp-block-button__link {
    background-color: #003d7a;
    color: #fff;
    border-radius: 5px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.wp-block-button__link:hover {
    background-color: #e63946;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
    color: #fff;
}

.wp-block-button__link:hover:before {
    left: 100%;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    min-width: 80px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.countdown-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.3s ease;
}

.countdown-item:hover .countdown-number {
    color: #e63946;
}

.countdown-label {
    font-size: 14px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.countdown-item:hover .countdown-label {
    letter-spacing: 1px;
}

/* Animation d'apparition au défilement */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
