* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #000;
  color: white;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg.png') center center/cover no-repeat;
  transform: scale(1.03);
  animation: slowZoom 12s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  animation: fadeUp 1.2s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.1) 100%),
    radial-gradient(circle at left bottom, rgba(255,0,0,0.15), transparent 30%);
  z-index: 1;
}

.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 70px;
}

.logo-area {
  display: flex;
  flex-direction: column;
  color: #ff1010;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.logo-mark {
  font-size: 54px;
  line-height: 1;
}

.logo-text {
  font-size: 54px;
  line-height: 0.8;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
.logo-image {
  height: 80px;
  width: auto;
  display: block;

}
nav {
  display: flex;
  gap: 60px;
}

nav a,
.lang-switch {
  color: #fff;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  font-size: 1.5rem;
  position: relative;
  transition: 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff0000;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #ff3b3b;
}

nav a:hover::after {
  width: 100%;
}

.lang-switch {
  display: flex;
  gap: 12px;
}

.lang-switch .active {
  color: #ff2d2d;
}

.hero {
  position: relative;
  z-index: 5;
  height: 90vh;
  display: flex;
  align-items: center;
  padding-left: 17%;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  animation: fadeUp 1.2s ease;
}
.about-section {
    position: relative;
    min-height: 100vh;
    background: url('../images/about-bg.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 40px 8%;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(1px);
}

.about-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-text {
    max-width: 700px;
    margin-bottom: 20px;
    animation: fadeUp 1s ease;
    text-align: center;
}

.about-subtitle {
    color: #ff0000;
    letter-spacing: 4px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 30px;
    color: white;
    font-weight: 900;
}

.about-text h2 span {
    color: #ff0000;
}

.about-text p {
    color: #ddd;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
}

/* TIMELINE */

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
}

.timeline-item {
    position: relative;
    padding-top: 25px;
    transition: 0.4s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: red;
}

.timeline-item:hover {
    transform: translateY(-10px);
}

.timeline-item h3 {
    color: white;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 900;
}

.timeline-item p {
    color: #ccc;
    line-height: 1.6;
}

.timeline-item2 {
    position: relative;
    padding-top: 25px;
    transition: 0.4s ease;
}

.timeline-item2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: red;
}

.timeline-item2:hover {
    transform: translateY(-10px);
}

.timeline-item2 h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 900;
    text-align:center;
}

.timeline-item2 p {
    color: #ccc;
    line-height: 1.6;
}

/* SMOOTH SCROLL */

html {
    scroll-behavior: smooth;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .about-text h2 {
        font-size: 48px;
    }

    .about-text p {
        font-size: 18px;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

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

    .about-text h2 {
        font-size: 38px;
    }
}
.subheading {
  color: #ff1f1f;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 8px;
  font-size: 1.4rem;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 15px 0 30px;
  font-weight: 700;
}

.hero h1 span {
  display: block;
  color: #ff1010;
  text-shadow: 0 0 30px rgba(255,0,0,0.4);
}

.hero p {
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 45px;
  color: rgba(255,255,255,0.92);
}

.buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  overflow: hidden;
  padding: 20px 38px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(5px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #ff0000, #b30000);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.btn-primary::before {
  background: linear-gradient(135deg, #ff4d4d, #ff0000);
}

.btn-secondary {
  background: rgba(0,0,0,0.35);
}

.btn-secondary::before {
  background: rgba(255,255,255,0.12);
}

.btn:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 35px rgba(0,0,0,0.45);
  border-color: rgba(255,255,255,0.5);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:active {
  transform: scale(0.98);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.08);
  }
}

@media (max-width: 1200px) {
  .hero {
    padding: 0 8%;
  }

  nav {
    gap: 22px;
  }
}

