/* === GLOBAL === */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000 url('../images/Raptor 700-10.jpg') center/cover fixed no-repeat;
  color: #eee;
  display: flex;
  flex-direction: column;
  height: 100%;
}

img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#main-content {
  flex: 1;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

/* === CONTAINER FIX === */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === MOBILE RESPONSIVE FIXES === */
@media (max-width: 600px) {
  .container {
    padding: 1rem 1.2rem;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item img {
    width: 100%;
    max-width: 300px;
  }
}

/* === HERO SECTION === */
.hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 30px; /* adds breathing room */
  animation: fadeInHero 1.5s ease forwards;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  animation: fadeInVideo 2s ease forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  animation: fadeInContent 2.5s ease forwards;
  animation-delay: 1s;
}

.hero-text-box {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 15px 20px;
  border-radius: 10px;
  max-width: 80%;
}

.hero-text-box h2 {
  color: #eee;
  font-size: 2rem;
  margin: 0;
}

/* === HERO Animations === */
@keyframes fadeInVideo {
  to {
    opacity: 1;
  }
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInContent {
  to {
    opacity: 1;
  }
}

/* === CONTAINERS === */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === HEADER === */
header {
  background: #000;
  border-bottom: 2px solid #333;
}

/* === TOP BAR (Socials) === */
.top-bar {
  background: #000;
  padding: 5px 0;
}

.top-bar-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.social-icons img:hover {
  filter: brightness(0) invert(0.7);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-link {
  background: #e6b800;
  color: #000;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cart-link:hover {
  background: #ffcc00;
}
/* === NAVBAR === */
.main-navbar {
  padding: 5px 0 20px 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 40px;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e6b800;
  text-shadow: 0 0 4px #e6b800;
}

/* Divider Lines */
.nav-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #555;
}

/* === LOGO === */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  margin-top: 5px;
}

.logo-section img, .logo {
  height: 60px;
  width: auto;
  max-width: 100%;
}

.tagline {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 5px;
    text-align: center;
    font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* === PAGE SECTIONS === */
.section, .section2 {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 30px auto;
}

.section2 {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.grid {
  column-count: 2;
  column-gap: 20px;
}

.grid img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  display: block;
  break-inside: avoid;
}

/* === CALL TO ACTION === */
.cta {
  text-align: center;
  margin: 30px auto 30px; /* adds space below the button */
}

.cta a {
  background: #e91e63;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
}

/* === FOOTER === */
footer {
  background: #000;
  color: #999;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}

footer a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

footer a:hover {
  color: #e6b800;
  text-shadow: 0 0 5px #e6b800;
}

/* === PAGE TRANSITIONS === */
#main-content {
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.fade-out {
  opacity: 0;
  transform: translateX(-100px);
}

.fade-in {
  opacity: 1;
  transform: translateX(0);
}

/* === RESPONSIVE (Mobile) === */
@media (max-width: 768px) {
  body {
    font-size: 90%;
  }

  .container {
    padding: 0 15px;
  }

  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    height: auto;
  }

  .logo-section {
    align-items: center;
    text-align: center;
  }

  .tagline {
    font-size: 0.8rem;
    margin-top: 5px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 999;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a::after {
    display: none;
  }

  .top-bar-container {
    justify-content: flex-end;
    padding-bottom: 5px;
  }

  .social-icons img {
    width: 18px;
    height: 18px;
  }

  .hero {
    height: 200px;
    margin-top: 10px;
  }

  .hero h2 {
    font-size: 1.5rem;
    padding: 8px 15px;
  }

  .grid {
    column-count: 1;
  }

  .section, .section2 {
    padding: 20px 15px;
  }

  .cta a {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  footer {
    font-size: 0.8rem;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: rgba(0, 0, 0, 0.9);
  color: #eee;
  padding: 15px 25px;
  border-radius: 10px;
  display: none; /* hidden by default */
  opacity: 0;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-size: 0.9rem;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cookie-banner.show {
  display: flex;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner p {
  margin: 0;
  padding-right: 10px;
  display: inline-block;
}

.cookie-banner a {
  color: #e6b800;
  text-decoration: underline;
}

.cookie-banner button {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 8px 15px;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

.cookie-banner button:hover {
  background: #c2185b;
}

/* === VIDEOGRAPHY PAGE STYLES === */

/* Hero Section override for videography */
.video-hero {
  margin-top: 25px;
  position: relative;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  animation: fadeInHero 1.5s ease forwards;
}

.video-hero img.hero-banner {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.video-hero .container {
  position: relative;
  height: 100%;
}

.hero-title {
    position: absolute;
    top: 30%;
    left: 30px;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    font-size: 48px;
    text-align: center;
}

/* Promotional Section */
.promo-section {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 25px 25px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  margin: 30px auto;
  max-width: 1000px;
}

.promo-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.promo-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #ccc;
}

/* Video Cards */
.video-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.video-card {
  flex: 1 1 300px;
  max-width: 480px;
  background-color: #1c1c1c;
  border-radius: 20px;
  padding: 4px 5px;
  text-align: center;
  color: #aaa;
  border: 1px solid #333;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

.video-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 10px 0 10px;
  text-align: center;
}

.video-caption {
  font-size: 0.9rem;
  color: #999;
  margin: 20px 0 10px;
  text-align: center;
  font-style: italic;
}
.centered-recaptcha {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.content-box {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  color: #eee;
}
/* === SHOP PAGE FADE-IN === */
.shop-main {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shop-main.loaded {
  opacity: 1;
}
/* === SHOP PAGE STRUCTURE === */

/* Sidebar */
.shop-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: #222;
  padding: 15px;
  border-radius: 10px;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin: 10px 0;
}

.sidebar-nav a,
.sidebar-nav button {
  color: #fff;
  background: none;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  border-radius: 5px;
  display: block;
  cursor: pointer;
}

.sidebar-nav a:hover,
.sidebar-nav button:hover {
  background: #333;
  color: #e6b800;
}

/* Dropdowns */
.dropdown-content {
  display: none;
  margin-left: 10px;
}

.dropdown.open > .dropdown-content {
  display: block;
}

/* Divider between sidebar and main */
.shop-divider {
  width: 1px;
  background: #444;
  margin: 0 20px;
}

/* Main area */
.shop-main {
  flex: 1;
}

/* Feature banner (for shop-home) */
.feature-banner {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}

.feature-banner img {
  width: 100%;
  border-radius: 15px;
}

.feature-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  border-radius: 10px;
}

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

.shop-btn:hover {
  background: #c2185b;
}

/* === PAGINATION === */
.pagination-controls {
  margin-top: 20px;
  text-align: center;
}

.page-btn {
  background: #333;
  color: #eee;
  border: none;
  margin: 0 5px;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.page-btn.active,
.page-btn:hover {
  background: #e6b800;
  color: #000;
}