/* ==================================================
   KRUJA 360°
   STILI I PLOTË I FAQES
================================================== */


/* ==================================================
   NGJYRAT DHE VARIABLAT
================================================== */

:root {
    --red: #b74338;
    --red-dark: #853128;
    --coral: #dc725e;

    --gold: #d5a447;
    --gold-light: #f2dfad;

    --green: #487266;
    --green-dark: #294d45;
    --green-light: #dce9e3;

    --blue: #3d7183;
    --blue-light: #d9eaf0;

    --cream: #f7f1e7;
    --cream-dark: #e9dece;

    --white: #ffffff;
    --text: #24343b;
    --text-soft: #66757a;

    --border: rgba(36, 52, 59, 0.13);
    --shadow: 0 20px 50px rgba(35, 47, 51, 0.12);
    --shadow-light: 0 12px 35px rgba(35, 47, 51, 0.08);

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --container: 1180px;
}


/* ==================================================
   RESET
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;

    color: var(--text);
    background: var(--white);

    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}

.section-container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}


/* ==================================================
   TIPOGRAFIA
================================================== */

h1,
h2,
h3 {
    line-height: 1.12;
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 600;
}

h1 em,
h2 em {
    display: block;
    color: var(--red);
    font-weight: 600;
}

h2 {
    margin-top: 15px;
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    letter-spacing: -0.04em;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text-soft);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--red);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-label::before {
    width: 36px;
    height: 2px;
    content: "";
    background: currentColor;
}

.light-label {
    color: var(--gold-light);
}

.large-paragraph {
    color: var(--text);
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.3vw, 1.85rem);
    line-height: 1.55;
}

.section-heading {
    margin-bottom: 55px;
}

.centered-heading {
    max-width: 760px;
    margin-right: auto;
    margin-bottom: 65px;
    margin-left: auto;
    text-align: center;
}

.centered-heading .section-label {
    justify-content: center;
}

.centered-heading p:last-child {
    max-width: 650px;
    margin: 24px auto 0;
}


/* ==================================================
   HEADER
================================================== */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;

    border-bottom: 1px solid transparent;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--border);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 30px rgba(25, 41, 47, 0.08);
    backdrop-filter: blur(18px);
}

.navbar {
    width: min(calc(100% - 48px), 1280px);
    min-height: 86px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
}

.brand-logo {
    width: 58px;
    height: 58px;
    overflow: hidden;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: transparent;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    border-radius: 50%;
    transform: scale(1.05);
    mix-blend-mode: multiply;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
}

.brand-text small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-header.scrolled .brand-text strong {
    color: var(--text);
}

.site-header.scrolled .brand-text small {
    color: var(--text-soft);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    position: relative;
    padding: 10px 13px;

    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.nav-menu a::after {
    position: absolute;
    right: 13px;
    bottom: 4px;
    left: 13px;

    height: 2px;
    content: "";

    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.site-header.scrolled .nav-menu a {
    color: var(--text);
}

.site-header.scrolled .nav-menu a:hover,
.site-header.scrolled .nav-menu a.active {
    color: var(--red);
}

.nav-menu .back-home {
    margin-right: 8px;
    padding: 10px 17px;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
}

.nav-menu .back-home::after {
    display: none;
}

.site-header.scrolled .nav-menu .back-home {
    border-color: var(--border);
    background: var(--cream);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    padding: 11px;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 5px;
    background: var(--white);
    transition: 0.3s ease;
}

.site-header.scrolled .menu-toggle {
    border-color: var(--border);
    background: var(--cream);
}

.site-header.scrolled .menu-toggle span {
    background: var(--text);
}


/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;

    background: var(--green-dark);
}

.hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
    animation: heroZoom 16s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(21, 42, 40, 0.92) 0%,
            rgba(25, 48, 46, 0.7) 46%,
            rgba(21, 42, 40, 0.22) 100%
        ),
        linear-gradient(
            0deg,
            rgba(18, 34, 34, 0.5) 0%,
            transparent 55%
        );
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-decoration-one {
    top: 18%;
    right: 8%;
    width: 280px;
    height: 280px;
}

