/*==========================================
   FAKULTAS TEKNIK UNKRIS - Custom Styles
   Theme: Primary #111111 | Accent #C9A96E
==========================================*/

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #111111;
    --primary-dark: #000000;
    --accent: #C9A96E;
    --accent-dark: #B8953D;
    --secondary: #F5F0E8;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --bg-white: #FFFFFF;
    --bg-gray: #F8F8F8;
    --bg-section: #F5F0E8;
    --border: #E5E5E5;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 5px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 169, 110, 0.3);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.preloader-text {
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--primary);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 2px solid var(--accent);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-contact {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.topbar-contact li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
}

.topbar-contact i {
    color: var(--accent);
    font-size: 12px;
}

.topbar-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-contact a:hover {
    color: var(--accent);
}

.topbar-social {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.topbar-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.topbar-social a:hover {
    color: var(--accent);
}

.topbar-login a {
    border: 1px solid var(--accent);
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 12px;
}

.topbar-login a:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--bg-white);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar.sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar.navbar-scrolled {
    background: var(--bg-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    padding: 10px 0;
}

.navbar-brand img {
    height: 45px;
}

.logo-dark {
    display: inline-block;
}

.logo-light {
    display: none;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 25px 15px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent);
}

.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: var(--shadow-hover);
    padding: 10px 0;
    margin-top: 0;
    border-top: 2px solid var(--accent);
}

.navbar-nav .dropdown-item {
    padding: 8px 25px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.navbar-nav .dropdown-item:hover {
    background: var(--secondary);
    color: var(--accent);
    padding-left: 30px;
}

.dropdown-divider {
    border-color: var(--border);
}

/* Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 10px;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.65);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    padding-top: 80px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-title {
    color: var(--bg-white);
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-actions .btn {
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 0;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
}

.btn-light {
    background: var(--bg-white);
    border-color: var(--bg-white);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.light {
    color: var(--bg-white);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header.light .section-title {
    color: var(--bg-white);
}

.section-subtitle {
    color: var(--text-medium);
    font-size: 16px;
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.count-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 2px 10px;
    font-size: 14px;
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 5px;
}

.count-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
}

.bg-gray {
    background: var(--bg-gray);
}

.overlay-dark {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.85);
}

.overlay-dark > .container {
    position: relative;
    z-index: 1;
}

/* ===== PROGRAM CARDS ===== */
.section-programs {
    margin-top: -50px;
    position: relative;
    z-index: 3;
    padding-bottom: 40px;
}

.program-card {
    background: var(--bg-white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.program-card:hover {
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--accent);
    transform: translateY(-5px);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--accent);
    transition: var(--transition);
}

.program-card:hover .program-icon {
    background: var(--accent);
    color: var(--primary);
}

.program-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.program-desc {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 20px;
}

.program-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-link:hover {
    color: var(--accent-dark);
}

/* ===== ANNOUNCEMENT / ACCORDION ===== */
.announcement-card {
    border: 1px solid var(--border);
    border-radius: 0;
    margin-bottom: 0;
}

.announcement-card .card-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
}

.announcement-btn {
    display: block;
    width: 100%;
    text-align: left;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    padding: 15px 20px;
    text-decoration: none;
    white-space: normal;
}

.announcement-btn:hover {
    color: var(--accent);
    text-decoration: none;
}

.announcement-btn[aria-expanded="true"] {
    color: var(--accent);
}

.announcement-date {
    color: var(--text-light);
    font-size: 12px;
    white-space: nowrap;
    padding-right: 10px;
}

.announcement-card .card-body {
    padding: 20px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===== ARTICLE CARDS ===== */
.article-card {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.article-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.article-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: var(--primary);
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-body {
    padding: 20px;
}

.article-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-light);
}

.article-meta i {
    margin-right: 4px;
    color: var(--accent);
}

.article-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-title a {
    color: var(--text-dark);
}

.article-title a:hover {
    color: var(--accent);
}

.article-excerpt {
    color: var(--text-medium);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
}

/* ===== AGENDA CARDS ===== */
.agenda-card {
    display: flex;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.agenda-card:hover {
    box-shadow: var(--shadow-hover);
}

.agenda-image {
    width: 200px;
    min-height: 150px;
    flex-shrink: 0;
}

.agenda-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agenda-info {
    padding: 20px;
    flex: 1;
}

.agenda-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.agenda-meta {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agenda-meta li {
    color: var(--text-medium);
    font-size: 13px;
    margin-bottom: 5px;
}

.agenda-meta i {
    width: 20px;
    color: var(--accent);
}

/* ===== ALUMNI CAROUSEL ===== */
.alumni-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.alumni-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.alumni-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--accent);
}

.alumni-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-info h4 {
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.alumni-info span {
    color: var(--accent);
    font-size: 13px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 3px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
    width: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 0;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

/* ===== OWL CAROUSEL OVERRIDES ===== */
.owl-carousel .owl-dots {
    margin-top: 20px !important;
}

.owl-carousel .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    transition: var(--transition) !important;
}

.owl-carousel .owl-dot.active span {
    background: var(--accent) !important;
    width: 25px !important;
    border-radius: 5px !important;
}

/* Owl for hero nav */
.hero-section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3) !important;
    color: var(--bg-white) !important;
    font-size: 20px !important;
    border-radius: 0 !important;
    transition: var(--transition) !important;
}

.hero-section .owl-nav button:hover {
    background: var(--accent) !important;
    color: var(--primary) !important;
}

.hero-section .owl-prev {
    left: 20px;
}

.hero-section .owl-next {
    right: 20px;
}

/* ===== SECTION PAGES INTERNAL ===== */
.page-banner {
    background: var(--primary);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
}

.page-banner h1 {
    color: var(--bg-white);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.page-banner p {
    color: var(--accent);
    font-size: 14px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: var(--accent);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== CONTENT BLOCK ===== */
.content-block {
    line-height: 1.8;
    color: var(--text-medium);
}

.content-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.content-block h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.content-block p {
    margin-bottom: 15px;
}

.content-block ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.content-block ul li {
    margin-bottom: 8px;
}

/* ===== FILTER BUTTONS ===== */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 25px;
    border: 2px solid var(--border);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-filter:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-filter.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.btn-filter i {
    font-size: 14px;
}

/* ===== TEAM CARD ===== */
.team-card {
    background: var(--bg-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.team-card.small {
    border: 1px solid var(--border);
    box-shadow: none;
    padding: 20px;
}

.team-card.small:hover {
    border-color: var(--accent);
}

.team-photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 15px;
}

.team-card.small .team-photo {
    display: none;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 0 15px 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-position {
    display: inline-block;
    background: var(--secondary);
    color: var(--text-medium);
    padding: 3px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* ===== FACILITY CARD ===== */
.facility-card {
    background: var(--bg-white);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.facility-card:hover {
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--accent);
    transform: translateY(-3px);
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--accent);
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    background: var(--accent);
    color: var(--primary);
}

/* ===== GALLERY CARD ===== */
.gallery-category-card {
    background: var(--bg-white);
    padding: 40px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.gallery-card-link:hover .gallery-category-card {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.gallery-card-link {
    text-decoration: none;
    color: inherit;
}

.gallery-category-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 15px;
}

.gallery-category-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

/* ===== GALLERY ITEM ===== */
.gallery-item-card {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 100%;
}

.gallery-item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay a {
    color: var(--bg-white);
    font-size: 30px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-overlay a:hover {
    background: var(--accent);
    color: var(--primary);
}
