/* Variables */
:root {
    --primary: #8b4513;
    --secondary: #d2691e;
    --accent: #cd853f;
    --dark: #5d3a1a;
    --light: #fff8dc;
    --text: #2c2416;
    --shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text);
    background: #fafaf5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.newsletter-btn {
    background: var(--primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 92, 65, 0.85), rgba(101, 67, 33, 0.9)),
                url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?w=1920&q=80') center/cover;
    margin-top: 70px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '📚';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    top: 50%;
    right: -5%;
    transform: translateY(-50%) rotate(-15deg);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 69, 19, 0.1);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 600;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content > p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-btn.primary {
    background: var(--primary);
    color: white;
}

.cta-btn.primary:hover {
    background: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-btn.secondary:hover {
    background: var(--primary);
    color: white;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* About */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-item h4 {
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.image-card {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.image-card i {
    font-size: 8rem;
    color: white;
    opacity: 0.9;
}

.hours-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hours-badge i {
    font-size: 2rem;
    color: var(--primary);
}

.hours-badge strong {
    display: block;
    color: var(--dark);
}

.hours-badge span {
    color: #666;
    font-size: 0.9rem;
}

/* Livres Section */
.livres {
    padding: 6rem 0;
    background: var(--light);
}

.search-bar {
    display: flex;
    max-width: 700px;
    margin: 0 auto 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 50px;
    overflow: hidden;
}

.search-bar input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    font-size: 1rem;
}

.search-bar input:focus {
    outline: none;
}

.search-btn {
    background: var(--primary);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.search-btn:hover {
    background: var(--dark);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: var(--dark);
    border: 2px solid #e0e0e0;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.livres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.livre-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

.livre-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.2);
}

.livre-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.livre-badge.bestseller {
    background: #ef4444;
    color: white;
}

.livre-badge.nouveaute {
    background: #10b981;
    color: white;
}

.livre-badge.coup-coeur {
    background: #ec4899;
    color: white;
}

.livre-cover {
    height: 250px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.livre-cover.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.livre-cover.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.livre-cover.purple {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.livre-cover.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.livre-cover i {
    font-size: 5rem;
    color: white;
    opacity: 0.8;
}

.livre-info {
    padding: 1.5rem;
}

.livre-info h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.author {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.livre-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.genre,
.pages {
    background: var(--light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--primary);
}

.description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.livre-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 1rem;
}

.livre-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.livre-rating span {
    color: #666;
    font-size: 0.85rem;
}

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

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.reserve-btn {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.reserve-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.commande-speciale {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.commande-speciale i {
    font-size: 4rem;
    color: var(--primary);
}

.commande-speciale h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.commande-speciale p {
    color: #666;
    margin-bottom: 1rem;
}

.special-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.special-btn:hover {
    background: var(--dark);
    transform: translateY(-3px);
}

/* Café Section */
.cafe {
    padding: 6rem 0;
    background: white;
}

.cafe-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cafe-menu {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.menu-category h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-category h3 i {
    color: var(--primary);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.menu-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.menu-item.featured-item {
    background: linear-gradient(135deg, var(--light), #f5e6d3);
    border: 2px solid var(--primary);
}

.item-info h4 {
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.item-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.item-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
    white-space: nowrap;
}

.cafe-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cafe-feature-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.cafe-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.cafe-feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cafe-feature-card h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.cafe-feature-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Événements */
.evenements {
    padding: 6rem 0;
    background: var(--light);
}

.evenements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.event-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 2rem;
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.2);
}

.event-date {
    background: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-content {
    flex: 1;
}

.event-type {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.event-content > p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
}

.event-meta i {
    color: var(--primary);
}

.event-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.event-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.calendar-cta {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.calendar-cta h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.calendar-cta p {
    color: #666;
    margin-bottom: 2rem;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.subscribe-btn:hover {
    background: var(--dark);
    transform: translateY(-3px);
}

/* Club */
.club {
    padding: 6rem 0;
    background: white;
}

.club-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.club-info h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.club-info .intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.club-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary);
}

.benefit-item h4 {
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.club-pricing {
    margin-top: 3rem;
}

.price-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.price-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.price-amount {
    margin: 2rem 0;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
}

.period {
    font-size: 1.2rem;
    opacity: 0.9;
}

.join-btn {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.club-testimonials h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.testimonial-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
}

.testimonial-card > p {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 2rem;
    color: white;
}

.testimonial-author h4 {
    color: var(--dark);
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: var(--primary);
    color: white;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.newsletter-icon i {
    font-size: 5rem;
    opacity: 0.9;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter-form .submit-btn {
    background: var(--dark);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.newsletter-form .submit-btn:hover {
    transform: translateY(-3px);
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #666;
    margin-bottom: 2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary);
}

.info-item h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    margin: 0;
}

.map-placeholder {
    height: 250px;
    background: linear-gradient(135deg, rgba(139, 92, 65, 0.8), rgba(101, 67, 33, 0.9)),
                url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1200&q=80') center/cover;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form .submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.contact-form .submit-btn:hover {
    background: var(--dark);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(139, 69, 19, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.footer-col h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--accent);
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 69, 19, 0.3);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .newsletter-btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .about-content,
    .cafe-content,
    .club-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .livres-grid,
    .evenements-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
    }
}