.hero-decoration-two {
    right: -80px;
    bottom: -100px;
    width: 370px;
    height: 370px;
    border-color: rgba(213, 164, 71, 0.25);
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 48px), 1180px);
    margin: 80px auto 0;
}

.hero h1 {
    max-width: 810px;
    margin-top: 18px;

    color: var(--white);
    font-size: clamp(4rem, 10vw, 8.7rem);
    letter-spacing: -0.06em;
}

.hero h1 em {
    color: var(--gold-light);
}

.hero-description {
    max-width: 610px;
    margin-top: 28px;

    color: rgba(255, 255, 255, 0.83);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.button {
    min-height: 52px;
    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-size: 0.88rem;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 12px 28px rgba(183, 67, 56, 0.35);
}

.button-primary:hover {
    background: var(--red-dark);
}

.button-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
}

.button-outline:hover {
    color: var(--text);
    background: var(--white);
}

.scroll-indicator {
    position: absolute;
    z-index: 2;
    right: 50%;
    bottom: 30px;

    width: 30px;
    height: 50px;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    transform: translateX(50%);
}

.scroll-indicator span {
    position: absolute;
    top: 10px;
    left: 50%;

    width: 4px;
    height: 8px;

    border-radius: 999px;
    background: var(--white);
    transform: translateX(-50%);
    animation: scrollMove 1.8s ease infinite;
}

@keyframes scrollMove {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 18px);
        opacity: 0;
    }
}


/* ==================================================
   PREZANTIMI
================================================== */

.welcome-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 95px;

    background:
        radial-gradient(circle at 90% 12%, var(--blue-light), transparent 25%),
        var(--white);
}

.welcome-section::before {
    position: absolute;
    top: -110px;
    left: -100px;

    width: 300px;
    height: 300px;
    content: "";

    border: 65px solid rgba(213, 164, 71, 0.11);
    border-radius: 50%;
}

.welcome-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;
    align-items: start;
}

.welcome-heading h2 {
    font-size: clamp(2.8rem, 5.5vw, 5.3rem);
}

.welcome-content {
    padding-top: 42px;
}

.welcome-content p + p {
    margin-top: 24px;
}

.facts-grid {
    position: relative;
    z-index: 1;

    margin-top: 85px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.fact-card {
    min-height: 135px;
    padding: 25px;

    display: flex;
    align-items: center;
    gap: 16px;

    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-light);
}

.fact-card:nth-child(2) {
    background: var(--cream);
}

.fact-card:nth-child(3) {
    background: var(--green-light);
}

.fact-card:nth-child(4) {
    background: var(--blue-light);
}

.fact-number,
.fact-symbol {
    color: var(--red);
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
}

.fact-card strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
}

.fact-card p {
    margin-top: 4px;
    font-size: 0.8rem;
    line-height: 1.4;
}


/* ==================================================
   HISTORIA
================================================== */