@media (max-width: 900px) {
  body {
    overflow-y: auto;
  }

  .navbar {
    flex-direction: column;
    gap: 25px;
    padding: 30px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    align-items: flex-start;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .hero h1 {
    font-size: 4rem;
  }
}

/* SUPPORT SECTION */

.support-section {
  position: relative;
  min-height: 10vh;
  background: url('../images/support-bg.png') center center/cover no-repeat;
  padding: 20px 7%;
  overflow: hidden;
}

.support-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.support-content {
  position: relative;
  z-index: 2;
}

.support-header {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 80px;
  align-items: flex-start;
}

.support-text {
  max-width: 700px;
}

.support-subtitle {
  color: #ff0000;
  letter-spacing: 4px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
}

.support-text h2 {
  font-size: 90px;
  line-height: 0.9;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 30px;
}

.support-text h2 span {
  color: #ff0000;
}

.support-text p {
  font-size: 24px;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 20px;
}

.support-categories {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.support-category {
  text-align: center;
  transition: 0.4s ease;
  cursor: pointer;
}

.support-category span {
  font-size: 42px;
  display: block;
  margin-bottom: 15px;
}

.support-category h3 {
  font-size: 20px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

.support-category:hover {
  transform: translateY(-10px);
  color: #ff0000;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.support-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.support-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: 0.45;
  transition: 0.5s ease;
}

.support-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 35px;
  z-index: 2;
}

.support-card h3 {
  font-size: 42px;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 15px;
}

.support-card p {
  color: #ddd;
  line-height: 1.7;
}

.support-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,0,0,0.5);
}

.support-card:hover img {
  transform: scale(1.08);
  opacity: 0.65;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .support-header {
    flex-direction: column;
  }

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

  .support-text h2 {
    font-size: 60px;
  }
}

@media (max-width: 700px) {

  .support-text h2 {
    font-size: 44px;
  }

  .support-text p {
    font-size: 18px;
  }

  .support-categories {
    justify-content: center;
  }
}

/* CONTACT SECTION */

.contact-section {
  position: relative;
  min-height: 70vh;
  background: url('../images/contact-bg.png') center center/cover no-repeat;
  padding: 120px 6%;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

.contact-content {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-logo img {
  width: 220px;
  margin-bottom: 30px;
}

.contact-logo h2 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 10px;
  font-size: 42px;
  margin-bottom: 40px;
}

.contact-logo p {
  color: #888;
  font-size: 18px;
}

.contact-column {
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.contact-column h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.contact-item span {
  font-size: 14px;
  color: #ff0000;
  min-width: 40px;
}

.contact-item p {
  color: #ddd;
  line-height: 1.8;
  font-size: 14px;
}

/* HOVER */

.contact-column {
  transition: 0.4s ease;
}

.contact-column:hover {
  transform: translateY(-8px);
}

.contact-column:hover h3 {
  color: #ff0000;
}

/* RESPONSIVE */

@media (max-width: 1400px) {

  .contact-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-column {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 40px;
  }

  .contact-logo {
    text-align: center;
  }

  .contact-logo img {
    margin: 0 auto 30px;
  }
}

@media (max-width: 600px) {

  .contact-column h3 {
    font-size: 28px;
  }

  .contact-item p {
    font-size: 18px;
  }
}

.lang-btn {
  cursor: pointer;
  transition: 0.3s ease;
}

.lang-btn:hover {
  color: #ff0000;
}

.lang-btn.active {
  color: #ff0000;
}

/* =========================
   PRODUCTS SECTION
========================= */

.products-section {
    position: relative;
    min-height: 100vh;
    padding: 20px 5%;
    background:
        linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.88)),
        url('../images/produkty-bg.png') center center/cover no-repeat;
    overflow: hidden;
}

.products-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.45) 45%,
        rgba(0,0,0,0.75) 100%);
}

.products-content {
    position: relative;
    z-index: 2;
}

.products-header {
    text-align: center;
    margin-bottom: 20px;
}

.products-header h2 {
    font-size: 110px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 700;
}

.products-header p {
    color: #ff0000;
    letter-spacing: 10px;
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    text-decoration: none;
    transform: skewX(-8deg);
    transition: 0.45s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.product-card img {
    width: 80%;
    height: 60%;
    object-fit: cover;
    transform: skewX(8deg) scale(1.1);
    transition: 0.6s ease;
    filter: brightness(0.9);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.95),
            rgba(0,0,0,0.15)
        );
    z-index: 2;
}

.product-info {
    position: absolute;
    bottom: 100px;
    left: 40px;
    z-index: 5;
    transform: skewX(8deg);
}

.product-info h3 {
    font-size: 36px;
    font-family: 'Oswald', sans-serif;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.product-info::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: red;
}

.product-card:hover {
    transform: skewX(-8deg) translateY(-15px);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.55),
        0 0 35px rgba(255,0,0,0.15);
}

.product-card:hover img {
    transform: skewX(8deg) scale(1.16);
    filter: brightness(0.85);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        height: 620px;
    }
}

