@charset "UTF-8";
/* CSS Document */

/* 1. Define theme variables. Dark mode is the default. */
:root {
  --background-image: url("../img/alien-ship-desert.png");
  --overlay-color: rgba(0, 0, 0, 0.7);
  --text-color: #fff;
  --card-background: rgba(255, 255, 255, 0.1);
  --card-blur: 10px;
  --card-border-color: rgba(255, 255, 255, 0.2);
  --card-shadow-color: rgba(0, 0, 0, 0.2);
  --navbar-toggler-icon-color: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

  
  /* NEW: Variables for your toggle button's dark mode style */
  --clay-bg: #2e2e2e;
  --clay-text-color: #fff;
  --clay-shadow-outset: -5px -5px 10px rgba(70, 70, 70, 0.5), 5px 5px 10px rgba(0, 0, 0, 0.5);
  --clay-shadow-inset-primary: 5px 5px 10px rgba(0, 0, 0, 0.5);
  --clay-shadow-inset-secondary: -5px -5px 10px rgba(70, 70, 70, 0.5);
}

/* 2. Define the overrides for light mode */
body.light-mode {
  --background-image: url("../img/alien-ship-desert-daytime.png"); 
    --overlay-color: transparent;  
  --text-color: #333;
  --card-background: rgba(255, 255, 255, 0.6);
  --card-border-color: rgba(255, 255, 255, 0.7);
  --card-shadow-color: rgba(0, 0, 0, 0.1);
  --navbar-toggler-icon-color: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

  /* NEW: Variables for your toggle button's light mode style */
  --clay-bg: #e0e0e0;
  --clay-text-color: #333;
  --clay-shadow-outset: -5px -5px 10px rgba(255, 255, 255, 0.7), 5px 5px 10px rgba(0, 0, 0, 0.1);
  --clay-shadow-inset-primary: 5px 5px 10px rgba(0, 0, 0, 0.1);
  --clay-shadow-inset-secondary: -5px -5px 10px rgba(255, 255, 255, 0.7);
}

/* 3. Apply variables to your styles */
body {
  font-family: Arial, sans-serif;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-image: var(--background-image);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color);
  z-index: -1;
  pointer-events: none;
}

.main-container {
  max-width: 1920px;
  margin: 0 auto;
}

/* Generic Card Styles */
.title, .subtitle, .credit, .navbar, figcaption, .story-block, 
.text-right, .glassmorphism-card, .dropdown-menu, .logo-container, .about-heading, .about-content, .main-content {
  background: var(--card-background);
  backdrop-filter: blur(var(--card-blur));
  -webkit-backdrop-filter: blur(var(--card-blur));
  border-radius: 1rem;
  border: 1px solid var(--card-border-color);
  box-shadow: 0 4px 30px var(--card-shadow-color);
  padding: 2rem;
  color: var(--text-color);
}

/* Specific Overrides */
.logo-container {
  padding: 0.5rem;
  display: inline-block;
  line-height: 0;
}

.navbar {
  display: flex; /* Helps with alignment */
  justify-content: space-between;
  align-items: center;
}

.navbar-toggler-icon {
  background-image: var(--navbar-toggler-icon-color);
}

.dropdown-menu {
  z-index: 1100;
  position: absolute;
  padding: 1rem; /* Dropdowns are usually less padded */
}