.history-section {
    padding: 120px 0;
    background: var(--cream);
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.history-image-wrapper {
    position: relative;
    min-height: 660px;
}

.history-image-wrapper > img {
    width: 90%;
    height: 610px;

    object-fit: cover;

    border-radius: 160px 160px 28px 28px;
    box-shadow: var(--shadow);
}

.history-image-wrapper::after {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 40px;

    width: 58%;
    height: 56%;

    content: "";

    border-radius: 50%;
    background: var(--gold-light);
}

.history-image-note {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 25px;

    width: 250px;
    padding: 25px;

    border-left: 5px solid var(--red);
    border-radius: 4px 18px 18px 4px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.history-image-note span {
    display: block;
    margin-bottom: 7px;

    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.history-image-note strong {
    font-family: var(--serif);
    font-size: 1.15rem;
    line-height: 1.3;
}

.history-content {
    position: relative;
    z-index: 1;
}

.history-content .large-paragraph {
    margin: 30px 0 22px;
}

.history-content > p:not(.section-label):not(.large-paragraph) {
    margin-top: 18px;
}


/* ==================================================
   KRONOLOGJIA
================================================== */

.timeline-section {
    padding: 120px 0;
    overflow: hidden;
    background: var(--white);
}

.timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.timeline::before {
    position: absolute;
    top: 16px;
    right: 0;
    left: 0;

    height: 2px;
    content: "";

    background: var(--cream-dark);
}

.timeline-item {
    position: relative;
    padding-top: 52px;
}

.timeline-dot {
    position: absolute;
    z-index: 1;
    top: 7px;
    left: 0;

    width: 20px;
    height: 20px;

    border: 5px solid var(--white);
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 2px var(--green);
}

.featured-timeline .timeline-dot {
    background: var(--red);
    box-shadow: 0 0 0 2px var(--red);
}

.timeline-period {
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.timeline-item h3 {
    margin: 10px 0 12px;
    font-family: var(--serif);
    font-size: 1.35rem;
}

.timeline-item > p:last-child {
    font-size: 0.88rem;
    line-height: 1.65;
}


/* ==================================================
   ATRAKSIONET
================================================== */

.attractions-section {
    padding: 120px 0;
    color: var(--white);
    background: var(--green-dark);
}

.attractions-heading {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 80px;
    align-items: end;
}

.attractions-heading h2 {
    color: var(--white);
}

.attractions-heading h2 em {
    color: var(--gold-light);
}

.attractions-heading > p {
    padding-bottom: 12px;
    color: rgba(255, 255, 255, 0.68);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 390px;
    gap: 18px;
}

.attraction-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--text);
}

.attraction-card.large-card {
    grid-row: span 2;
}

.attraction-card.wide-card {
    grid-column: span 2;
}

.attraction-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    transition: transform 0.7s ease;
}

.attraction-card:hover img {
    transform: scale(1.08);
}

.attraction-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(19, 33, 33, 0.92) 0%,
            rgba(19, 33, 33, 0.1) 70%
        );
}

.attraction-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 28px;
}

.attraction-content span {
    display: inline-flex;
    width: 35px;
    height: 35px;

    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;

    font-size: 0.74rem;
    font-weight: 700;
}

.attraction-content h3 {
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.attraction-content p {
    max-width: 430px;
    margin-top: 10px;

    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.55;
}


/* ==================================================
   PËRVOJAT
================================================== */

.experiences-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: var(--white);
}

.experiences-section::after {
    position: absolute;
    right: -120px;
    bottom: -160px;

    width: 430px;
    height: 430px;
    content: "";

    border: 85px solid rgba(61, 113, 131, 0.08);
    border-radius: 50%;
}

.experiences-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.experience-card {
    min-height: 315px;
    padding: 35px 28px;

    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-light);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.experience-card:nth-child(1) {
    border-top: 5px solid var(--red);
}

.experience-card:nth-child(2) {
    border-top: 5px solid var(--gold);
}

.experience-card:nth-child(3) {
    border-top: 5px solid var(--green);
}

.experience-card:nth-child(4) {
    border-top: 5px solid var(--blue);
}

.experience-card:hover {
    transform: translateY(-9px);
}

.experience-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    border-radius: 50%;
    color: var(--red);
    background: var(--cream);

    font-family: var(--serif);
    font-size: 2rem;
}

.experience-card h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
}

.experience-card p {
    margin-top: 15px;
    font-size: 0.9rem;
}


/* ==================================================
   ITINERARI
================================================== */

.itinerary-section {
    padding: 120px 0;
    background:
        linear-gradient(
            90deg,
            var(--cream) 0%,
            var(--cream) 43%,
            var(--white) 43%,
            var(--white) 100%
        );
}

.itinerary-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 95px;
    align-items: start;
}

.itinerary-intro {
    position: sticky;
    top: 120px;
}

