/* Global Styles */
:root {
  --primary-gradient: linear-gradient(135deg, #ff3c00 0%, #ff9900 100%);
  --primary-start: #ff3c00;
  --primary-end: #ff9900;
  --black: #000000;
  --white: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--black);
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
}

/* Navbar Styles */
.navbar {
  background-color: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  color: var(--white) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-start) !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)),
    url("img/background/Cosmic Geometry and Stellar Beauty.png");
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Gradient Button */
.btn-gradient {
  background: var(--primary-gradient);
  border: none;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 60, 0, 0.3);
  color: var(--white);
}

/* Partner Section */
#partners {
  background-color: var(--black);
}

.partner-logo {
  max-height: 120px;
  width: auto;
  padding: 10px;
}

/* Footer */
footer {
  background-color: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-start) !important;
}

/* Social Media Links */
.social-link {
  text-decoration: none;
  color: var(--white);
  transition: transform 0.3s ease;
}

.social-link:hover {
  color: var(--white);
  transform: translateY(-5px);
}

.social-link .card {
  transition: box-shadow 0.3s ease;
}

.social-link:hover .card {
  box-shadow: 0 5px 15px rgba(255, 60, 0, 0.3);
}

.social-link i {
  color: var(--primary-start);
  transition: color 0.3s ease;
}

.social-link:hover i {
  color: var(--primary-end);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

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

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

  .social-link {
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in;
}

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

/* Social Media Section (Contact Page) */
.connect-section {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 991.98px) {
  .connect-section .row {
    margin-left: 0;
    margin-right: 0;
  }
  .connect-section .col-lg-8 {
    padding-left: 0;
    padding-right: 0;
  }
  .container {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

.social-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-card {
  flex: 1 1 220px;
  max-width: 300px;
  min-width: 180px;
  min-height: 220px;
  background: #181b1e;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: var(--white);
}

.social-card:hover {
  box-shadow: 0 6px 24px rgba(255, 60, 0, 0.15);
  transform: translateY(-4px) scale(1.03);
}

.social-card i {
  font-size: 3.5rem;
  color: var(--primary-start);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.social-card .social-label {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: #23272a;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
  .social-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .social-card {
    max-width: 100%;
    min-width: 0;
    min-height: 140px;
    margin-bottom: 0;
  }
}

/* Navbar Alignment */
.navbar-nav {
  margin: 0;
}

/* Text Visibility */
.text-white-50 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.blockquote-footer {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Footer Styling */
.footer-text {
  font-size: 0.9rem;
}

.footer-icon {
  font-size: 1.5rem;
  margin: 0 10px;
}

/* Mobile/Tablet Product Page */
@media (max-width: 768px) {
  .product-image {
    order: -1;
    margin-bottom: 1.5rem;
  }
}

/* Product Image Sizing and Responsive Order */
.product-image {
  max-width: 420px;
  max-height: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991.98px) {
  .product-image {
    max-width: 320px;
    max-height: 220px;
  }
  .product-section .col-lg-6.order-lg-1 {
    order: -1 !important;
    margin-bottom: 2rem;
  }
}

/* Contact Page Social Cards */
.social-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: var(--white);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-start);
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-start);
  text-decoration: none;
}

.social-card i {
  transition: all 0.3s ease;
  color: var(--white);
}

.social-card:hover i {
  transform: scale(1.2);
  color: var(--primary-start);
}

.social-card .social-label {
  transition: all 0.3s ease;
  color: var(--white);
}

.social-card:hover .social-label {
  color: var(--primary-start);
}

/* Light strong text for dark backgrounds */
.text-light-strong {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Refund Policy Page Custom Styles */
.refund-policy-content {
  line-height: 2;
  color: var(--white);
}
.refund-policy-content h2 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.refund-policy-content p,
.refund-policy-content li,
.refund-policy-content ul,
.refund-policy-content ol {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 2;
}

@media (min-width: 992px) {
  .refund-policy-content {
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}