:root {
--dark:#2c2e35;
--orange:#f59838;
--cream:#d6b68f;
--white:#ffffff;
}

* {
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body {
background:var(--white);
color:var(--dark);
}

/* HEADER */

.header {
background:var(--dark);
padding:15px 40px;
display:flex;
align-items:center;
justify-content:space-between;
}

.header-left {flex:1;}
.header-center {flex:2;text-align:center;color:white;}
.header-right {flex:1;display:flex;justify-content:flex-end;gap:25px;}

.header-center h1 {font-size:24px;}
.header-center p {color:var(--cream);font-size:14px;}

.header-right a {
color:white;
text-decoration:none;
font-weight:bold;
}

.header-right a:hover {color:var(--orange);}

.logo {height:120px;}

/* SECTIONS */

.section {
padding:80px 15%;
text-align:center;
}

.section.dark {
background:var(--dark);
color:white;
}

.section h2 {
margin-bottom:30px;
color:var(--orange);
}

/* ABOUT BOX */

.about-box {
max-width:900px;
margin:auto;
border:2px dashed var(--cream);
padding:50px 60px;
background:
linear-gradient(90deg, rgba(214,182,143,.15) 1px, transparent 1px),
linear-gradient(rgba(214,182,143,.15) 1px, transparent 1px);
background-size:25px 25px;
border-radius:20px;
}

.about-box p {line-height:1.6;}

/* CARDS */

.cards {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-bottom:40px;
}

.card {
background:var(--cream);
padding:30px;
border-radius:15px;
color:var(--dark);
}

/* BUTTON */

.btn {
background:var(--orange);
color:white;
padding:12px 28px;
border-radius:30px;
border:none;
cursor:pointer;
text-decoration:none;
}

.btn:hover {opacity:.85;}

/* CONTACT */

.contact-section {background:#f7f4ef;}

.contact-card {
background:white;
max-width:600px;
margin:auto;
padding:50px 40px;
border-radius:25px;
box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.logo2 {
width:100%;
max-height:250px;
object-fit:cover;
border-radius:15px;
margin-bottom:25px;
}

.contact-form {
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea {
padding:12px;
border-radius:8px;
border:1px solid #ccc;
}

/* FOOTER */

footer {
background:var(--dark);
color:white;
padding:25px 10px;
text-align:center;
}

.footer-row {
display:flex;
justify-content:center;
align-items:center;
gap:40px;
flex-wrap:wrap;
margin-bottom:15px;
}

.footer-row div {
display:flex;
align-items:center;
gap:8px;
font-size:14px;
}

.footer-label {
color:var(--orange);
font-weight:bold;
}

.material-symbols-outlined {
color:var(--orange);
}

.copyright {
color:#aaa;
font-size:13px;
}
.event-section {
background:#f7f4ef;
padding:100px 15%;
}

.event-text {
font-size:18px;
margin-bottom:30px;
line-height:1.6;
}
.event-image {
width:100%;
max-width:px;
height:400px;
object-fit:cover;
border-radius:20px;
margin:0 auto 40px auto;
display:block;
box-shadow:0 8px 20px rgba(0,0,0,.15);
}
.event-image:hover {
transform:scale(1.02);
transition:.3s;
}
.big-btn {
font-size:18px;
padding:16px 40px;
}
.calendar-box {
display:flex;
justify-content:center;
margin-top:30px;
}

table {
border-collapse:collapse;
color:white;
}

td, th {
border:1px solid var(--cream);
padding:12px;
width:45px;
text-align:center;
}

.event {
background:var(--orange);
color:white;
border-radius:5px;
}
.map-section {
background:#f7f4ef;
}

.map-text {
margin-bottom:30px;
font-size:17px;
}

.map-card {
max-width:900px;
margin:auto;
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}
/* INFO SECTION */

.info-section {
background:#f7f4ef;
}

.info-grid {
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
max-width:1000px;
margin:auto;
}

.hours-card,
.map-card {
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.hours-card h3,
.map-card h3 {
color:var(--orange);
margin-bottom:20px;
}

.hours-card ul {
list-style:none;
text-align:left;
}

.hours-card li {
margin-bottom:8px;
}

.hours-note {
margin-top:15px;
font-size:13px;
color:#777;
}

/* responsive */

@media(max-width:800px){
.info-grid{
grid-template-columns:1fr;
}
}
.menu-highlight {
max-width:500px;
margin:40px auto;
padding:35px;
background:var(--cream);
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.menu-highlight h3 {
color:var(--dark);
margin-bottom:15px;
}

.menu-highlight strong {
color:var(--orange);
font-size:18px;
}

.menu-note {
margin-top:10px;
font-size:13px;
color:#555;
}
/* =======================
   RESPONSIVE GLOBAL
======================= */

@media (max-width: 900px) {

.header {
flex-direction:column;
gap:20px;
padding:20px;
}

.header-center h1 {
font-size:20px;
}

.header-right {
justify-content:center;
flex-wrap:wrap;
}

.section {
padding:60px 8%;
}

.logo {
height:90px;
}

.cards {
grid-template-columns:1fr;
}

.footer-row {
gap:15px;
}

.about-box {
padding:35px 25px;
}

.menu-highlight {
margin:20px;
}

.contact-card,
.hours-card,
.map-card {
padding:25px;
}

.event-text {
font-size:16px;
}

.big-btn {
font-size:16px;
padding:14px 30px;
}

}

/* TELEPHONE */

@media (max-width: 600px) {

.header-center p {
font-size:12px;
}

.header-right a {
font-size:14px;
}

.section h2 {
font-size:22px;
}

.card {
padding:20px;
}

.logo2,
.event-image {
height:180px;
}

.footer-row div {
font-size:12px;
}

.hours-card ul {
padding-left:0;
}

}
.contact-form select {
padding:12px;
border-radius:8px;
border:1px solid #ccc;
background:white;
}
.section-title {
display:inline-block;
padding:10px 25px;
background:rgba(245,152,56,.15);
border-left:6px solid var(--orange);
border-radius:8px;
margin-bottom:35px;
}

/* petit effet décoratif derrière */

.section-title::after {
content:"";
display:block;
height:3px;
width:60%;
background:var(--orange);
margin:8px auto 0;
border-radius:3px;
opacity:.4;
}


.calendar-box {
max-width:900px;
margin:40px auto;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}
    