.itinerary-intro > p:not(.section-label) {
    margin-top: 24px;
}

.itinerary-intro img {
    width: 100%;
    height: 320px;
    margin-top: 35px;

    object-fit: cover;

    border-radius: 24px 90px 24px 24px;
    box-shadow: var(--shadow);
}

.itinerary-list {
    display: flex;
    flex-direction: column;
}

.itinerary-item {
    padding: 28px 0;

    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 25px;

    border-bottom: 1px solid var(--border);
}

.itinerary-item:first-child {
    padding-top: 0;
}

.itinerary-item > span {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: var(--white);
    background: var(--green);

    font-size: 0.78rem;
    font-weight: 700;
}

.itinerary-item:nth-child(3) > span,
.itinerary-item:nth-child(6) > span {
    background: var(--red);
}

.itinerary-item h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
}

.itinerary-item p {
    margin-top: 9px;
    font-size: 0.9rem;
}


/* ==================================================
   GALERIA
================================================== */

.gallery-section {
    padding: 120px 0;
    overflow: hidden;
    background: var(--blue-light);
}

.gallery-heading {
    margin-bottom: 45px;

    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.gallery-controls {
    display: flex;
    gap: 10px;
    padding-bottom: 8px;
}

.gallery-button {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    background: var(--white);

    font-size: 1.25rem;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.gallery-button:hover {
    color: var(--white);
    background: var(--red);
    transform: translateY(-3px);
}

.gallery-track {
    width: 100%;
    padding: 0 max(24px, calc((100vw - var(--container)) / 2));

    display: flex;
    gap: 18px;
    overflow-x: auto;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.gallery-image {
    position: relative;
    width: min(420px, 78vw);
    height: 500px;
    overflow: hidden;
    flex: 0 0 auto;

    border-radius: 24px;
    background: var(--cream);
    scroll-snap-align: start;
}

.gallery-image:nth-child(2n) {
    height: 440px;
    margin-top: 40px;
}

.gallery-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}

.gallery-image:hover img {
    transform: scale(1.06);
    filter: brightness(0.82);
}

.gallery-image::after {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 58px;
    height: 58px;
    content: "+";

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: var(--text);
    background: rgba(255, 255, 255, 0.88);

    font-size: 1.8rem;

    opacity: 0;
    transform: translate(-50%, -40%);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.gallery-image:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%);
}


/* ==================================================
   LIGHTBOX
================================================== */

.lightbox {
    position: fixed;
    z-index: 3000;
    inset: 0;

    padding: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(13, 24, 27, 0.94);

    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: min(100%, 1100px);
    max-height: calc(100vh - 100px);

    border-radius: 18px;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);

    transition: background 0.25s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--red);
}

.lightbox-close {
    top: 25px;
    right: 25px;

    width: 52px;
    height: 52px;

    font-size: 1.7rem;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;

    width: 58px;
    height: 58px;

    font-size: 1.4rem;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}


/* ==================================================
   INFORMACIONI PËR VIZITORËT
================================================== */

.visitor-section {
    padding: 120px 0;
    background: var(--white);
}

.visitor-heading {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: end;
}

.visitor-heading > p {
    padding-bottom: 10px;
}

.visitor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.visitor-card {
    min-height: 270px;
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.visitor-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-light);
}

.visitor-card > span {
    display: inline-flex;
    margin-bottom: 45px;

    color: var(--red);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.visitor-card h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
}

.visitor-card p {
    margin-top: 13px;
    font-size: 0.9rem;
}

.visitor-card:nth-child(2),
.visitor-card:nth-child(5) {
    background: var(--cream);
}

.visitor-card:nth-child(3) {
    background: var(--green-light);
}

.visitor-card:nth-child(6) {
    background: var(--blue-light);
}


/* ==================================================
   HARTA E QYTETIT
================================================== */

.city-map-section {
    padding: 120px 0;
    background: var(--cream);
}

