* {
    box-sizing: border-box;
}

:root {
    --bg: #03050a;
    --panel: rgba(5, 10, 22, 0.82);
    --panel2: rgba(8, 15, 32, 0.88);
    --line: rgba(160, 140, 255, 0.28);
    --purple: #8f63ff;
    --purple-light: #b491ff;
    --text: #ffffff;
    --muted: #d8dce8;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #03050a;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.8) 1px, transparent 1.3px),
        radial-gradient(circle, rgba(160,190,255,.45) 1px, transparent 1.3px);
    background-size: 130px 130px, 270px 270px;
    background-position: 10px 30px, 90px 160px;
    opacity: .30;
}

.site-header {
    width: 100%;
    min-height: 118px;
    padding: 14px clamp(22px, 5vw, 86px);
    display: flex;
    align-items: center;
    gap: clamp(28px, 5vw, 88px);
    background: rgba(3, 5, 10, .94);
    border-bottom: 1px solid rgba(255,255,255,.10);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo img {
    width: 145px;
    display: block;
    filter: drop-shadow(0 0 18px rgba(145,105,255,.35));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.3vw, 34px);
    flex-wrap: wrap;
    font-size: 16px;
}

.main-nav a,
.main-nav summary {
    color: #ffffff;
    text-decoration: none;
    list-style: none;
    cursor: pointer;
    background: transparent;
    border: 0;
    font: inherit;
    padding: 10px 0;
    position: relative;
}

.main-nav summary::-webkit-details-marker {
    display: none;
}

.main-nav a:hover,
.main-nav summary:hover,
.main-nav .active {
    color: var(--purple-light);
}

.main-nav .active::after,
.main-nav a:hover::after,
.main-nav summary:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background: var(--purple);
}

.main-nav details {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 42px;
    left: 0;
    min-width: 250px;
    padding: 10px;
    background: rgba(5, 10, 22, .98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 22px 50px rgba(0,0,0,.55);
}

details[open] .dropdown {
    display: block;
}

.dropdown a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
}

.dropdown a:hover {
    background: rgba(143, 99, 255, .16);
}

main {
    width: 100%;
    overflow-x: hidden;
}

.hero {
    width: 100%;
    min-height: 650px;
    padding: 70px clamp(24px, 5vw, 88px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    position: relative;
    background-image:
        linear-gradient(90deg, rgba(3,5,10,.78) 0%, rgba(3,5,10,.25) 50%, rgba(3,5,10,.78) 100%),
        url("assets/hero-bg.jpg");
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0,0,0,0) 62%, rgba(0,0,0,.78) 100%),
        radial-gradient(ellipse at 58% 55%, rgba(150, 105, 255, .16), transparent 38%);
}

.hero-copy,
.nasa-card {
    position: relative;
    z-index: 2;
}

.hero-copy {
    width: 100%;
    max-width: 620px;
    justify-self: start;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--purple-light);
    text-transform: uppercase;
    letter-spacing: .10em;
    font-size: 20px;
    font-weight: 700;
}

h1 {
    margin: 0 0 20px;
    font-size: clamp(44px, 5.2vw, 76px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.intro,
.section-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
    margin: 0;
}

.actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: 1px solid rgba(160, 140, 255, .55);
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    background: rgba(5, 10, 22, .30);
}

.btn.primary {
    background: linear-gradient(135deg, #7447de, #4e2eb2);
    box-shadow: 0 12px 26px rgba(92, 60, 180, .35);
    border-color: transparent;
}

.btn:hover {
    background: rgba(143, 99, 255, .25);
}

.nasa-card {
    width: 100%;
    max-width: 390px;
    justify-self: end;
    padding: 22px;
    border: 1px solid rgba(160, 140, 255, .30);
    border-radius: 12px;
    background: rgba(4, 8, 18, .84);
    box-shadow: 0 18px 50px rgba(0,0,0,.48);
    backdrop-filter: blur(12px);
}

.nasa-card h2 {
    margin: 0;
    text-transform: uppercase;
    font-size: 18px;
}

.title-line {
    display: block;
    width: 58px;
    height: 3px;
    background: var(--purple);
    margin: 10px 0 14px;
}

.nasa-image-link {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.nasa-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.12);
    transition: transform .2s ease;
}

.nasa-image-link:hover img {
    transform: scale(1.025);
}

.nasa-card h3 {
    margin: 16px 0 6px;
    font-size: 18px;
}

