/* BISTRO BOARDS MINIFIED STYLES */
:root {
    --primary-color: #B8501E;
    --secondary-color: #E67E22;
    --accent-color: #F39C12;
    --light-accent: #FFE4C4;
    --bg-color: #FFF5E6;
    --text-color: #4A2C2A;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(184, 80, 30, 0.15);
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-font);
    font-weight: 700
}

p {
    margin-bottom: 1rem
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.section-padding {
    padding: 100px 0
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    transition: 0.4s;
    z-index: 1000
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px)
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px
}

.logo-img {
    height: 100px;
    width: auto;
    transition: 0.3s
}

header.scrolled .logo-img {
    height: 70px
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px
}

nav ul li a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3)
}

header.scrolled nav ul li a {
    color: var(--text-color);
    text-shadow: none
}

nav ul li a:hover {
    color: var(--secondary-color)
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(184, 80, 30, 0.3)
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5)
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/header-charcuterie.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroZoom 20s infinite alternate ease-in-out
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.about-text {
    flex: 1
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color)
}

#boards {
    background-color: rgba(255, 228, 196, 0.3)
}

#boards h2 {
    text-align: center;
    margin-bottom: 50px
}

.boards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.board-card {
    background: linear-gradient(to bottom right, var(--white), #FFF0E0);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(184, 80, 30, 0.1)
}

.board-card:hover {
    transform: translateY(-10px)
}

.board-card img {
    height: 300px;
    width: 100%;
    object-fit: cover
}

.board-card-content {
    padding: 25px;
    text-align: center
}

.board-card h3 {
    margin-bottom: 10px;
    color: var(--secondary-color)
}

footer {
    background: var(--text-color);
    color: var(--white);
    padding: 60px 0 20px;
    text-align: center
}

.footer-logo {
    height: 150px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 12px;
    display: inline-block
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px) rotate(360deg)
}

.social-icons i {
    font-size: 20px;
    color: white
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(184, 80, 30, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid transparent;
    text-align: center;
    overflow: hidden
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(184, 80, 30, 0.3);
    border-color: var(--accent-color)
}

.pricing-card:hover .price {
    transform: scale(1.1)
}

.pricing-card:hover .btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-5px)
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block
}

.pricing-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.5rem
}

.price {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 20px 0;
    transition: transform 0.3s ease
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    color: var(--text-color)
}

.features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem
}

.features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold
}

.popular-badge {
    position: absolute;
    top: 25px;
    right: -30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 35px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10
}

.pricing-card.popular {
    border: 2px solid var(--accent-color);
    background: linear-gradient(to bottom, #FFF, #FFF5E6)
}

#gallery {
    background: linear-gradient(180deg, #FFF5E6 0%, #FFE4C4 100%)
}

.instagram-header {
    text-align: center;
    margin-bottom: 50px
}

.instagram-logo {
    font-size: 60px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 auto 20px;
    display: block;
    animation: pulse 2s infinite
}

.widget-frame-container {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #F39C12;
    position: relative;
    max-width: 1000px;
    margin: 0 auto 40px
}

.widget-frame-container::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s
}

.widget-frame-container:hover::before {
    opacity: 1
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.3)
}

body {
    opacity: 0;
    animation: fadeInPage 0.8s ease-in forwards
}

@keyframes fadeInPage {
    to {
        opacity: 1
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1)
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

.fade-bottom {
    transform: translateY(50px)
}

.fade-bottom.active {
    transform: translateY(0)
}

.fade-left {
    transform: translateX(-50px)
}

.fade-left.active {
    transform: translateX(0)
}

.fade-right {
    transform: translateX(50px)
}

.fade-right.active {
    transform: translateX(0)
}

.stagger-container .reveal:nth-child(2) {
    transition-delay: 0.2s
}

.stagger-container .reveal:nth-child(3) {
    transition-delay: 0.4s
}

.stagger-container .reveal:nth-child(4) {
    transition-delay: 0.6s
}

.parallax {
    background-attachment: fixed
}

@keyframes heroZoom {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.1)
    }
}

.hero-zoom-bg {
    animation: heroZoom 20s infinite alternate ease-in-out
}

@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) rotateX(90deg)
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg)
    }
}

.animate-title-stagger span {
    display: inline-block;
    opacity: 0;
    animation: letterReveal 1s ease forwards;
    animation-delay: calc(0.1s * var(--i));
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3)
}

@keyframes subtitleSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 0px
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 2px
    }
}

.subtitle-reveal {
    opacity: 0;
    animation: subtitleSlideUp 1s ease forwards 1s
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(210, 105, 30, 0.5)
    }

    50% {
        box-shadow: 0 0 20px rgba(210, 105, 30, 0.8), 0 0 10px rgba(210, 105, 30, 0.6)
    }

    100% {
        box-shadow: 0 0 5px rgba(210, 105, 30, 0.5)
    }
}

.btn-glow {
    animation: glow 2s infinite
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.4
    }
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    z-index: 1
}

.p1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s
}

.p2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    width: 8px;
    height: 8px
}

.p3 {
    top: 40%;
    left: 40%;
    animation-delay: 4s
}

.p4 {
    top: 80%;
    left: 20%;
    animation-delay: 1s;
    width: 4px;
    height: 4px
}

.p5 {
    top: 15%;
    left: 70%;
    animation-delay: 3s
}

.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px)
}

.burger.toggle .line2 {
    opacity: 0
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px)
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

@media screen and (max-width:1024px) {
    .hero-content h1 {
        font-size: 3.5rem
    }

    .boards-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-flex {
        flex-direction: column;
        gap: 30px
    }
}

@media screen and (max-width:768px) {
    header {
        background: var(--white) !important;
        padding: 15px 0 !important
    }

    nav {
        position: fixed;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 999
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        gap: 40px
    }

    .nav-active {
        transform: translateX(0%)
    }

    .burger {
        display: block;
        cursor: pointer
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 5px;
        transition: all 0.3s ease
    }

    .hero-content h1 {
        font-size: 2.5rem
    }

    .section-padding {
        padding: 60px 0
    }

    .boards-grid {
        grid-template-columns: 1fr
    }
}

@media screen and (max-width:900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width:600px) {
    .pricing-grid {
        grid-template-columns: 1fr
    }
}

@media screen and (max-width:480px) {
    .logo-img {
        height: 60px
    }

    .header-logo-text {
        font-size: 1.2rem
    }
}

@media screen and (max-width:768px) {
    #contact-form {
        padding: 20px
    }

    .form-row {
        flex-direction: column !important;
        gap: 0 !important
    }

    input,
    select,
    textarea {
        font-size: 16px !important;
        padding: 15px !important
    }

    .btn {
        padding: 18px 30px;
        font-size: 18px;
        width: 100%
    }

    label {
        font-size: 1rem
    }
}

@media screen and (max-width:480px) {
    #contact {
        padding: 40px 15px
    }

    .form-group {
        margin-bottom: 25px
    }

    input,
    select,
    textarea {
        max-width: 100%;
        box-sizing: border-box
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important
    }
}