.city-map-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.city-map-content > p:not(.section-label) {
    margin-top: 25px;
}

.map-location-list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.map-location-list span {
    padding: 9px 15px;

    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    background: var(--white);

    font-size: 0.78rem;
    font-weight: 600;
}

.city-map-placeholder {
    min-height: 480px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(72, 114, 102, 0.3);
    border-radius: 35px;
    background:
        radial-gradient(circle at 30% 30%, var(--blue-light), transparent 34%),
        radial-gradient(circle at 75% 70%, var(--gold-light), transparent 30%),
        var(--green-light);
}

.location-symbol {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 50%;
    color: var(--white);
    background: var(--red);
    box-shadow: 0 15px 35px rgba(183, 67, 56, 0.25);

    font-size: 3rem;
}

.city-map-placeholder strong {
    font-family: var(--serif);
    font-size: 1.75rem;
}

.city-map-placeholder p {
    margin-top: 8px;
}


/* ==================================================
   BANNERI I VIZITËS
================================================== */

.visit-banner {
    position: relative;
    min-height: 650px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    background: var(--green-dark);
}

.visit-banner > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.visit-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(24, 45, 43, 0.9),
            rgba(24, 45, 43, 0.45)
        );
}

.visit-banner-content {
    position: relative;
    z-index: 1;

    width: min(calc(100% - 48px), 850px);
}