.nasa-card p {
    color: var(--muted);
    line-height: 1.55;
    font-size: 14px;
}

.nasa-card .date {
    color: #a8afc8;
    margin: 0 0 10px;
}

.nasa-btn {
    min-height: 40px;
    padding: 0 18px;
    font-size: 12px;
}

.cards {
    width: min(1370px, 92vw);
    margin: 24px auto 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card {
    min-height: 178px;
    padding: 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    background: var(--panel);
    border: 1px solid rgba(160, 140, 255, .26);
    box-shadow: 0 18px 46px rgba(0,0,0,.32);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.card:hover {
    border-color: rgba(180, 145, 255, .62);
    transform: translateY(-2px);
}

.icon {
    font-size: 34px;
    color: var(--purple-light);
}

.card h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.55;
}

.card span {
    color: var(--purple-light);
}

.round-preview {
    width: 132px;
    height: 132px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.12);
}

.seestar-preview,
.square-preview {
    width: 150px;
    height: 132px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.12);
}

.daily-banner {
    width: min(1370px, 92vw);
    min-height: 168px;
    margin: 16px auto 36px;
    padding: 26px;
    border: 1px solid rgba(160, 140, 255, .26);
    border-radius: 12px;
    background-image:
        linear-gradient(90deg, rgba(6,13,29,.96) 0%, rgba(6,13,29,.76) 30%, rgba(6,13,29,.20) 100%),
        url("assets/daily-banner.jpg");
    background-size: cover;
    background-position: center;
}

.daily-banner h2 {
    margin: 0 0 12px;
    color: var(--purple-light);
    font-size: 24px;
}

.daily-banner p {
    color: var(--muted);
    line-height: 1.55;
}

.banner-btn {
    min-height: 40px;
    font-size: 12px;
}

.content-section {
    width: min(1180px, 92vw);
    margin: 40px auto;
    padding: 30px;
    border-radius: 14px;
    background: var(--panel);
    border: 1px solid rgba(160, 140, 255, .24);
}

.content-section h2 {
    font-size: 30px;
    margin: 0 0 12px;
}

.live-image,
.content-section video {
    width: 100%;
    max-width: 100%;
    max-height: 720px;
    margin-top: 18px;
    border-radius: 12px;
    display: block;
    background: #000;
    object-fit: contain;
}

footer {
    padding: 32px 5vw;
    color: #aeb5c8;
    border-top: 1px solid rgba(255,255,255,.08);
}

.gallery-page {
    width: min(1500px, 94vw) !important;
    margin: 48px auto !important;
}

.gallery-page h1 {
    font-size: clamp(42px, 5vw, 70px);
}

.page-intro {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 18px;
}

.icon-gallery {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    margin-top: 28px !important;
}

.photo-icon {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    color: #fff !important;
    text-decoration: none !important;
    background: rgba(5, 10, 22, 0.78) !important;
    border: 1px solid rgba(160, 140, 255, 0.28) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.photo-icon img {
    display: block !important;
    width: 100% !important;
    height: 125px !important;
    max-width: 100% !important;
    object-fit: cover !important;
}

.photo-title {
    display: block !important;
    padding: 7px 8px 2px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.photo-category {
    display: block !important;
    padding: 0 8px 8px !important;
    font-size: 10px !important;
    color: #a98cff !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.photo-count {
    color: #a98cff !important;
    font-weight: 700 !important;
    margin-top: 18px !important;
}

@media (max-width: 1200px) {
    .site-header {
        min-height: auto;
        gap: 26px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .nasa-card {
        justify-self: start;
        max-width: 560px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .icon-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    .site-header {
        flex-direction: column;
        padding: 16px 20px;
        gap: 14px;
    }

    .logo img {
        width: 126px;
    }

    .main-nav {
        justify-content: center;
        gap: 16px;
        font-size: 15px;
    }

    .dropdown {
        position: static;
        margin-top: 6px;
    }

    .hero {
        padding: 42px 22px;
    }

    h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .card {
        grid-template-columns: auto 1fr;
    }

    .round-preview,
    .seestar-preview,
    .square-preview {
        display: none;
    }

    .icon-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .photo-icon img {
        height: 105px !important;
    }
}

@media (max-width: 480px) {
    .icon-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .photo-icon img {
        height: 110px !important;
    }
}


/* FIX: schone hero zonder dubbele mockup-tekst */
.hero {
    background-image:
        linear-gradient(90deg, rgba(3,5,10,.86) 0%, rgba(3,5,10,.36) 48%, rgba(3,5,10,.78) 100%),
        url("assets/hero-bg.jpg") !important;
    background-size: cover !important;
    background-position: center center !important;
}

.hero::after {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.12) 55%, rgba(0,0,0,.82) 100%),
        radial-gradient(ellipse at 58% 55%, rgba(150, 105, 255, .15), transparent 38%) !important;
}



/* DEFINITIEVE HERO FIX - GEEN AFBEELDING MEER IN HERO
   Hierdoor kan er niets meer dubbel staan vanuit een screenshot/mockup.
*/
.hero {
    background-image:
        radial-gradient(circle at 52% 38%, rgba(145, 95, 255, 0.30), transparent 28%),
        radial-gradient(circle at 72% 58%, rgba(0, 160, 255, 0.13), transparent 34%),
        radial-gradient(circle at 20% 70%, rgba(120, 80, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #03050a 0%, #071020 52%, #050812 100%) !important;
    background-size: cover !important;
    background-position: center center !important;
    position: relative !important;
    isolation: isolate !important;
}

.hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.95) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(160,190,255,0.50) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(255,255,255,0.35) 1px, transparent 1.5px) !important;
    background-size: 120px 120px, 210px 210px, 320px 320px !important;
    background-position: 10px 40px, 80px 130px, 180px 70px !important;
    opacity: 0.38 !important;
}

.hero::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background:
        linear-gradient(90deg, rgba(3,5,10,0.65) 0%, rgba(3,5,10,0.18) 50%, rgba(3,5,10,0.72) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.00) 55%, rgba(0,0,0,0.78) 100%) !important;
}

