/* 
* KEBAB STAR OK - Main Styles
* Theme: Futuristic with Biomorphic Design
* Color Scheme: Triadic
*/

:root {
  /* Primary colors - Triadic color scheme */
  --primary: #ff6d00;
  --secondary: #00a3ff;
  --tertiary: #9400ff;

  /* Shades of primary colors */
  --primary-dark: #d85a00;
  --secondary-dark: #0081cb;
  --tertiary-dark: #7600cc;

  /* Neutral colors */
  --dark: #121212;
  --dark-alt: #222222;
  --medium: #555555;
  --light: #f8f9fa;
  --white: #ffffff;

  /* Overlay colors */
  --overlay-dark: rgba(0, 0, 0, 0.7);
  --overlay-light: rgba(255, 255, 255, 0.1);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary),
    var(--secondary-dark)
  );
  --gradient-tertiary: linear-gradient(
    135deg,
    var(--tertiary),
    var(--tertiary-dark)
  );
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark-alt));

  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-circle: 50%;
  --radius-blob: 70% 30% 50% 50% / 30% 60% 40% 70%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Typography */
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3rem;
  --font-size-5xl: 4rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

p {
  margin-bottom: var(--space-md);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  position: relative;
  padding: var(--space-xl) 0;
}

.py-6 {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.container {
  position: relative;
  z-index: 2;
}

header {
  background-color: #121212;
}

/* Buttons & Interactive Elements */
.btn,
button,
input[type="submit"] {
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.btn::before,
button::before,
input[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-fast);
  z-index: -1;
}

.btn:hover::before,
button:hover::before,
input[type="submit"]:hover::before {
  transform: translateX(0);
}

.btn-primary,
.btn-primary:active {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}

/* Forms */
.form-control,
.form-select {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 109, 0, 0.25);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-medium);
}

.navbar {
  padding: 1.5rem 0;
  background-color: transparent;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background-color: var(--dark);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-xl);
  color: var(--white) !important;
}

.logo-text {
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all var(--transition-fast);
  position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 50%;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-section h1 {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-md);
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-lg);
  color: var(--white);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

/* Section Headers */
.section-header {
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  color: var(--dark);
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.bg-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--medium);
  max-width: 800px;
  margin: 0 auto;
}

.bg-dark .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

/* Parallax Effects */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Animation on Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card Styles */
.card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-medium);
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.card p {
  color: var(--medium);
  margin-bottom: var(--space-md);
}

.bg-dark-subtle {
  background-color: rgba(33, 37, 41, 0.03);
}

/* Projects Section */
.bg-dark {
  background-color: var(--dark);
  color: var(--white);
}

.bg-dark .card {
  background-color: rgba(255, 255, 255, 0.05);
}

.bg-dark .card h3 {
  color: var(--white);
}

.bg-dark .card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Gallery Section */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: var(--space-md);
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xs);
}

.gallery-overlay p {
  font-size: var(--font-size-md);
  margin: 0;
}

/* External Resources Section */
.resource-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.1);
}

.card-icon {
  font-size: 3rem;
  color: var(--primary);
}

/* Success Stories Section */
.success-story-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.success-story-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.success-story-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 300px;
}

.success-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Accolades Section */
.accolade-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.accolade-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.1);
}

.accolade-icon img {
  border-radius: var(--radius-circle);
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin: 0 auto;
}

/* Contact Section */
.contact-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info {
  margin-bottom: var(--space-lg);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.social-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Map Section */
.map-container {
  height: 450px;
  width: 100%;
}

.map-container iframe {
  border: none;
  width: 100%;
  height: 100%;
}

/* Footer */
.footer {
  position: relative;
  background-color: var(--dark);
  color: var(--white);
}

.footer-brand h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer h3 {
  color: var(--white);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--white);
  padding: 1rem;
  z-index: 9999;
  display: none;
}

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

.cookie-content p {
  margin: 0;
}

.btn-accept {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.btn-accept:hover {
  background-color: var(--primary-dark);
}

/* Rounded Blob Shape */
.rounded-blob {
  border-radius: var(--radius-blob);
  transition: border-radius var(--transition-slow);
}

.rounded-blob:hover {
  border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
}

/* Modal Styles */
.modal-content {
  border-radius: var(--radius-md);
  border: none;
  overflow: hidden;
}

.modal-header {
  background: var(--gradient-primary);
  color: var(--white);
  border-bottom: none;
}

.modal-title {
  font-family: var(--font-heading);
}

.btn-close {
  filter: brightness(0) invert(1);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) 0;
}

.success-container {
  text-align: center;
  max-width: 600px;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.privacy-content,
.terms-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

/* Read More Links */
.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.read-more:after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover:after {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  :root {
    --font-size-5xl: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  :root {
    --font-size-5xl: 3rem;
    --space-xl: 4rem;
  }

  .navbar-collapse {
    background-color: var(--dark);
    padding: 1rem;
    border-radius: var(--radius-md);
  }
}

@media (max-width: 767.98px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
    --space-xl: 3rem;
  }

  .hero-section {
    text-align: center;
  }

  .cookie-content {
    justify-content: center;
    text-align: center;
  }

  .gallery-item,
  .success-story-image {
    height: 250px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-100px) translateY(-100px);
  }
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4a);
  transition: height 0.3s ease;
}

.faq-item:hover::before {
  height: 8px;
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-question::before {
  content: "🌯";
  font-size: 1.5rem;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Jobs Section */
.jobs-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
  position: relative;
}

.jobs-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 80,90 20,90" fill="rgba(255,255,255,0.05)"/></svg>')
    repeat;
  opacity: 0.3;
}

.jobs-section .section-title h2 {
  color: #2c3e50;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jobs-section .section-title p {
  color: #2c3e50;
  opacity: 0.8;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.job-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.job-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.job-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.job-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.job-requirements {
  margin-bottom: 25px;
}

.job-requirements h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.job-requirements ul {
  list-style: none;
  padding-left: 0;
}

.job-requirements li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
  color: #666;
}

.job-requirements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.apply-btn {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
  background: linear-gradient(45deg, #c0392b, #a93226);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }

  .faq-container {
    grid-template-columns: 1fr;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .faq-item,
  .job-card {
    padding: 25px;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .faq-section,
  .jobs-section {
    padding: 60px 0;
  }

  .faq-item,
  .job-card {
    padding: 20px;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .job-title {
    font-size: 1.3rem;
  }
}
