/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   ROOT VARIABLES
========================= */
:root {
  --main-font: "Bahnschrift", sans-serif;
  --secondary-font: "Poppins", sans-serif;
  --wafol-font: "Fredoka", sans-serif;
  --skoop-font: ;

  --invictus-theme: #d1a82f;
  --calle-co-theme: #24623d;
  --waffol-theme: #ffaf2e;
  --waffol-secondary: #512e21;
  --skoop-station-theme: #a4c250;
  --skoop-secondary: #f6f9ee;

  --black: #020202;
  --white: #ffffff;

  --header-font: 27px;
  --content-font: 18px;
  --sub-content-font: 16px;
}
/* =========================
   Background Colors
========================= */
.calle-co-bg{
    background-color: var(--calle-co-theme);
}
.wafol-bg{
    background-color: var(--waffol-theme);
}
.skoop-station-bg{
    background-color: var(--skoop-station-theme);
}

.highlight{
    color: var(--invictus-theme);
    font-size: clamp(16px, 4vw, 24px);
    font-weight: bolder;
}

/* =========================
   BASE STYLES
========================= */
body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--main-font);
  min-width: 320px;
  background: var(--white);
}

.poppins-regular {
  font-family: var(--secondary-font);
  font-weight: 300;
}

/* =========================
   BRANDING
========================= */
.logo-group {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.title-container {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 30px 0;
}

.title-text {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.img-border-rad{
    border-radius: 12px;
}
.subtitle-text {
  font-size: 16px;
  font-family: var(--secondary-font);
}

.font-white { color: var(--white); }
.font-black { color: var(--black); }

/* =========================
   BUTTONS
========================= */
.main-button,
.secondary-button,
.franchise-button,
.white-button {
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.main-button {
  background-color: var(--invictus-theme);
  color: var(--white);
}

.main-button:hover {
  background-color: var(--black);
  border: 1px solid var(--invictus-theme);
  transform: translateY(-2px);
}

.white-button {
  background-color: var(--white);
  color: var(--black);
}

.white-button:hover {
  background-color: var(--black);
  color: var(--invictus-theme);
}

.secondary-button {
  background-color: #babdbf;
  color: var(--black);
}

.secondary-button:hover {
  background-color: var(--white);
}

.franchise-button {
  background-color: var(--invictus-theme);
  color: var(--white);
  border-radius: 30px;
}

/* =========================
   NAVIGATION BAR
========================= */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 4% 5%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo-group {
  flex-shrink: 0;
}

.logo {
  height: 60px;
  width: 80%;
  object-fit: contain;
  transition: height 0.3s ease;
}

.menu h1 {
  font-size: 32px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 0 auto;
}

.menu a {
  text-decoration: none;
  color: var(--black);
  padding: 8px 12px;
  text-transform: uppercase;
  position: relative;
  font-weight: 500;
  white-space: nowrap;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--invictus-theme);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.button-highlight-wrapper {
  flex-shrink: 0;
}

.franchise-button {
  background: var(--invictus-theme);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.franchise-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.franchise-button a {
  color: var(--white);
  text-decoration: none;
  padding: 0;
}

.franchise-button a::after {
  display: none;
}

/* =========================
   DROPDOWN
========================= */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-top: 8px;
}

.dropdown-content a {
  padding: 12px 20px;
  display: block;
}

.dropdown-content a:hover {
  background: var(--invictus-theme);
  color: var(--white);
}

.dropdown.active .dropdown-content {
  display: block;
}

/* =========================
   MOBILE MENU BUTTON
========================= */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--black);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================
   RESPONSIVE - TABLET
========================= */
@media (max-width: 1200px) {
  .nav-links {
    gap: 24px;
  }
  
  .logo {
    height: 55px;
  }
}

@media (max-width: 1024px) {
  .menu {
    padding: 0 4%;
  }

  .nav-links {
    gap: 20px;
  }
  
  .logo {
    height: 50px;
  }
  
  .menu a {
    font-size: 14px;
    padding: 6px 8px;
  }
  
  .franchise-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 16px;
  }
  
  .menu a {
    font-size: 13px;
  }
}

/* =========================
   RESPONSIVE - MOBILE
========================= */
@media (max-width: 768px) {
  .menu {
    padding: 0 5%;
    height: 70px;
  }

  .logo {
    height: 45px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    gap: 15px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    margin: 0;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    color: var(--invictus-theme);
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
  }

  .dropdown-content {
    position: static;
    background: rgba(255,255,255,0.1);
    box-shadow: none;
    margin-top: 0;
  }

  .dropdown-content a {
    padding: 12px;
    font-size: 14px;
  }

  .menu a:hover::after {
    width: 50%;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 40px;
  }
  
  .menu {
    height: 65px;
  }
}

@media (max-width: 360px) {
  .logo {
    height: 35px;
  }
}

/* =========================
   HERO / HEADER
========================= */


.header-title {
  position: absolute;
  top: 30%;
  width: 100%;
  text-align: center;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: 4px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   FOOTER
========================= */
footer {
  background: var(--black);
  color: #fdfcf9;
  padding: 50px 5% 30px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-section h2,
.footer-section h3 {
  margin-bottom: 20px;
}

/* Social Links Container */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.social-links svg {
  width: 32px;
  height: 32px;
  fill: #fdfcf9;
  transition: fill 0.3s ease;
}

.social-links a:hover svg {
  fill: var(--invictus-theme);
}

.link1 a,
.link2 a,
.link3 a {
  color: #fdfcf9;
  text-decoration: none;
  display: block;
  padding: 6px 0;
  transition: 0.3s;
}

.link1 a:hover,
.link2 a:hover,
.link3 a:hover {
  color: var(--invictus-theme);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(253, 252, 249, 0.2);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 0.9rem;
}

/* =========================
   FOOTER MOBILE
========================= */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .social-links {
    justify-content: flex-start;
  }
  
  .social-links svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 40px 5% 25px;
  }
  
  .social-links svg {
    width: 26px;
    height: 26px;
  }
}