.hero-copy,
.nasa-card {
    z-index: 2 !important;
}

/* Maak homepage overzichtelijker */
.hero {
    min-height: 620px !important;
    padding-top: 64px !important;
    padding-bottom: 64px !important;
}

.cards,
.daily-banner,
.content-section {
    position: relative !important;
    z-index: 2 !important;
}

/* Zorg dat NASA compact blijft */
.nasa-card {
    align-self: center !important;
}

.nasa-card img {
    height: 190px !important;
    object-fit: cover !important;
}

/* Forceer geen horizontale overlap */
.hero-copy {
    max-width: 610px !important;
}

@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr !important;
    }

    .nasa-card {
        justify-self: start !important;
        max-width: 560px !important;
    }
}


/* AllSky livefoto fix */
.missing-live-image {
    margin-top: 18px;
    padding: 22px;
    border-radius: 12px;
    background: rgba(5, 10, 22, 0.82);
    border: 1px solid rgba(160, 140, 255, 0.28);
    color: #d8dce8;
}

.live-image {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 720px !important;
    object-fit: contain !important;
    background: #000 !important;
}



/* CUSTOM HERO ACHTERGROND - geüploade foto */
.hero {
    background-image:
        linear-gradient(90deg, rgba(3,5,10,.78) 0%, rgba(3,5,10,.22) 52%, rgba(3,5,10,.72) 100%),
        url("assets/hero-bg.jpg") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 650px !important;
}

.hero::before {
    display: none !important;
}

.hero::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.12) 55%, rgba(0,0,0,.82) 100%),
        radial-gradient(ellipse at 58% 55%, rgba(150, 105, 255, .12), transparent 40%) !important;
}

.hero-copy,
.nasa-card {
    position: relative !important;
    z-index: 2 !important;
}

@media (max-width: 760px) {
    .hero {
        background-position: 58% center !important;
    }
}



/* =========================================================
   VASTE ACHTERGROND OP ELKE PAGINA
   Dezelfde afbeelding blijft zichtbaar tijdens scrollen.
   ========================================================= */

html {
    min-height: 100%;
    background: #03050a;
}

body {
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(3, 5, 10, 0.72), rgba(3, 5, 10, 0.84)),
        url("assets/hero-bg.jpg") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Oude sterrenlagen/achtergronden uitzetten zodat de foto overal zichtbaar blijft */
body::before {
    display: none !important;
}

/* Hero gebruikt dezelfde vaste achtergrond als de rest van de site */
.hero {
    background-image: none !important;
    background: transparent !important;
}

/* Extra overlay in hero behouden voor leesbaarheid */
.hero::after {
    background:
        linear-gradient(90deg, rgba(3,5,10,0.35), rgba(3,5,10,0.12), rgba(3,5,10,0.45)),
        linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.60)) !important;
}