@media (max-width: 900px) {

    .products-header h2 {
        font-size: 72px;
    }

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

    .product-card {
        height: 520px;
        transform: none;
    }

    .product-card img {
        transform: scale(1.05);
    }

    .product-info {
        transform: none;
    }

    .product-info h3 {
        font-size: 42px;
    }
}

/* =========================
   FIXED NAVBAR
========================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 24px 60px;

    background: rgba(0,0,0,0.45);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.05);

    transition: 0.35s ease;
}

/* MENŠÍ MENU PŘI SCROLLU */

.navbar.scrolled {

    padding: 16px 60px;

    background: rgba(0,0,0,0.88);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.45);
}

/* =========================
   HERO FIX
========================= */

.hero {

    padding-top: 120px;
}

/* =========================
   HAMBURGER
========================= */

.hamburger {

    display: none;

    flex-direction: column;

    gap: 7px;

    cursor: pointer;

    z-index: 10001;
}

.hamburger span {

    width: 34px;

    height: 3px;

    background: white;

    transition: 0.35s ease;
}

/* ANIMACE */

.hamburger.active span:nth-child(1) {

    transform:
        rotate(45deg)
        translateY(14px);
}

.hamburger.active span:nth-child(2) {

    opacity: 0;
}

.hamburger.active span:nth-child(3) {

    transform:
        rotate(-45deg)
        translateY(-14px);
}

/* =========================
   MOBILE MENU
========================= */

@media (max-width: 1000px) {

    .hamburger {

        display: flex;
    }

    nav {

        position: fixed;

        top: 0;
        right: -100%;

        width: 320px;

        height: 100vh;

        background: rgba(0,0,0,0.96);

        backdrop-filter: blur(20px);

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 35px;

        transition: 0.45s ease;

        z-index: 9998;
    }

    nav.active {

        right: 0;
    }

    nav a {

        font-size: 2rem;
    }

    .lang-switch {

        margin-top: 20px;

        font-size: 1.5rem;
    }
}

/* =========================
   RESPONSIVE HERO
========================= */

@media (max-width: 900px) {

    .hero {

        padding-left: 8%;
        padding-right: 8%;

        padding-top: 150px;
    }

    .hero-content {

        max-width: 100%;
    }

    .hero h1 {

        font-size: 4.5rem;
    }
}

/* =========================
   NEWS SECTION
========================= */

.news-section {

    position: relative;

    min-height: 60vh;

    padding: 80px 6%;

    background:
        linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.94)),
        url('../images/news-bg.jpg') center center/cover no-repeat;

    overflow: hidden;
}

.news-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top left,
        rgba(255,0,0,0.12),
        transparent 30%);
}

.news-content {

    position: relative;

    z-index: 2;
}

.news-header {

    margin-bottom: 20px;
}

.news-header span {

    color: red;

    letter-spacing: 5px;

    font-size: 35px;

    font-family: 'Oswald', sans-serif;
}

.news-header h2 {

    font-size: 110px;

    font-family: 'Oswald', sans-serif;

    margin-top: 10px;
}

.news-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    grid-template-rows: 1fr 0fr;

    gap: 30px;
}

/* =========================
   CARDS
========================= */

.news-card {

    position: relative;

    overflow: hidden;

    background: #111;

    min-height: 320px;

    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.45s ease;
}

.news-card.large {

    grid-row: span 2;

    min-height: 500px;
    max-height: 200px;
}

.news-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.6s ease;

    filter: brightness(0.55);
}

.news-card::before {

    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.95),
            rgba(0,0,0,0.2)
        );

    z-index: 2;
}

.news-info {

    position: absolute;

    bottom: 40px;

    left: 40px;

    z-index: 5;

    max-width: 80%;
}

.news-date {

    color: #ff0000;

    margin-bottom: 15px;

    font-size: 14px;

    letter-spacing: 2px;
}

.news-info h3 {

    font-size: 44px;

    font-family: 'Oswald', sans-serif;

    line-height: 1.1;

    margin-bottom: 20px;
}

.news-card:not(.large) .news-info h3 {

    font-size: 28px;
}

.news-info p {

    color: rgba(255,255,255,0.82);

    line-height: 1.8;

    margin-bottom: 30px;
}

.news-btn {

    display: inline-block;

    padding: 14px 30px;

    border: 1px solid rgba(255,255,255,0.2);

    color: white;

    text-decoration: none;

    transition: 0.35s ease;
}

.news-btn:hover {

    background: red;

    border-color: red;

    transform: translateY(-4px);
}

/* HOVER */