.visit-banner-content h2 {
    color: var(--white);
    font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.visit-banner-content h2 em {
    color: var(--gold-light);
}

.visit-banner-content > p:not(.section-label) {
    max-width: 600px;
    margin: 25px auto 35px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
}


/* ==================================================
   FOOTER
================================================== */

.footer {
    color: rgba(255, 255, 255, 0.72);
    background: #203b38;
}

.footer-grid {
    padding-top: 85px;
    padding-bottom: 70px;

    display: grid;
    grid-template-columns: 1.35fr 0.65fr 0.7fr 1.3fr;
    gap: 55px;
}

.footer .brand-text strong {
    color: var(--white);
}

.footer .brand-text small {
    color: rgba(255, 255, 255, 0.55);
}

.footer-brand > p {
    max-width: 330px;
    margin-top: 23px;

    color: rgba(255, 255, 255, 0.58);
    font-size: 0.87rem;
}

.footer h3 {
    margin-bottom: 20px;

    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.88rem;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-project p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.83rem;
    line-height: 1.7;
}

.footer-project p + p {
    margin-top: 14px;
}

.footer-project strong {
    color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom-content {
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.79rem;
}

.footer-bottom a {
    transition: color 0.25s ease;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}


/* ==================================================
   ANIMACIONET GJATË LËVIZJES
================================================== */

.reveal-element {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1050px) {

    .nav-menu {
        gap: 2px;
    }

    .nav-menu a {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 0.8rem;
    }

    .nav-menu .back-home {
        display: none;
    }

    .welcome-grid,
    .history-grid,
    .itinerary-grid,
    .city-map-grid {
        gap: 55px;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 45px;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        padding-top: 40px;
    }

    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .attraction-card.large-card {
        grid-row: span 1;
    }

    .attraction-card.wide-card {
        grid-column: span 1;
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visitor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.3fr 0.7fr 1fr;
    }

    .footer-project {
        grid-column: span 3;
        max-width: 700px;
    }
}


/* ==================================================
   TELEFON DHE TABLET I VOGËL
================================================== */

@media (max-width: 760px) {

    html {
        scroll-padding-top: 75px;
    }

    .section-container {
        width: min(calc(100% - 30px), var(--container));
    }

    .navbar {
        width: calc(100% - 30px);
        min-height: 74px;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-text strong {
        font-size: 1.08rem;
    }

    .brand-text small {
        display: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 1002;
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        z-index: 1001;
        inset: 0;

        padding: 115px 30px 40px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 5px;

        background: var(--green-dark);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu .back-home {
        display: block;
        margin: 0 0 15px;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .nav-menu a,
    .site-header.scrolled .nav-menu a {
        padding: 14px 5px;
        color: var(--white);
        font-family: var(--serif);
        font-size: 1.65rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero {
        min-height: 820px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(21, 42, 40, 0.95) 0%,
                rgba(21, 42, 40, 0.55) 75%,
                rgba(21, 42, 40, 0.25) 100%
            );
    }

    .hero-content {
        width: calc(100% - 30px);
        margin-top: 80px;
    }

    .hero h1 {
        font-size: clamp(4rem, 21vw, 6.5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    .welcome-section,
    .history-section,
    .timeline-section,
    .attractions-section,
    .experiences-section,
    .itinerary-section,
    .gallery-section,
    .visitor-section,
    .city-map-section {
        padding: 85px 0;
    }

    .welcome-grid,
    .history-grid,
    .itinerary-grid,
    .city-map-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .welcome-content {
        padding-top: 0;
    }

    .facts-grid {
        margin-top: 55px;
        grid-template-columns: 1fr;
    }

    .history-image-wrapper {
        min-height: 500px;
    }

    .history-image-wrapper > img {
        width: 100%;
        height: 480px;
        border-radius: 100px 100px 22px 22px;
    }

    .history-image-note {
        right: 15px;
        bottom: -5px;
        width: 220px;
    }

    .timeline {
        padding-left: 35px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .timeline::before {
        top: 0;
        bottom: 0;
        left: 9px;

        width: 2px;
        height: auto;

        display: block;
    }

    .timeline-item {
        padding: 0 0 45px;
    }

    .timeline-dot {
        top: 2px;
        left: -35px;
    }

    .attractions-heading,
    .visitor-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 430px;
    }

    .attraction-card.large-card,
    .attraction-card.wide-card {
        grid-row: span 1;
        grid-column: span 1;
    }

    .experiences-grid,
    .visitor-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: auto;
    }

    .itinerary-section {
        background: var(--cream);
    }

    .itinerary-intro {
        position: static;
    }

    .itinerary-item {
        grid-template-columns: 52px 1fr;
        gap: 18px;
    }

    .gallery-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-controls {
        align-self: flex-end;
    }

    .gallery-track {
        padding-right: 15px;
        padding-left: 15px;
    }

    .gallery-image {
        width: 82vw;
        height: 440px;
    }

    .gallery-image:nth-child(2n) {
        height: 440px;
        margin-top: 0;
    }

    .lightbox {
        padding: 60px 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        top: auto;
        bottom: 20px;

        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: calc(50% - 60px);
    }

    .lightbox-next {
        right: calc(50% - 60px);
    }

    .city-map-placeholder {
        min-height: 380px;
        padding: 30px;
        text-align: center;
    }

    .visit-banner {
        min-height: 620px;
    }

    .footer-grid {
        padding-top: 65px;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-project {
        grid-column: auto;
    }

    .footer-bottom-content {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }
}


/* ==================================================
   TELEFON SHUMË I VOGËL
================================================== */

@media (max-width: 420px) {

    h2 {
        font-size: 2.55rem;
    }

    .hero h1 {
        font-size: 4.4rem;
    }

    .brand-text strong {
        font-size: 0.98rem;
    }

    .fact-card {
        min-height: 120px;
    }

    .attractions-grid {
        grid-auto-rows: 390px;
    }

    .gallery-image {
        height: 390px;
    }

    .gallery-image:nth-child(2n) {
        height: 390px;
    }

    .itinerary-item {
        grid-template-columns: 45px 1fr;
        gap: 14px;
    }

    .itinerary-item > span {
        width: 44px;
        height: 44px;
    }
}


/* ==================================================
   AKSESUESHMËRIA
================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-image {
        animation: none;
    }
}
/* ==================================================
   HARTA TURISTIKE E KRUJËS
================================================== */

.city-map-image {
    width: 100%;
    height: 500px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 7px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    background: #f7f1e7;
    box-shadow: 0 20px 50px rgba(35, 47, 51, 0.15);
}

.city-map-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: contain;
    object-position: center;
}

/* Paraqitja në telefon */

@media (max-width: 760px) {
    .city-map-image {
        height: auto;
        border-width: 4px;
        border-radius: 20px;
    }

    .city-map-image img {
        width: 100%;
        height: auto;
    }
}
/* Rregullimi i dekorimit te fotografia e historisë */

.history-image-wrapper > img {
    position: relative;
    z-index: 1;
}

.history-image-wrapper::after {
    z-index: 0;
    pointer-events: none;
}

.history-image-note {
    z-index: 2;
}
/* ==================================================
   BIZNESET LOKALE
================================================== */

.local-business-section {
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(217, 234, 240, 0.9),
            transparent 27%
        ),
        #f7f1e7;
}

.local-business-heading {
    margin-bottom: 55px;

    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 70px;
    align-items: end;
}

.local-business-heading h2 {
    max-width: 720px;
}

.local-business-heading > div > p:last-child {
    max-width: 650px;
    margin-top: 24px;
}

.business-contact-button {
    min-height: 115px;
    padding: 22px 25px;

    display: grid;
    grid-template-columns: 55px 1fr 35px;
    align-items: center;
    gap: 16px;

    border-radius: 24px;
    color: white;
    background: #487266;
    box-shadow: 0 18px 40px rgba(41, 77, 69, 0.2);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.business-contact-button:hover {
    background: #b74338;
    transform: translateY(-5px);
}

.business-contact-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #24343b;
    background: #f2dfad;

    font-size: 1.35rem;
}

.business-contact-button small {
    display: block;
    margin-bottom: 4px;

    color: rgba(255, 255, 255, 0.68);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.business-contact-button strong {
    display: block;
    color: white;
    font-size: 0.94rem;
    line-height: 1.4;
}

.business-contact-arrow {
    color: white;
    font-size: 1.5rem;
}

.local-business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.local-business-card {
    min-height: 270px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    border: 1px solid rgba(36, 52, 59, 0.13);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 35px rgba(35, 47, 51, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.local-business-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(35, 47, 51, 0.13);
}

.business-card-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    border-radius: 50%;
    color: white;
    background: #487266;

    font-size: 1.6rem;
}

.local-business-card:nth-child(2) .business-card-icon,
.local-business-card:nth-child(5) .business-card-icon {
    background: #b74338;
}

.local-business-card:nth-child(3) .business-card-icon,
.local-business-card:nth-child(6) .business-card-icon {
    color: #24343b;
    background: #d5a447;
}

.local-business-card h3 {
    color: #24343b;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.45rem;
}

.under-construction {
    margin-top: auto;
    padding: 8px 13px;

    border-radius: 999px;
    color: #853128;
    background: rgba(220, 114, 94, 0.14);

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.business-contact-panel {
    margin-top: 65px;
    padding: 38px 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    border-radius: 28px;
    color: white;
    background: #294d45;
    box-shadow: 0 20px 50px rgba(41, 77, 69, 0.2);
}

.contact-panel-label {
    color: #f2dfad;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.business-contact-panel h3 {
    margin-top: 7px;

    color: white;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.8rem;
}

.business-contact-panel p {
    max-width: 700px;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.68);
}

.contact-email-button {
    min-width: 180px;
    min-height: 52px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-shrink: 0;

    border-radius: 999px;
    color: #24343b;
    background: #f2dfad;

    font-weight: 700;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.contact-email-button:hover {
    background: white;
    transform: translateY(-3px);
}


/* Paraqitja në telefon */

@media (max-width: 760px) {

    .local-business-section {
        padding: 85px 0;
    }

    .local-business-heading {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .local-business-grid {
        grid-template-columns: 1fr;
    }

    .local-business-card {
        min-height: 230px;
    }

    .business-contact-panel {
        padding: 30px 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-email-button {
        width: 100%;
    }
}
.contact-email-text {
    color: #f2dfad;
    font-weight: 700;
    white-space: nowrap;
}

.contact-email-text:hover {
    color: #ffffff;
    text-decoration: underline;
}
/* ==================================================
   LOGOT E PARTNERËVE NË FOOTER
================================================== */

.footer-partner-logos {
    margin-top: 25px;

    display: flex;
    align-items: stretch;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-partner {
    width: 155px;
    min-height: 115px;
    padding: 13px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 9px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
}

.footer-partner img {
    width: 100%;
    height: 62px;
    display: block;

    object-fit: contain;
    object-position: center;
}

.footer-partner span {
    color: #526166;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 760px) {

    .footer-partner-logos {
        width: 100%;
    }

    .footer-partner {
        width: calc(50% - 7px);
    }
}

@media (max-width: 420px) {

    .footer-partner {
        width: 100%;
    }
}
/* Zvogëlimi i hapësirës së bardhë rreth logove */

.footer-partner {
    width: 145px;
    min-height: 88px;
    padding: 5px 7px;
    gap: 3px;

    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
}

.footer-partner img {
    width: 100%;
    height: 62px;

    object-fit: contain;
    object-position: center;

    transform: scale(1.14);
}

.footer-partner span {
    font-size: 0.56rem;
    line-height: 1.2;
}
@media (max-width: 760px) {
    .footer-partner {
        width: 135px;
        min-height: 84px;
    }

    .footer-partner img {
        height: 58px;
    }
}
/* Hapësirë shtesë për logon CLSA */

.footer-partner:first-child img {
    width: 94%;
    transform: scale(1.07);
    object-fit: contain;
    object-position: center;
}
/* Linku drejt faqes zyrtare të CLSA-së */

.clsa-website-link {
    max-width: 470px;
    margin-top: 18px;
    padding: 13px 16px;

    display: flex;
    align-items: center;
    gap: 11px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.07);

    font-size: 0.75rem;
    line-height: 1.45;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.clsa-website-link:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-2px);
}

.clsa-link-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #24343b;
    background: #f2dfad;

    font-size: 1rem;
}

.clsa-website-link strong {
    margin-left: auto;
    flex-shrink: 0;

    color: #f2dfad;
    font-size: 0.72rem;
}
/* Linku i CLSA-së më kompakt */

.clsa-website-link {
    max-width: 390px;
    min-height: 45px;
    margin-top: 7px;
    padding: 7px 11px;
    gap: 8px;
}

.clsa-link-icon {
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
}

.clsa-website-link span:nth-child(2) {
    font-size: 0.67rem;
    line-height: 1.25;
}

.clsa-website-link strong {
    font-size: 0.65rem;
}
/* ==================================================
   FOOTER MË I SHKURTËR DHE KOMPAKT
================================================== */

.footer-grid {
    padding-top: 40px;
    padding-bottom: 30px;
    gap: 28px;
}

.footer h3 {
    margin-bottom: 10px;
}

.footer-brand > p {
    margin-top: 12px;
    line-height: 1.5;
}

.footer-project p {
    line-height: 1.5;
}

.footer-project p + p {
    margin-top: 7px;
}

.footer-partner-logos {
    margin-top: 12px;
    gap: 9px;
}

.footer-partner {
    width: 135px;
    min-height: 75px;
    padding: 4px 6px;
}

.footer-partner img {
    height: 52px;
}

.footer-partner span {
    font-size: 0.52rem;
}

.clsa-website-link {
    max-width: 390px;
    min-height: 40px;
    margin-top: 6px;
    padding: 6px 10px;
}

.footer-bottom-content {
    min-height: 52px;
}

@media (max-width: 760px) {

    .footer-grid {
        padding-top: 35px;
        padding-bottom: 25px;
        gap: 25px;
    }

    .footer-partner {
        width: 125px;
    }

    .footer-bottom-content {
        min-height: 55px;
        padding: 12px 0;
    }
}