﻿:root {
    --logo-black: rgb(100 95 100); --dark-black:rgb(59 57 59); --primary-black:#20282d; --dark-red:hsl(356.79deg 75.1% 48.82%); --yellow:rgb(244 137 36); --light-red:rgb(223 69 57); --linear-gradient:linear-gradient(135deg,hsl(356.79deg 75.1% 48.82%),rgb(244, 137, 36));
    --color-primary: #20282D;
    --color-secondary: #1F1F25;
    --color-blue: #0b4df5;
    --color-sky: #82b440;
    --color-body: #5D666F;
    --color-heading-1: #1C2539;
    --color-title: #141416;
    --color-heading-dark: #141416;
    --transition: .3s;
    --bg-dark-1: #1E1E20;
    --color-white: #fff;
    --color-border: #DDD8F9;
    --border-width: 1px;
    --radius: 10px;
    --color-success: #3EB75E;
    --color-danger: #FF0003;
    --color-warning: #FF8F3C;
    --color-info: #1BA2DB;
    --color-facebook: #3B5997;
    --color-twitter: #1BA1F2;
    --color-youtube: #ED4141;
    --color-linkedin: #0077B5;
    --color-pinterest: #E60022;
    --color-instagram: #C231A1;
    --color-vimeo: #00ADEF;
    --color-twitch: #6441A3;
    --color-discord: #7289da;
    --p-light: 300;
    --p-regular: 400;
    --p-medium: 500;
    --p-semi-bold: 600;
    --p-bold: 700;
    --p-extra-bold: 800;
    --p-black: 900;
    --s-light: 300;
    --s-regular: 400;
    --s-medium: 500;
    --s-semi-bold: 600;
    --s-bold: 700;
    --s-extra-bold: 800;
    --s-black: 900;
    --transition: 0.3s;
    --font-primary: "Aeonik", sans-serif;
    --font-medium: "6500595b785e358dcc2a2f3a_AeonikMedium", sans-serif;
    --font-secondary: "Aeonik", sans-serif;
    --font-3: "fontawesome";
    --font-size-b1: 16px;
    --font-size-b2: 15px;
    --font-size-b3: 22px;
    --line-height-b1: 26px;
    --line-height-b2: 26px;
    --line-height-b3: 1.7;
    --h1: 60px;
    --h2: 48px;
    --h3: 30px;
    --h4: 26px;
    --h5: 24px;
    --h6: 18px;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    font-size: 10px;
    overflow: hidden;
    overflow-y: auto;
    scroll-behavior: auto !important;
}

body {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Aeonik", sans-serif;
    color: var(--color-body);
    font-weight: var(--p-regular);
    position: relative;
    /* overflow-x: hidden; */
    margin: 0;
    background: #fff;
}
/* GALLERY */
.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Zoom */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Lightbox Overlay */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 34px;
    color: #fff;
    cursor: pointer;
}

.about-inner-content-two {
    padding-left: 20px;
    padding-top: 120px;
}
.gallery-tab-wrapper {
    display: flex;
    justify-content: center;
}

.gallery-tabs {
    display: inline-flex;        /* 🔥 key */
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-top: 80px;

    width: auto;                 /* 🔥 remove fixed width */
    margin: 0 auto;              /* 🔥 hard-center safeguard */
}

.gallery-tab {
    padding: 12px 30px;
    border-radius: 30px;
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-tab.active,
.gallery-tab:hover {
    background: var(--linear-gradient);
    color: #fff;
    border-color: transparent;
}

/* CONTENT SWITCH */
.gallery-content {
    display: none;
}

.gallery-content.active {
    display: block;
}

/* Video Styling */
.gallery-item video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
}
/* GALLERY TABS - COMPACT */
.gallery-tabs {
    display: flex;
    justify-content: center;
    padding-top: 80px;
    width: 500px;
    gap: 12px;
}

.gallery-tab {
    padding: 15px 18px;   /* 🔥 reduced padding */
    min-width: 90px;     /* 🔥 fixed small width */
    border-radius: 15px;
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-size: 20px;     /* 🔥 smaller text */
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Active / Hover */
.gallery-tab.active,
.gallery-tab:hover {
    background: var(--linear-gradient);
    color: #fff;
    border-color: transparent;
}


/* ACTIVE / CTA ITEM */
.header-float .ft-item.highlight {
    background: #e63946;
    color: #ffffff;
    border-color: #e63946;
}

/* SIMPLE HOVER FEEDBACK (NO EXPAND) */
.header-float .ft-item:hover {
    background: #f2f2f2;
}

/* MOBILE DISABLE */
@media (max-width: 991px) {
    .header-float {
        display: none;
    }
}