.news-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 25px 45px rgba(0,0,0,0.45),
        0 0 25px rgba(255,0,0,0.12);
}

.news-card:hover img {

    transform: scale(1.08);

    filter: brightness(0.82);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {

    .news-grid {

        grid-template-columns: 1fr 1fr;
    }

    .news-card.large {

        grid-column: span 2;
    }
}

@media (max-width: 800px) {

    .news-grid {

        grid-template-columns: 1fr;
    }

    .news-card.large {

        grid-column: span 1;
    }

    .news-header h2 {

        font-size: 72px;
    }

    .news-card.large {

        min-height: 550px;
    }

    .news-info h3 {

        font-size: 32px;
    }
}

/* =========================
   NEWS PAGE
========================= */

.news-page-hero {

    position: relative;

    height: 60vh;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.8)),
        url('../images/news-bg.jpg') center center/cover no-repeat;
}

.news-page-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.85) 0%,
            rgba(0,0,0,0.4) 50%,
            rgba(0,0,0,0.85) 100%
        );
}

.news-page-hero-content {

    position: relative;

    z-index: 2;

    text-align: center;
}

.news-page-hero-content span {

    color: #ff0000;

    font-family: 'Oswald', sans-serif;

    letter-spacing: 8px;

    font-size: 20px;
}

.news-page-hero-content h1 {

    font-size: 120px;

    font-family: 'Oswald', sans-serif;

    margin-top: 15px;
}

/* =========================
   ARTICLES
========================= */

.articles-section {

    padding: 120px 8%;

    background: #050505;
}

.article-full {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    margin-bottom: 140px;
}

.article-image {

    overflow: hidden;
}

.article-image img {

    width: 100%;

    height: 650px;

    object-fit: cover;

    transition: 0.6s ease;

    filter: brightness(0.75);
}

.article-full:hover img {

    transform: scale(1.05);

    filter: brightness(0.95);
}

.article-content {

    max-width: 700px;
}

.article-date {

    color: #ff0000;

    font-family: 'Oswald', sans-serif;

    letter-spacing: 3px;
}

.article-content h2 {

    font-size: 64px;

    line-height: 1.1;

    margin: 20px 0 35px;

    font-family: 'Oswald', sans-serif;
}

.article-content p {

    color: #ccc;

    line-height: 2;

    margin-bottom: 25px;

    font-size: 18px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

    .article-full {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .article-image img {

        height: 450px;
    }

    .article-content h2 {

        font-size: 48px;
    }
}

@media (max-width: 700px) {

    .news-page-hero-content h1 {

        font-size: 72px;
    }

    .article-content h2 {

        font-size: 38px;
    }
}

/* =========================
   SOCIALS
========================= */

.social-section {

    position: relative;

    min-height: 80vh;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 120px 8%;

    background:
        linear-gradient(rgba(0,0,0,.92), rgba(0,0,0,.95)),
        url('../images/social-bg.jpg')
        center center/cover no-repeat;
}

.social-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(255,0,0,.08),
            transparent 60%
        );
}

.social-content {

    position: relative;

    z-index: 2;

    max-width: 1400px;
}

.social-subtitle {

    color: #ff0000;

    letter-spacing: 8px;

    font-family: 'Oswald', sans-serif;

    display: block;

    margin-bottom: 25px;
}

.social-content h2 {

    font-size: 78px;

    margin-bottom: 25px;

    font-family: 'Oswald', sans-serif;
}

.social-content p {

    color: #ccc;

    font-size: 20px;

    margin-bottom: 70px;
}

.social-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

.social-card {

    text-decoration: none;

    color: white;

    padding: 60px 20px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    transition: .35s ease;

    backdrop-filter: blur(10px);
}

.social-card:hover {

    transform: translateY(-10px);

    border-color: rgba(255,0,0,.4);

    box-shadow:
        0 20px 40px rgba(0,0,0,.4),
        0 0 30px rgba(255,0,0,.15);
}

.social-card i {

    font-size: 70px;

    margin-bottom: 25px;

    color: #ff0000;
}

.social-card h3 {

    font-size: 28px;

    font-family: 'Oswald', sans-serif;
}

/* MOBILE */

@media (max-width: 1000px) {

    .social-grid {

        grid-template-columns: repeat(2,1fr);
    }

    .social-content h2 {

        font-size: 52px;
    }
}

@media (max-width: 700px) {

    .social-grid {

        grid-template-columns: 1fr;
    }

    .social-content h2 {

        font-size: 38px;
    }
}