
/* =========================================
   ANNOUNCEMENT BAR
========================================= */

.announcement-bar {
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  background: #080808;
  color: var(--color-white);

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.announcement-bar a {
  color: var(--color-gold);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.announcement-bar a:hover {
  opacity: 0.75;
}
/* =========================================
   NAVIGATION
========================================= */

.top-nav {
 position: relative;
  z-index: 1000;

  min-height: 50px;
  padding: 18px 5%;

  display: flex;
  align-items: center;
  gap: 35px;

  background: linear-gradient(
    90deg,
    #c90000,
    var(--color-red),
    #c90000
  );
    border-bottom: 1px solid rgba(214, 170, 24, 0.55);

}

.nav-links {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 38px;
  transition:
 
}

.top-nav .nav-links a {
  position: relative;

  padding: 10px 0;

  background: transparent;

  color: white;
  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  border-radius: 0;

  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.top-nav .nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--color-gold);

  transition: width 0.3s ease;
}

.top-nav .nav-links a:hover,
.top-nav .nav-links a.active {
  color: var(--color-gold);
}

.top-nav .nav-links a:hover::after,
.top-nav .nav-links a.active::after {
  width: 100%;
}

/* SOCIALS */

.nav-socials {
  display: flex;
  align-items: center;
  gap: 18px;

  padding-right: 25px;

  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-socials a {
  color: white;
  font-size: 20px;
  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-socials a:hover {
  color: var(--color-gold);
  transform: translateY(-2px);
}

.nav-logo {
  flex-shrink: 0;

  display: flex;
  align-items: center;

  text-decoration: none;
}

.nav-logo img {
  width: 105px;
  height: auto;
  display: block;
}

.nav-logo:hover img {
  transform: scale(1.06);
}

/* Bara menyknapparna */
.nav-links a {
  position: relative;

  color: white;
  text-decoration: none;
  font-weight: 600;

  /* Ingen rektangel */
  background: transparent;
  border-radius: 0;

  padding: 10px 4px;
  margin: 0 14px;

  display: inline-block;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}


/* Strecket under länken */
.nav-links a::after {
  content: "";
  position: absolute;

  left: 4px;
  right: 4px;
  bottom: 2px;

  height: 2px;

  background: var(--color-gold);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.3s ease;
}


/* När musen ligger över länken */
.nav-links a:hover {
  background: transparent;

  color: white;

  /* Behåller den lilla rörelsen */
  transform: translateY(-3px);

  box-shadow: none;
}


/* Strecket växer fram */
.nav-links a:hover::after {
  transform: scaleX(1);
}


/* =========================================
   HERO HEADER
========================================= */

.hero-header {
  position: relative;
  min-height: 430px;
  background: #111;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
  padding: 20px 70px;
  overflow: hidden;
}

.hero-text-box {
  width: 42%;
  max-width: 620px;
  padding: 30px;

  background: rgba(18, 18, 18, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 2px solid #e00000;
  border-radius: 28px;

  box-shadow:
    0 0 35px rgba(224, 0, 0, 0.32),
    0 25px 70px rgba(0, 0, 0, 0.45);

  color: white;

  opacity: 0;
  transform: translateX(-45px);
  animation: fadeInLeft 1.2s ease forwards 0.4s;
}

.hero-text-box p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #f1f1f1;
  margin: 0;
  text-align: left;
}

.hero-text-box strong {
  color: white;
  font-weight: 800;
}

.hero-text-box span {
  color: #e00000;
  font-weight: 800;
}

.hero-signature {
  width: 170px;
  margin-top: 25px;
  mix-blend-mode: screen;

  opacity: 0;
  animation: fadeIn 1s ease forwards 1.1s;
}

.hero-text-box h2 {
  font-size: 30px;
  line-height: 1;
  margin: 15px 0 5px;

  color: white;
  font-family: Georgia, serif;
  text-align: left;

  opacity: 0;
  animation: fadeIn 1s ease forwards 1.4s;
}

.founder {
  font-size: 24px !important;
  color: #bfbfbf !important;
  line-height: 1.2 !important;

  opacity: 0;
  animation: fadeIn 1s ease forwards 1.6s;
}

.hero-right {
  width: 58%;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  margin-right: 20px;

  opacity: 0;
  transform: translateX(35px);
  animation: fadeInRight 1.2s ease forwards;
}

.hero-header .logo {
  position: static !important;
  width: 300px !important;
  max-width: 300px !important;
  flex-shrink: 0;
}

.logo {
  animation: slideIn 2s ease-out forwards;
}

.hero-right .header-text {
  width: 500px;
  margin-left: 30px;
}

.header-text {
  text-align: right;
}

.header-text h1 {
  font-family: "Broadway", serif;
  color: #ffffff;
  margin: 0;
  font-size: 70px;
  white-space: nowrap;
}

.header-text p {
  font-family: "Candara", sans-serif;
  color: #b7b7b7;
  margin: 0;
  margin-top: -30px;
  font-size: 40px;
}


/* =========================================
   FOOTER
========================================= */

footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 15px;
}


