    /* Reset și variabile CSS */
    @font-face {
        font-family: 'AKONY';
        src: url('font/AKONY.woff2') format('woff2'),
            url('font/AKONY.woff') format('woff');
        font-weight: normal;
        font-style: normal;
        font-display: swap;

    }



    :root {
        /* 🌈 Culori */
        --color-bg: #121212;
        --color-secondary: #e9e9e9;
        --color-accent: #73bf44;
        --color-text: #111111;
        --color-muted: #444444;

        /* ✍️ Fonturi */
        --font-heading: 'Ankony', serif;
        --font-body: 'Inter', sans-serif;

        /* 🔠 Dimensiuni text (responsive cu clamp) */
        --fs-h1: clamp(2.5rem, 5vw, 4rem);
        --fs-h2: clamp(1.75rem, 4vw, 3rem);
        --fs-h3: clamp(1.5rem, 3vw, 2.25rem);
        --fs-body: clamp(1rem, 1.2vw, 1.125rem);
        --fs-small: clamp(0.875rem, 1vw, 1rem);

        /* 📏 Border */


        /* 🖋️ Grosime text */
        --fw-light: 300;
        --fw-normal: 400;
        --fw-medium: 500;
        --fw-bold: 700;
    }



    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
    }


    body {
        background-color: var(--color-secondary);

        min-height: 100vh;

    }

    .logo-lines {
        padding-top: 7rem;
    }


    .main-cont {
        padding: 5rem 5rem 5rem 5rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }

    .main-cont .first-p {
        color: var(--color-bg);
        font-family: var(--font-body);
        font-weight: var(--fw-light);
        font-size: var(--fs-body);
        width: 70%;
        display: flex;
        flex-direction: column;
        gap: 1rem;



    }

    .main-cont .first-p .ziua {
        padding: 0px 5px 0px 5px;
        display: flex;
        gap: 0.5rem;
        background-color: var(--color-muted);
        width: 25%;
        height: 3rem;
        align-items: center;
        justify-content: center;
        border-radius: 1rem;
        color: var(--color-secondary);
    }

    .main-cont .first-p .ziua .data {
        background-color: var(--color-bg);
        border-radius: 1rem;
        height: 90%;
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-cont .first-p h2 {
        font-size: var(--fs-h2);
    }

    .galerie-k .scop {
        color: var(--color-bg);
        font-weight: var(--fw-bold);
        font-size: var(--fs-h3);
        font-family: var(--font-body);

    }


    .galerie-k .scopp {


        color: var(--color-bg);
        font-family: var(--font-body);
        font-weight: var(--fw-light);
        font-size: var(--fs-body);
    }


    .galerie-k {
        width: 70%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        /* default o singură coloană */
        gap: 20px;
        /* spațiu între poze */
    }

    .galerie-k img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border: 5px solid var(--color-muted);
        border-radius: 1rem;
    }

    /* pentru div-ul cu 2 poze pe rând */
    .galerie-k .gal2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2 coloane egale */
        gap: 20px;
        /* spațiu între cele două imagini */
    }

    .galerie-k .gal2 img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }


    .final {
        color: var(--color-secondary);
        font-family: var(--font-body);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 40vh;

    }

    .final h3 {
        font-family: var(--font-body);
        font-weight: var(--fw-bold);
        font-size: var(--fs-h2);
        color: var(--color-bg);
    }

    .final .acc {
        color: var(--color-accent);
        font-size: var(--fs-h3);

    }

    .final p {
        font-family: var(--font-body);
        font-weight: var(--fw-light);
        font-size: var(--fs-body);
        color: var(--color-bg);
    }

    .final a {
        position: relative;
        display: inline-flex;
        align-items: center;
        padding: 12px 24px;
        background: var(--color-secondary);
        border: 1px solid #b3b3b3;
        border-radius: 50px;
        overflow: hidden;
        text-decoration: none;
        color: var(--color-bg);
        font-weight: 500;
        transition: color 0.3s ease;
        width: fit-content;
        margin-top: 2rem;
        transition: all;
    }

    .doua {
        display: flex;
        flex-direction: row;
    }

    .main-cont .first-p {
        color: var(--color-bg);
        font-family: var(--font-body);
        font-weight: var(--fw-light);
        font-size: var(--fs-body);
    }

    .galerie-k .scop {
        color: var(--color-bg);
        font-weight: var(--fw-bold);
        font-size: var(--fs-h3);
        font-family: var(--font-body);
    }

    .galerie-k .scopp {
        color: var(--color-bg);
        font-family: var(--font-body);
        font-weight: var(--fw-light);
        font-size: var(--fs-body);
    }

    @media (max-width: 800px) {

        .logo-lines {
            padding-top: 7rem;
        }


        .logo-carousel {
            padding-top: 2 rem
        }

        .main-cont {
            padding: 40px 20px 40px 20px;
        }

        .main-cont .first-p {
            padding: 0px 0px 0px 10px;
            width: 100%;
            text-align: start;
            align-items: start;
        }

        .main-cont .first-p h2,
        p {
            text-align: start;
            align-items: start;
        }


        .main-cont .first-p .ziua {

            display: flex;
            gap: 0.5rem;
            background-color: var(--color-muted);
            width: 60%;
            height: 3rem;
            align-items: center;
            justify-content: center;
            border-radius: 1rem;
        }

        .main-cont .first-p .ziua .data {
            background-color: var(--color-bg);
            border-radius: 1rem;
            height: 90%;
            width: 90%;
            display: flex;
            justify-content: center;
            align-items: center;
        }


        .galerie-k {
            width: 100%;
        }

        .final {
            justify-content: center;
            align-items: center;
            width: 100%;
            display: flex;
            height: auto;
            padding: 0px 20px 40px 20px;
        }

        .final p {
            text-align: center;
        }
    }