@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;700&display=swap');

:root {
    --dark-blue: #10121a;
    --black: black;
    --accent: #d7ff40;
    --green: #78ff40;
    --gray: #1e1e1e;
    --white: white; 
}

* {
    color: white;
    font-family: Cairo, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--dark-blue);
    min-height: 100vh;
}

body.no-scroll {
    overflow: hidden;
}

/* COMPONENTS */
h1 {
    font-family: Algerian, serif;
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin-bottom: 0;
}

.about-h1 {
    text-align: center;
}

h2 {
    font-size: 2rem;
    line-height: 2rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin-bottom: 0;
}

.heading-span,
.logo {
    font-family: Algerian, serif;
}

p {
    font-size: 1rem;
    line-height: 1.4rem;
    text-align: justify;
}

a {
    text-decoration: none;
}

.subheading {
    color: var(--green);
    border-left: 1px solid var(--green);
    padding-left: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.main-button {
    padding: 15px 25px;
    border: 0px;
    border-radius: 10px;
    background-color: var(--accent);
    color: var(--black);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: 500ms ease;
}

.main-button:hover {
    box-shadow: 2px 2px 8px var(--green);
}

.secondary-button {
    padding: 15px 25px;
    border: 0px;
    border-radius: 10px;
    background-color: var(--gray);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: 500ms ease;
}

.secondary-button.active {
    background-color: var(--accent);
    color: var(--black);
    margin-top: -10px;
}

.secondary-button:hover {
    box-shadow: 2px 2px 8px var(--accent);
}

.big-number {
    font-size: 3.5rem;
    font-weight: bold;
}

.medium-number {
    font-size: 2.5rem;
    font-weight: bold;
}

.negative-margin {
    margin-top: -20px;
}

.small-margin {
    margin: 5px 0;
}

.plus {
    width: 15px;
    height: 15px;
}

.short-p {
    width: 60%;
}

.green-text {
    color: var(--green);
}

.red-text {
    color: red;
}

.black-mask {
    width: 100%;
    height: 100%;
    padding: 10vh 0;
    background-color: rgb(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.grid-2-col {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
}

.grid-2-col.bigger-left {
    grid-template-columns: 1.5fr 1fr;
}

.grid-2-col.big-left {
    grid-template-columns: 2fr 1fr;
}

.grid-3-col {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
}

.centered-col {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.left-col {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.right-col {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.right-col.bottom {
    align-items: end;
    justify-content: end;
    padding-bottom: 40px;
}

.inline-div {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.long-div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.space-between {
    width: 100%;
    justify-content: space-between;
}

/* LOADER */
.loader-bg {
    background-color: var(--black);
    z-index: 100000;
    position: fixed;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease;
}

.loader-bg.loaded {
    opacity: 0;
    pointer-events: none;
}

#loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #25b09b;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {to{transform: rotate(1turn)}}

/* NAVBAR */
.nav-contact {
    height: 4vh;
    background-color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 10px 40px;
    gap: 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

nav {
    position: relative;
    background-color: transparent;
    backdrop-filter: blur(100px);
    padding: 80px 5vw 20px 5vw;
    display: grid;
    grid-template-columns: 0.5fr 2fr 0.5fr;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

nav.hide {
    transform: translateY(-100%);
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar #iron-logo {
    display: flex;
    align-items: center;
    justify-content: start;
    grid-column: 1;
}

.navbar #ttt-logo {
    display: flex;
    align-items: center;
    justify-content: end;
    grid-column: 3;
    backdrop-filter: blur(1000000px);
}

.nav-img {
    border-radius: 10px;
    width: 180px;
}

.nav-img.ttt {
    width: 150px;
    padding: 2px;
}

.nav-links {
    grid-column: 2;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 500ms;
    border-bottom: 1px solid transparent;
}

.nav-links li a:hover {
    border-bottom: 1px solid var(--accent);
    color: var(--accent);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;     
    left: 0;    
    min-width: 120px;
    background: var(--black);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1002;
    padding: 0;
    margin: 0;
    list-style: none;
    border-radius: 0 0 10px 10px;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: var(--accent);
    color: var(--black);
}


/* HOMEPAGE */
.hero-section {
    background-image: url(Slike/s1-dark-overlay.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    height: 100vh;
    padding-top: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-image {
    width: 70%;
    border-radius: 10px;
}

.container {
    width: 90vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* WHY US SECTION */
.why-us-section {
    background-color: var(--black);
    width: 100%;
    padding: 5vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-div {
    padding: 10px;
    border-left: 1px solid var(--green);
    margin-bottom: 15px;
}

.why-us-img {
    width: 90%;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 1px 1px 20px var(--accent);
}

/* EVENTS SECTION */
.events-section {
    width: 100%;
    padding: 5vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-card {
    padding: 10px;
    border-radius: 10px;
    background-color: var(--black);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    flex-direction: column;
}

.event-card.card1 {
    transition: 1000ms ease;
    opacity: 0;
}

.event-card.card1.in-view {
    opacity: 1;
}

.event-card.card2 {
    transition: 1500ms ease;
    opacity: 0;
}

.event-card.card2.in-view {
    opacity: 1;
}

.event-card.card3 {
    transition: 2000ms ease;
    opacity: 0;
}

.event-card.card3.in-view {
    opacity: 1;
}

.event-img {
    width: 100%;
    height: 50vh;
    border-radius: 10px;
}

.arrow-icon {
    margin-left: -15px;
}

.event-link .arrow-icon {
    transition: transform 0.3s;
}

.event-link:hover .arrow-icon {
    transform: translateX(8px); 
}

/* CTA SECTION */
.cta {
    background-image: url(Slike/vladimir-1.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transition: 500ms ease-in;
    transform: scale(0.5);
}

.cta.in-view {
    transform: scale(1);
}

/* TRAINING SECTION */
.training-section {
    padding: 10vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-img {
    background-image: url(Slike/milorad-2.png);
    border-radius: 10px;
    width: 80%;
    height: 80%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* FOOTER */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    padding: 5vh 0;
    clear: both;
    margin-top: auto;
}

.footer-div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-link {
    margin-left: 5px;
    transition: 500ms;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-icon {
    width: 20px;
}

.legals {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ABOUT PAGE */
.about-page-hero {
    padding: 30vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page-img {
    width: 50%;
    height: 70vh;
    border-radius: 10px;
    margin-bottom: 15px;
}

.about-page-img.hero {
    height: 50vh;
}

.our-story-section {
    background-color: var(--black);
    padding: 5vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-story-card {
    background-color: var(--dark-blue);
    border-radius: 10px;
    border: 1px solid var(--green);
    padding: 10px;
    margin-top: 15px;
    display: flex;
    text-align: center;
    justify-content: space-between;
    flex-direction: column;
}

.our-story-card.card1 {
    transition: 500ms ease;
    transform: translateY(50px);
}

.our-story-card.card1.in-view {
    transform: translateY(0);
}

.our-story-card.card2 {
    transition: 750ms ease;
    transform: translateY(50px);
}

.our-story-card.card2.in-view {
    transform: translateY(0);
}

.our-story-card.card3 {
    transition: 1000ms ease;
    transform: translateY(50px);
}

.our-story-card.card3.in-view {
    transform: translateY(0);
}

.core-values-section {
    padding: 5vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-small-div {
    transition: 300ms ease-out;
    transform: translateX(50px);
}

.why-us-small-div.in-view {
    transform: translateX(0);
}

.gallery-section {
    height: 80vh;
    padding: 5vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider {
    width: 70%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/* .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
} */

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev { left: 0; }
.next { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
    opacity: 0.5;
    cursor: pointer;
    transition: background 0.3s, opacity 0.3s;
}

.slider-dot.active {
    background: var(--accent);
    opacity: 1;
}

.testimonial-section {
    background-color: var(--black);
    padding: 5vh 0 10vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--dark-blue);
    padding: 20px;
    margin-top: 15px;
    border: 1px solid var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    flex-direction: column;
}

.testimonial-card.card1 {
    transition: 500ms;
    transform: skew(20deg);
}

.testimonial-card.card1.in-view {
    transform: skew(0);
}

.testimonial-card.card2 {
    transition: 750ms;
    transform: skew(20deg);
}

.testimonial-card.card2.in-view {
    transform: skew(0);
}

.testimonial-card.card3 {
    transition: 1000ms;
    transform: skew(20deg);
}

.testimonial-card.card3.in-view {
    transform: skew(0);
}

/* EVENTS PAGE */
.events-page-section {
    padding: 30vh 0 10vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-wrapper {
    display: none;
}

.popup-wrapper.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.popup-container {
    position: relative;
    z-index: 10000;
    max-height: 80vh; 
    overflow-y: auto; 
    background: var(--dark-blue);
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: justify;
}

.popup-img {
    width: 90%;
    border-radius: 20px;
}

.close-modal {
    font-size: 1.5rem;
    background-color: transparent;
    border: 0;
    position: absolute;
    top: 10px; right: 20px;
    cursor: pointer;
}

/* GUNS PAGE */
.guns-section {
    height: auto;
    padding: 30vh 0 5vh 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 50px;
}

.buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.tab-wrapper {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.guns-grid {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    padding-bottom: 50px; 
}

.guns-grid.ron {
    grid-template-columns: 1fr 1fr;
}

.guns-grid.active {
    display: grid;
    align-items: center;
    justify-content: center;
}

.tab-wrapper img.p {
    width: 300px;
    height: 250px;
}

.tab-wrapper img.rev {
    width: 100%;
    height: 280px;
}

.tab-wrapper img.ron {
    width: 100%;
    height: 300px;
}

.tab-wrapper img.shot {
    width: 100%;
    height: 280px;
}

.tab-wrapper img.rep {
    width: 100%;
    height: 300px;
}

.tab-wrapper img.semi {
    width: 100%;
    height: 300px;
}

.tab-wrapper img.sni {
    width: 100%;
    height: 300px;
}

.tab-wrapper img.tar {
    width: 100%;
    height: 35vh;
}

.tab-wrapper img.sig {
    width: 100%;
    height: 40vh;
}


/* LIGTHBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#lightbox-img {
    max-width: 80%;
    max-height: 80%;
    width: 50vw;
    height: 70vh;
    object-fit: contain;
    transition: opacity 0.3s;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

.lightbox-nav {
    margin-top: 20px;
}

.lightbox-nav button {
    opacity: 1;
    transition: opacity 0.3s;
}

.lightbox-nav button.hidden {
    opacity: 0;
    pointer-events: none;
    cursor: default;
}

.prev-btn, .next-btn {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 5px;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

/* CONTACT PAGE */
.contact-page-section {
    padding: 25vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
}

input {
    background-color: transparent;
    border: 1px solid var(--green);
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 1rem;
}

textarea {
    background-color: transparent;
    border: 1px solid var(--green);
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 1rem;
}

.map {
    height: 80vh;
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
}

/* PRICING */
.pricing-section {
    padding: 40vh 5vw 5vh 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pricing-card {
    background-color: var(--black);
    border: 1px solid var(--green);
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px 20px;
}

.pricing-card h2 {
    text-align: center;
}

.pricing-card img {
    position: absolute;
    top: -50px;
    left: auto;
    right: auto;
}

.pricing-card ol,
.pricing-card ul {
    width: 90%;
}

/* RESPONZIVNOST */

@media (min-width: 1920px) {
    .main-button {
        font-size: 1.5rem;
        line-height: 1.7rem;
        padding: 30px 35px;
    }

    .secondary-button {
        font-size: 1.5rem;
        line-height: 1.7rem;
        padding: 30px 35px;
    }

    h1 {
        font-size: 3rem;
        line-height: 3rem;
    }

    h2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    h3 {
        font-size: 2rem;
        line-height: 2rem;
    }

    p {
        font-size: 1.5rem;
        line-height: 1.7rem;
    }

    .short-p {
        width: 80%;
    }

    div {
        font-size: 1.5rem;
        line-height: 1.7rem;
    }

    a {
        font-size: 1.5rem;
        line-height: 1.7rem;
    }

    input {
        font-size: 1.5rem;
        padding: 10px;
    }
    
    textarea {
        font-size: 1.5rem;
        padding: 10px;
    }

    .big-number {
        font-size: 5rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    .nav-img {
        width: 160px;
    }

    .hero-section {
        padding: 10vh;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    /* COMPONENTS */
    .main-button {
        font-size: 1.2rem;
        line-height: 1.5rem;
        padding: 20px 30px;
    }

    .secondary-button {
        font-size: 1.2rem;
        line-height: 1.5rem;
        padding: 20px 30px;
    }

    h1 {
        font-size: 2.7rem;
        line-height: 2.7rem;
    }

    h2 {
        font-size: 2.2rem;
        line-height: 2.2rem;
    }

    h3 {
        font-size: 1.7rem;
        line-height: 1.7rem;
    }

    p {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }

    .short-p {
        width: 80%;
    }

    div {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }

    a {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }

    input {
        font-size: 1.2rem;
    }

    textarea {
        font-size: 1.2rem;
    }

    .big-number {
        font-size: 4.2rem;
    }

    .logo {
        font-size: 2rem;
    }

    /* HOMEPAGE */
    .hero-section {
        padding: 0;
    }

    /* ABOUT PAGE */
    .about-page-img {
        width: 90%;
        margin-bottom: 25px;
    }

    /* CONTACT PAGE */
    .contact-page-section {
        padding: 15vh 0;
    }
}

@media (max-width: 768px) {
    /* COMPONENTS */
    .short-p {
        width: 80%;
    }

    .grid-2-col, 
    .grid-3-col {
        gap: 0;
        grid-template-columns: 1fr !important;
        justify-items: center;
    }

    .centered-col,
    .left-col,
    .right-col {
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .right-col.bottom {
        align-items: center;
    }

    .inline-div.centered {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .container {
        align-items: center;
        justify-content: center;
    }

    /* NAVBAR */
    .menu-toggle {
        display: block;
        grid-column: 2;
    }

    .nav-img {
        width: 120px;
    }

    .nav-img.ttt {
        width: 100px;
    }
    
    .nav-links {
        grid-column: 4;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
        flex-direction: column;
        background: var(--black);
        position: absolute;
        top: 180px;
        right: 0;
        width: 100vw;
        z-index: 1001;
        display: flex; 
        overflow-y: auto;
        gap: 0;
    }

    .nav-links.active {
        max-height: 100vh;
    }

    .nav-links li {
        width: 100%;      
    }

    .nav-links li a {
        display: block;         
        width: 100%;
        padding: 15px 15px;
    }

    .nav-links li a:hover {
        border: 0;
        color: white;
    }

    .dropdown {
        width: 100%;
        position: static;
    }

    .dropdown-menu {
        position: static;    
        min-width: 0;
        width: 100%;      
        box-shadow: none;
        border-radius: 0;
        background: var(--black);
        padding: 0;
        margin: 0;
        z-index: 1002;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    /* HOMEPAGE */
    .hero-section {
        background-position: 35% center;
        min-height: 100vh;
        height: auto;
        padding: 10vh 0 10vh 0;
    }

    .events-section {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .event-card {
        width: 80%;
        margin-bottom: 15px;
        gap: 15px;
    }
    
    .event-img {
        height: 40vh;
    }

    .training-img {
        width: 80vw;
        height: 50vh;
    }

    /* ABOUT PAGE */
    .about-page-hero {
        padding-top: 25vh;
        height: auto;
        min-height: 100vh;
    }

    .about-page-img {
        width: 100%;
    }

    .gallery-section {
        height: auto;
        padding: 0 0 10vh 0;
    }

    .slider {
        width: 100%;
    }

    /* EVENTS PAGE SECTION */
    .events-page-section {
        padding-top: 35vh;
    }

    .popup-container {
        max-width: 80%;
        align-items: center;
    }

    /* GUNS PAGE */
    .buttons-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .tab-wrapper {
        width: 90%;
    }

    .guns-grid,
    .guns-grid.ron,
    .guns-grid.shot,
    .guns-grid.semi,
    .guns-grid.rep,
    .guns-grid.sni,
    .guns-grid.sig {
        grid-template-columns: 1fr;
    }

    .tab-wrapper img.p {
        width: 100%;
        height: 300px;
    }

    .tab-wrapper img.rev {
        width: 100%;
        height: 280px;
    }

    .tab-wrapper img.ron {
        width: 100%;
        height: 250px;
    }

    .tab-wrapper img.shot {
        width: 100%;
        height: 280px;
    }

    .tab-wrapper img.rep {
        width: 100%;
        height: 300px;
    }

    .tab-wrapper img.semi {
        width: 100%;
        height: 300px;
    }

    .tab-wrapper img.sni {
        width: 100%;
        height: 300px;
    }

    .tab-wrapper img.tar {
        width: 100%;
        height: 35vh;
    }

    .tab-wrapper img.sig {
        width: 100%;
        height: 40vh;
    }

    .lightbox-content {
        width: 90%;
    }

    #lightbox-img {
        min-width: 90%;
        max-width: 100%;
    }

    /* CONTACT PAGE */
    .contact-page-section {
        padding: 20vh 0 5vh;
    }

    form {
        width: 80vw;
    }

    .map {
        width: 90vw;
        height: 70vh;
    }

    /* FOOTER */
    #footer {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    /* PRICING */
    .pricing-card {
        margin: 30px 0;
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    /* COMPONENTS */
    .grid-2-col {
        grid-template-columns: 1fr !important;
    }

    .why-us-img {
        width: 50%;
    }

    .grid-3-col {
        grid-template-columns: repeat(2, 1fr) !important; 
    }

    .centered-col {
        flex-direction: row;
    }

    .centered-col.footer-col {
        flex-direction: column !important;
    }

    #navbar {
        padding: 0;
    }
    
    .hero-section {
        padding: 30vh;
    }

    .footer-link {
        display: flex;
        text-align: center;
    }

    .short-p {
        width: 90%;
    }

    .tab-wrapper img {
        height: 80vh;
    }
}

@media (max-width: 480px) {
    .events-section {
        padding: 5vh 0;
    }

    .why-us-section {
        padding: 5vh 0;
    }

    .training-section {
        padding: 5vh 0;
    }

    .training-section {
        padding: 5vh 0;
    }

    .event-card {
        width: 90%;
    }

    .short-p {
        width: 90%;
    }

    .buttons-wrapper {
        padding: 0 30px;
    }

    .tab-wrapper img.shot {
        width: 100%;
        height: 160px;
    }

    .tab-wrapper img.rep {
        width: 100%;
        height: 160px;
    }

    .tab-wrapper img.semi {
        width: 100%;
        height: 200px;
    }

    .tab-wrapper img.sni {
        width: 100%;
        height: 160px;
    }

    .pricing-card {
        width: 90%;
    }

    .navbar {
        padding-top: 20vh;
    }

    .nav-contact {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }
}