/* Text-Only Elements (no card styles) */
.headline-container, .navbar a, .navbar-brand, .navbar-nav .nav-link, .page-title {
  color: var(--text-color) !important;
  background: none;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.headline-container {
  text-align: center;
  margin: 2rem auto;
}

.page-title {
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  padding-left: 100px;
}

/* Toggle Button Style */
.theme-toggle {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  font-family: 'Times New Roman', serif;
  font-size: 1rem;
  border-radius: 32px;
  background-color: var(--clay-bg);
  color: var(--clay-text-color);
  box-shadow: 
    var(--clay-shadow-outset),
    inset var(--clay-shadow-inset-primary),
    inset var(--clay-shadow-inset-secondary);
  transition: all 0.3s ease;
}
.logo-title {
  padding: 20px;
  display: flex;
  align-items: center;
}

.logo-title img {
  max-height: 60px;
  margin-right: 20px;
}
.logo-container {
  /* Glassmorphism Background */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari support */

  /* Card Shape & Border */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  
  /* Padding to "barely cover" the logo */
  padding: 0.5rem; 

  /* Ensures the container shrinks to fit the padded logo */
  display: inline-block;
  line-height: 0; /* Fixes extra space under the image */
}

.logo-img {
  /* Ensures the image itself is not distorted */
  display: block;
  max-height: 50px; /* Adjust size as needed */
  width: auto;
}
.page-title {
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  color: var(--text-color);
  padding-left: 100px;
  color: #fff;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 1px;
  padding-bottom: 0.3em;
}
blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  border-left: 4px solid #ccc;
  padding-left: 15px;
  margin: 1em 0;
}
video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; /* Prevent overflow */
  height: auto;    /* Keep aspect ratio */
}
.headline {
  padding: 0.5em 0;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.credit {
  font-family: 'Times New Roman', serif;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  margin: .25rem 1rem;
}
.main-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.main-content {
  flex: 1 1 70%;
  padding: 20px;
}

.sidebar {
  flex: 1 1 30%;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: transparent;
}

.advertisement {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  background-color: #f9f9f9;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
}

.row-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.image-left {
  flex: 1 1 50%;
  padding-right: 15px;
}

.image-left img {
  width: 100%;
  height: auto;
}

.text-right {
  flex: 1 1 50%;
}

.three-column-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.three-column-row .col-md-6 img,
.three-column-row .col-md-3 img {
  width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: white;
  text-align: center;
  background-color: #007bff;
  border: 1px solid #007bff;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  font-weight: 700;
  background-color: #007bff;
  border-color: #007bff;
  color: white;
}

@media (max-width: 768px) {
  .main-wrapper {
	flex-direction: column;
  }

  .row-content {
	flex-direction: column;
  }

  .image-left, .text-right {
	flex: 1 1 100%;
	padding: 0;
  }

  .three-column-row > div {
	flex: 1 1 100%;
	margin-bottom: 20px;
  }
}
/*
.footer-logo {
  max-width: 20%;
  height: auto; 
}
.footer-container {
  position: relative;
  background-color: #2b1d1a; 
  padding: 20px 40px;
  color: #fff;
  overflow: hidden; 
}

.footer-logo {
  max-width: 100%;
  width: 60px; 
  height: auto;
}

.footer-text {
  position: relative;
  z-index: 2; 
}

.footer-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-30%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 165, 0, 0.9) 50%,   
    rgba(255, 165, 0, 0.2) 70%,   
    rgba(128, 0, 128, 0.7) 100%   
  );
  filter: blur(60px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .footer-container::before {
    width: 250px;
    height: 250px;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
  }

  .footer-logo {
    width: 50px;
  }

  .footer-text h2 {
    font-size: 1.2rem;
  }
}
*/
/* Main footer styling */
.footer-container {
    background-color: #21150a; /* Really dark brown */
    color: #f0f0f0; /* Off-white for text */
    padding: 3rem 2rem;
    position: relative; /* Needed for the pseudo-element's positioning */
    overflow: hidden; /* Keeps the blurry circle contained */
}

/* Flex container for the logo and text */
.footer-content {
    display: flex;
    align-items: center; /* Vertically aligns logo and text */
    gap: 2rem; /* Space between logo and text */
    position: relative; /* Ensures content is layered on top of the background effect */
    z-index: 2;
}

/* Logo styling */
.footer-logo {
    max-height: 60px; /* Adjust size as needed */
    width: auto;
}

/* Container for the text and the blurry circles' anchor */
.footer-text {
    position: relative; /* Acts as the positioning context for the circles */
}

/* --- The Blurry Circles --- */

/* Common styles for BOTH blurred circles */
.footer-text::before,
.footer-text::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    /* Center the circles behind the text block */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* 🟣 The larger, bottom circle (BRIGHTER PURPLE) */
.footer-text::before {
    /* UPDATED: Brighter color and higher opacity for more pop */
    background-color: rgba(160, 32, 240, 0.5); 
    width: 400px;
    height: 400px;
    filter: blur(90px);
    z-index: -2; /* Layer it behind the orange circle */
}

/* 🟠 The smaller, top circle (20% LARGER) */
.footer-text::after {
    background: radial-gradient(
        circle,
        rgba(255, 170, 85, 0.7) 25%, /* Opaque orange in the center */
        transparent 80%             /* Fades to transparent toward the edge */
    );
    /* UPDATED: Increased size by 20% from 250px to 300px */
    width: 300px;
    height: 300px;
    filter: blur(70px);
    z-index: -1; /* Layer it on top of the purple, but behind the text */
}

/* Removing default margins from heading and paragraph */
.footer-text h2,
.footer-text p {
    margin: 0;
    padding: 0.25rem 0;
}

.custom-card {
  position: relative;
  border: 2px solid #6f42c1; /* A stronger border color */
  border-radius: 0.5rem;
  background: #fff;
  padding-top: 1.5rem; /* Space for title overlap */
  overflow: visible;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
}


.custom-card-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.custom-card-top {
  background: linear-gradient(135deg, #6f42c1, #d63384);
  color: #fff;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(0, 255, 255, 0.2);
}

.custom-card-top .price {
  font-size: 1.5rem;
  font-weight: bold;
}
.custom-card-top.standard {
  background: linear-gradient(135deg, #b58900, #d2b48c); /* Dark goldenrod to tan */
  color: #fff;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 0 12px rgba(181, 137, 0, 0.4), 0 0 20px rgba(210, 180, 140, 0.3);
}
.custom-card-top.compact {
  background: linear-gradient(135deg, #00ffe0, #0088ff); /* Neon teal to electric blue */
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.custom-card-top.heavy-duty {
	background: linear-gradient(135deg, #006400, #7CFC00); /* Dark green to light green */
  color: #fff;
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.custom-card-top.heavy-duty::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='86' viewBox='0 0 100 86' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='50%25' r='50%25'%3E%3Cstop offset='0%25' stop-color='%23ffffff' stop-opacity='0.2'/%3E%3Cstop offset='100%25' stop-color='%23000000' stop-opacity='0.2'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cpath d='M50 0l50 29v28L50 86 0 57V29z' fill='url(%23g)' stroke='%23000000' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100px 86px; /* Bigger pattern */
  pointer-events: none;
  z-index: 0;
  opacity: 0.2; /* Adjust to make the effect subtle */
}
.custom-card-list {
  margin: 0 1rem; /* Adds horizontal spacing to the entire list */
  padding: 0;
  list-style: none;
}

.custom-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
  margin-bottom: 0.75rem; /* optional spacing between items */
}

.custom-card-list .radial {
  width: 10px;
  height: 10px;
  background: #28a745; /* Bootstrap green (or use #00ff00 for neon green) */
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4em;
}
/* style for red star in order form */
.required-star {
    color: #dc3545; /* Bootstrap's danger red */
}
.buy-button {
  background-color: #0dcaf0; /* Bootstrap cyan */
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(13, 202, 240, 0.4);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.buy-button:hover,
.buy-button:focus {
  box-shadow: 
    0 0 10px #0dcaf0,
    0 0 20px #0dcaf0,
    0 0 30px #0dcaf0;
  transform: scale(1.05);
  outline: none;
}

.testimonials {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: #f5f8ff;
  border: 2px solid #dce6f0;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.testimonial {
  margin-bottom: 2rem;
  padding-left: 2rem;
  border-left: 4px solid #4dabf7;
  position: relative;
}
.footer-container {
  background-color: #1a1a1a; /* Dark footer background */
  color: #fff;
  padding: 20px 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-text {
  text-align: center;
  flex: 1;
  margin: 10px 0;
}

.footer-buttons {
  display: flex;
  gap: 10px;
}

.footer-btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1.2rem;
}
.footer-logo-wrapper a:hover img {
  opacity: 0.8;
  transform: scale(1.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo-wrapper a {
  cursor: pointer;
}

.footer-btn:hover {
  background: #555;
}

.footer-text h2 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-text h2 a:hover {
  color: #ffcc66; /* or any soft highlight color */
  text-shadow: 0 0 8px rgba(255, 204, 102, 0.6);
  cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-buttons {
    margin-top: 10px;
  }
}
.feature-list .feature-title {
  font-weight: bold;
  font-size: 1.1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0 5;
}

.feature-list .feature-desc {
  font-size: 0.95rem;
  color: #6c757d;
  margin-top: 0.25rem;
  font-family: 'Georgia', serif;
}

body.video-page {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Optional: darken the video */
  z-index: 0;
  pointer-events: none;
}

/* Optional: overlay content */
.content-overlay {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding-top: 20vh;
}
.about-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/background7-1900x1200.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none; /* so clicks go through to main content */
}

.about-page {
  position: relative; /* ensure stacking context works */
}
.about-heading {
  padding: 0.5em 0;
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: ghostwhite;
}
.about-content { 
  font-family: 'Playfair Display', serif;
	color: ghostwhite;
	font-size: 1.5rem;
}
  .custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
     box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
  }
/* 3 */
  .btn-3 {
    background: rgb(0,172,238);
  background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
    width: 130px;
    height: 40px;
    line-height: 42px;
    padding: 0;
    border: none;

  }
  .btn-3 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  .btn-3:before,
  .btn-3:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
     background: rgba(2,126,251,1);
    transition: all 0.3s ease;
  }
  .btn-3:before {
    height: 0%;
    width: 2px;
  }
  .btn-3:after {
    width: 0%;
    height: 2px;
  }
  .btn-3:hover{
     background: transparent;
    box-shadow: none;
  }
  .btn-3:hover:before {
    height: 100%;
  }
  .btn-3:hover:after {
    width: 100%;
  }
  .btn-3 span:hover{
     color: rgba(2,126,251,1);
  }
  .btn-3 span:before,
  .btn-3 span:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
     background: rgba(2,126,251,1);
    transition: all 0.3s ease;
  }
  .btn-3 span:before {
    width: 2px;
    height: 0%;
  }
  .btn-3 span:after {
    width: 0%;
    height: 2px;
  }
  .btn-3 span:hover:before {
    height: 100%;
  }
  .btn-3 span:hover:after {
    width: 100%;
  }