/* Panelen transparant/glasachtig zodat de achtergrond zichtbaar blijft */
.nasa-card,
.card,
.daily-banner,
.content-section,
.gallery-page,
.gallery-card,
.photo-icon {
    background-color: rgba(5, 10, 22, 0.72) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Banner geen eigen achtergrondafbeelding meer, zodat siteachtergrond doorloopt */
.daily-banner {
    background-image: none !important;
}

/* Galerijpagina's ook dezelfde achtergrond */
main,
.gallery-page {
    background: transparent !important;
}

/* Mobiel: fixed background kan op sommige telefoons haperen; dit houdt de look stabiel */
@media (max-width: 760px) {
    body {
        background-attachment: scroll !important;
        background-position: center top !important;
    }
}

/* Grote foto popup met tekst/caption onder de foto */
body.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(0, 0, 0, 0.84);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-panel {
    position: relative;
    width: min(1100px, 96vw);
    max-height: 94vh;
    overflow: auto;
    border-radius: 18px;
    border: 1px solid rgba(180, 145, 255, 0.35);
    background: rgba(7, 10, 24, 0.96);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.65);
}

.gallery-lightbox-close {
    position: sticky;
    top: 12px;
    float: right;
    z-index: 2;
    width: 44px;
    height: 44px;
    margin: 12px 12px -56px 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.68);
    font-size: 34px;
    line-height: 36px;
    cursor: pointer;
}

.gallery-lightbox-image {
    display: block;
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    background: #000;
}

.gallery-lightbox-text {
    padding: 20px 24px 24px;
    color: #fff;
}

.gallery-lightbox-title {
    margin: 0 0 8px;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.15;
}

.gallery-lightbox-caption {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.65;
    white-space: pre-line;
}

.gallery-lightbox-caption.is-placeholder {
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
}

@media (max-width: 720px) {
    .gallery-lightbox {
        padding: 10px;
    }

    .gallery-lightbox-panel {
        width: 100%;
        border-radius: 14px;
    }

    .gallery-lightbox-image {
        max-height: 62vh;
    }

    .gallery-lightbox-text {
        padding: 16px;
    }
}


/* Working compact gallery + advanced lightbox */
.icon-gallery {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    margin-top: 28px !important;
}

.photo-icon {
    display: block !important;
    color: #fff !important;
    text-decoration: none !important;
    background: rgba(5, 10, 22, 0.72) !important;
    border: 1px solid rgba(160, 140, 255, 0.28) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.photo-icon img {
    width: 100% !important;
    height: 125px !important;
    object-fit: cover !important;
    display: block !important;
}

.photo-title {
    display: block !important;
    padding: 7px 8px 2px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.photo-category {
    display: block !important;
    padding: 0 8px 8px !important;
    font-size: 10px !important;
    color: #a98cff !important;
}

.photo-count {
    color: #a98cff !important;
    font-weight: 700 !important;
    margin-top: 18px !important;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.90);
    z-index: 99999;
    padding: 30px;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    max-width: 1300px;
    width: 100%;
    max-height: 95vh;
    overflow: auto;
    background: rgba(5,10,22,.96);
    border: 1px solid rgba(160,140,255,.35);
    border-radius: 14px;
    padding: 20px;
    position: relative;
}

.lightbox img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #000;
    border-radius: 10px;
    cursor: zoom-in;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(5,10,22,.88);
    border: 1px solid rgba(160,140,255,.45);
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    z-index: 3;
}

.lightbox-close {
    top: 10px;
    right: 14px;
    font-size: 34px;
    padding: 4px 14px;
}

.lightbox-prev {
    left: 12px;
    top: 45%;
    font-size: 32px;
    padding: 8px 14px;
}

.lightbox-next {
    right: 12px;
    top: 45%;
    font-size: 32px;
    padding: 8px 14px;
}

.lightbox-meta h3 {
    margin: 16px 0 6px;
    color: #fff;
}

.lightbox-category {
    color: #b491ff;
    font-weight: 700;
    margin-bottom: 10px;
}

.lightbox-caption {
    color: #d8dce8;
    line-height: 1.6;
    margin-bottom: 14px;
}

.open-original-btn {
    display: inline-block;
    padding: 10px 16px;
    background: #7447de;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .icon-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    .icon-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .photo-icon img {
        height: 105px !important;
    }

    .lightbox {
        padding: 12px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 24px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .icon-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
