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

body {
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    transition: background-color 0.3s ease-in-out;
}

/* Page d'Introduction */
#landing {
    background-image: url('turron-images.jpg'); /* Ajoute l'image des gammes ici */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#landing .landing-content {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#landing h2 {
    font-size: 3em;
    font-weight: bold;
}

#landing p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

#landing button {
    padding: 15px 30px;
    background-color: #ff5722;
    border: none;
    color: white;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#landing button:hover {
    background-color: #f44336;
}

/* Le Site Complet */
.hidden {
    display: none;
}

/* Header Styling */
header {
    background: linear-gradient(45deg, #f44336, #ff5722);
    color: white;
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid #ff5722;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 3em;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffeb3b;
}

/* Section Styling */
section {
    background-color: white;
    padding: 40px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

section:hover {
    transform: scale(1.02);
}

section h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #f44336;
}

section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

section a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f44336;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

section a:hover {
    background-color: #ff5722;
}

/* Special Styling for Keywords */
strong {
    font-weight: bold;
    color: #f44336;
    text-transform: uppercase;
    background-color: rgba(244, 67, 54, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
    text-align: left;
    padding: 12px;
}

th {
    background-color: #f44336;
    color: white;
    font-size: 1.2em;
}

td {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #ffeb3b;
    color: #333;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    section {
        padding: 30px;
    }
}