/* 
  6svipa Stylesheet
  Theme: Fashion Editorial with Z-pattern Journey
  Primary Color: #2D3047 (Deep blue-purple)
  Secondary Color: #FC5130 (Vibrant coral)
  Accent Color: #30BCED (Bright blue)
  Background Color: #F5F5F5 (Light gray)
  Text Color: #333333 (Dark gray)
*/

/* Base Styles */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #333333;
  background-color: #F5F5F5;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 1.8;
}

.title, .subtitle {
  color: #2D3047;
}

.section-title {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #FC5130;
}

.has-text-centered .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Buttons */
.button {
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.button.is-primary {
  background-color: #FC5130;
  border-color: #FC5130;
}

.button.is-primary:hover {
  background-color: #e34a2d;
  border-color: #e34a2d;
}

.button.is-outlined {
  border-color: #2D3047;
  color: #2D3047;
}

.button.is-outlined:hover {
  background-color: #2D3047;
  color: white;
}

.button.is-primary.is-outlined {
  border-color: #FC5130;
  color: #FC5130;
}

.button.is-primary.is-outlined:hover {
  background-color: #FC5130;
  color: white;
}

/* Navbar */
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-item {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2D3047;
  padding: 1.5rem 1rem;
}

.navbar-item:hover, .navbar-item:focus {
  color: #FC5130 !important;
  background-color: transparent !important;
}

.navbar-item.is-active {
  color: #FC5130;
  background-color: transparent !important;
}

.navbar-burger {
  height: auto;
}

/* Hero Sections */
.hero {
  position: relative;
  overflow: hidden;
}

.hero.is-medium .hero-body {
  padding: 6rem 1.5rem;
}

.hero-title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-weight: 400;
  margin-bottom: 2rem;
}

.main-hero {
  background-color: #f9f9f9;
}

.tech-hero {
  background-color: #e9f6fe;
}

.about-hero {
  background-color: #fff5f2;
}

.blog-hero {
  background-color: #f0f4fa;
}

.contact-hero {
  background-color: #f5fcff;
}

.hero-image img {
  box-shadow: 10px 10px 0 rgba(45, 48, 71, 0.1);
}

/* Cards */
.card {
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-image {
  overflow: hidden;
}

.card-image img {
  transition: transform 0.5s ease;
}

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

.topic-card .card-content, .article-card .card-content {
  padding: 1.5rem;
}

.article-card .image {
  position: relative;
}

.article-card .image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(45, 48, 71, 0.05) 0%, rgba(45, 48, 71, 0) 30%);
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.alternate-section {
  background-color: #f9f9f9;
}

.about-section {
  background-color: #fff5f2;
}

.key-topics {
  position: relative;
}

.contact-section {
  background-color: #f5fcff;
}

.cta-section {
  background-color: #2D3047;
  color: white;
  text-align: center;
}

.cta-section .title, .cta-section .subtitle {
  color: white;
}

/* Table of Contents */
.toc-box {
  background-color: #f9f9f9;
  border-left: 4px solid #30BCED;
}

.toc-link {
  display: block;
  padding: 0.75rem 1rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  color: #2D3047;
}

.toc-link:hover {
  background-color: #f0f0f0;
  border-left-color: #FC5130;
  color: #FC5130;
}

.toc-link i {
  margin-right: 0.5rem;
  color: #30BCED;
}

/* Content Sections */
.content-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.content-section .image img {
  box-shadow: 10px 10px 0 rgba(45, 48, 71, 0.1);
}

/* Contact Form */
.contact-box {
  border-radius: 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
}

.contact-box .label {
  color: #2D3047;
  font-weight: 600;
}

.contact-box .input, .contact-box .textarea, .contact-box .select select {
  border-radius: 0;
  border-color: #e0e0e0;
  box-shadow: none;
}

.contact-box .input:focus, .contact-box .textarea:focus, .contact-box .select select:focus {
  border-color: #30BCED;
  box-shadow: 0 0 0 1px rgba(48, 188, 237, 0.2);
}

.checkbox a {
  color: #FC5130;
}

/* Contact Info Cards */
.contact-info-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-info-card .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background-color: #f0f4fa;
  border-radius: 50%;
}

.contact-info-card .icon-container i {
  font-size: 1.8rem;
  color: #FC5130;
}

.contact-info-card .title {
  margin-bottom: 1rem;
}

.contact-hours {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Map */
.map-container {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* Our Values */
.value-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background-color: #f0f4fa;
  border-radius: 50%;
}

.value-card .icon-container i {
  font-size: 1.8rem;
  color: #FC5130;
}

/* Blog */
.featured-article {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.featured-article .image img {
  box-shadow: 10px 10px 0 rgba(45, 48, 71, 0.1);
}

.articles-grid {
  background-color: #f9f9f9;
}

.article-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.article-content.expanded {
  max-height: 3000px;
}

.tag.is-light {
  background-color: #f0f4fa;
  color: #2D3047;
}

.tag.is-primary.is-light {
  background-color: #fff5f2;
  color: #FC5130;
}

.tag.is-info.is-light {
  background-color: #e9f6fe;
  color: #30BCED;
}

.tag.is-warning.is-light {
  background-color: #fffbf0;
  color: #F9C22E;
}

.tag.is-danger.is-light {
  background-color: #feecec;
  color: #D91A1A;
}

.tag.is-success.is-light {
  background-color: #f0fff4;
  color: #48C774;
}

/* Thank You Page */
.thank-you-section {
  padding: 6rem 1.5rem;
}

.thank-you-icon {
  font-size: 5rem;
  color: #48C774;
  margin-bottom: 2rem;
}

.suggested-links {
  margin-top: 2rem;
}

/* Legal Pages */
.legal-content {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.legal-text h2, .legal-text h3 {
  color: #2D3047;
}

.legal-text a {
  color: #FC5130;
}

.legal-text table {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background-color: #1A1A2E;
  color: #f5f5f5;
  padding: 4rem 1.5rem 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #FC5130;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #b0b0b0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FC5130;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: #FC5130;
  width: 20px;
  margin-right: 0.5rem;
}

.copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b0b0b0;
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2D3047;
  color: white;
  z-index: 1000;
  display: none;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-banner.visible {
  display: block;
}

.cookie-content {
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-header h3 {
  color: white;
  margin: 0;
}

.cookie-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
}

.cookie-categories {
  margin: 1.5rem 0;
}

.cookie-category {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.cookie-category label {
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
}

.cookie-category input {
  margin-right: 0.5rem;
}

.category-description {
  margin-top: 0.5rem;
  margin-left: 1.5rem;
  font-size: 0.9rem;
  color: #b0b0b0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-settings-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  background-color: white;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-settings-button i {
  margin-right: 0.5rem;
  color: #FC5130;
}

.cookie-settings-button:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    box-shadow: none;
  }
  
  .hero.is-medium .hero-body {
    padding: 4rem 1.5rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .hero.is-medium .hero-body {
    padding: 3rem 1.5rem;
  }
  
  .section {
    padding: 3rem 1.5rem;
  }
  
  .content-section .columns {
    flex-direction: column-reverse;
  }
  
  .content-section .column {
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-actions button {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .cookie-settings-button {
    padding: 0.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .cookie-settings-button i {
    margin-right: 0;
  }
  
  .cookie-settings-button span {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .contact-box {
    padding: 1.5rem;
  }
}