/* Eden Media Group - Custom Styles */

/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

/* CSS Variables */
:root {
  --color-slate-950: #020617;
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-slate-500: #64748b;
  --color-slate-400: #94a3b8;
  --color-slate-300: #cbd5e1;
  --color-slate-200: #e2e8f0;
  --color-blue-600: #2563eb;
  --color-blue-500: #3b82f6;
  --color-blue-400: #60a5fa;
  --font-cinzel: 'Cinzel', serif;
  --font-inter: 'Inter', sans-serif;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-slate-950);
  color: var(--color-slate-200);
  font-family: var(--font-inter);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-cinzel);
  font-weight: 700;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-slate-950);
}

::-webkit-scrollbar-thumb {
  background: var(--color-slate-800);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-slate-700);
}

/* Selection */
::selection {
  background-color: rgba(59, 130, 246, 0.3);
}

/* Text glow effect */
.glow-text {
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

/* Box glow effect */
.glow-border {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

/* Animate-in classes for smooth transitions */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-in {
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

.fade-in {
  animation-name: fadeIn;
}

.slide-in-from-top {
  animation-name: slideInFromTop;
}

.slide-in-from-bottom {
  animation-name: slideInFromBottom;
}

.zoom-in {
  animation-name: zoomIn;
}

.duration-200 {
  animation-duration: 0.2s;
}

.duration-300 {
  animation-duration: 0.3s;
}

.duration-500 {
  animation-duration: 0.5s;
}

/* Bounce animation for dots */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.5rem);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

/* Hidden class */
.hidden {
  display: none;
}

/* Line clamp utility */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Navbar scrolled state */
.navbar-scrolled {
  background-color: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(12px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-slate-800);
}

/* Mobile menu */
.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 1rem;
  width: 16rem;
  background-color: var(--color-slate-900);
  border: 1px solid var(--color-slate-800);
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 50;
}

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

/* AI Assistant */
.ai-assistant-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
}

.ai-chat-container {
  display: none;
  width: 20rem;
  height: 500px;
  background-color: var(--color-slate-900);
  border: 1px solid var(--color-slate-800);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  flex-direction: column;
  overflow: hidden;
}

.ai-chat-container.active {
  display: flex;
}

.ai-toggle-button {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(to bottom right, #2563eb, #0f172a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.ai-toggle-button:hover {
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
}

.ai-toggle-button.hidden {
  display: none;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .ai-chat-container {
    width: 24rem;
  }
}

/* Gradient background effects */
.gradient-bg-blue {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
}

/* Custom animations for scroll indicator */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Form styling */
input,
textarea,
select {
  width: 100%;
  background-color: var(--color-slate-950);
  border: 1px solid var(--color-slate-800);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  color: white;
  font-family: var(--font-inter);
  font-size: 0.875rem;
  transition: all 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-blue-500);
  box-shadow: 0 0 0 1px var(--color-blue-500);
}

textarea {
  resize: none;
}

button {
  cursor: pointer;
  font-family: var(--font-inter);
  transition: all 0.2s;
}

/* Active navigation link */
.nav-link-active {
  color: var(--color-blue-400);
}