
@font-face{
  font-family: "Antown-Bold";
  src: url("Antown-Bold.otf") format("truetype");
}

@font-face{
  font-family: "Raleway-Thin";
  src: url("Raleway-Thin.ttf") format("truetype");
}


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

}

body{
    min-height:900px;
    background-color: rgba(228, 228, 228, 0.8);

}

.body {
    font-family: Arial, sans-serif;
    color: #333;
    background-image: url('fond.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    font-family: Antown-Bold, sans-serif;
}

header {
    background-color: rgba(0, 0, 0, 0.6); /* Dark transparent */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height:100px;
    margin-bottom:30px;
    top: 0;
    left: 0;
}
a{
  cursor: pointer;
}
a:hover{
    filter: brightness(70%);
}
/* Burger and Produits */
.burger-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.burger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
}

.burger:hover{
    filter: brightness(70%);
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: white;
}

.produits-label {
    font-size: 30px; /* Header text size */
    color: white;
}

/* Menu items */
nav {
    display: flex;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;

}

.menu li a{
    color: white;
    text-decoration: none;
    font-size: 30px; /* Header text size */
}

.menu-burger {
    margin-bottom:40px;
}

.menu-burger li a {
    text-decoration: none;
    color:black;
    font-size: 20px; /* Header text size */
}

main {
    text-align: center;
    color: white;
    min-height:1200px;
}

/* Central Text */
.central-text {

}

.central-text .title{

    padding-top: 200px;
    padding-bottom: 300px;
}

.central-text h1 {
  padding-top:10px;
    font-family: Antown-Bold;
    font-size: 110px;
    background-color: rgba(0, 0, 0, 0.8); /* Dark transparent */
    color: #e94e1b; /* Gold color for POINT PUB */
    border-radius:  10px 10px 0px 0px;

}

.central-text .subtitle {
    background-color: rgba(0, 0, 0, 0.4); /* Dark transparent */
    font-size: 45px;
    color: #f9b234; /* White for ENSEIGNES & VISUELS */
    border-radius:  0px 0px 10px 10px;
}

.box{
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    text-align: center;
    margin:auto;
}

.shadow{
    background-color: rgba(0, 0, 0, 0.8); /* Dark transparent */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);

}

.box p {
        font-size: 1.2em;
        line-height: 1.6;
        color: white;
        margin-bottom: 20px;
    }

.box a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.box a:hover {
    text-decoration: underline;
}

iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 400px;
}

/* Product Categories Sidebar */
.product-categories {
    display: none;
    text-align:left;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 300px;
    background-color: #f9f9f9;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-in-out;
    padding: 20px;
    overflow-y: auto;
    z-index: 10;
    color: black;
    border: 1px solid ;

}

.product-categories.active {
    display: block;
}

.product-categories h2 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
    border-bottom: 1px solid;
}

.product-categories ul {
    list-style: none;
    padding-left: 0;
}

.product-categories ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

.product-categories ul li img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    margin-top: 10px;
    background-color: #e0e0e0; /* Placeholder color for images */
}
.menu-burger {
    display: none;
}

@media (max-width: 1180px) {
    .menu {
        display: none;
    }
    .menu li a {
        color: black;
    }

    .menu-burger.active {
    display: block;
    }

    .body {
        background-size: cover;
    }

}

