/* ========================================
   ZSUNELLA WEBSITE STYLESHEET
   Organized and Maintained CSS
======================================== */

/* ========================================
   1. CSS VARIABLES & CUSTOM PROPERTIES
======================================== */
:root {
  /* Color Palette */
  --color-blue-main: #0074c8;
  --color-blue-dark: #005088;
  --color-blue-light: #00b8d4;
  --color-yellow-main: #ffe066;  /* main */
  --color-yellow-hover: #ffd633; /* hover (slightly deeper, adds contrast) */
  --color-yellow-accent: #fff2b3; /* optional very pale version for backgrounds */  
  --color-green-main: #90b03d;
  --color-green-light: #b6d447;
  --color-text-dark: #003366;
  --color-text-black: #000000;
  --color-bg-light: #f0f0f0;
  --color-white: #ffffff;

  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Georgia', serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;

  /* Design Tokens */
  --radius: 8px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --whatsapp-green: #25D366;
  --color-gray-light: #f8f9fa;
  --color-gray-medium: #e0e0e0;
  --color-gray-border: #f0f0f0;
  --color-gray-text: #a0a0a0;
  --color-accent: #00f0f4;
  --color-logo-hover: #00C6FC;
}

/* ========================================
   2. RESET & BASE STYLES
======================================== */
html {
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  box-sizing: border-box;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-top: 0;
  line-height: 1.2;
}

/* Links */
a {
  color: var(--color-blue-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-green-main);
}

/* Utility Classes */
.extra-t-pad {
  margin-top: 10px;
}

/* ========================================
   3. LAYOUT & CONTAINERS
======================================== */

/* Company Overview Section */
.company-overview {
  background: var(--color-white);
  color: var(--color-text-dark);
  padding: var(--space-lg) 0;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.overview-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.overview-text {
  flex: 1;
  text-align: left;
}

.overview-image {
  flex: 1;
  text-align: center;
}

.main-overview-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.main-overview-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.company-overview h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-blue-main);
  text-shadow: none;
}

.overview-subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: var(--color-blue-dark);
  font-weight: 500;
}

.overview-description {
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.overview-description p {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

.overview-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-gray-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: 25px;
  border: 1px solid var(--color-gray-medium);
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--color-blue-main);
  color: var(--color-white);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.2rem;
}

.feature-item span:last-child {
  font-weight: 500;
  font-size: 0.95rem;
}

/* Responsive design for company overview */
@media only screen and (max-width: 768px) {
  .overview-content {
    flex-direction: column;
    text-align: center;
  }
  
  .overview-text {
    text-align: center;
  }
  
  .company-overview h1 {
    font-size: 2rem;
  }
  
  .overview-subtitle {
    font-size: 1rem;
  }
  
  .overview-description p {
    font-size: 1rem;
  }
  
  .overview-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
  }
  
  .feature-item {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.9rem;
  }
  
  .main-overview-image {
    max-width: 100%;
  }
}

/* About Page Styling */
.about-header h2 {
  color: var(--color-blue-main);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: var(--space-lg);
  padding: 0 var(--space-md);
}

.about-description {
  max-width: 100%;
  margin: 0 0 var(--space-lg) 0;
  padding: 0 var(--space-md);
}

.about-description p {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  text-align: justify;
  text-justify: inter-word;
}

.about-description p:last-child {
  margin-bottom: 0;
}

.about-sections {
  max-width: 100%;
  margin: 0;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.mission-section,
.vision-section {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-blue-main);
}

.vision-section {
  border-left-color: var(--color-green-main);
}

.mission-section h3,
.vision-section h3 {
  color: var(--color-blue-main);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-align: center;
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-gray-light);
}

.vision-section h3 {
  color: var(--color-green-main);
}

.mission-section p,
.vision-section p {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  text-align: justify;
  text-justify: inter-word;
}

.mission-section p:last-child,
.vision-section p:last-child {
  margin-bottom: 0;
}

/* Responsive design for about page */
@media only screen and (max-width: 768px) {
  .about-header h2 {
    font-size: 2rem;
  }
  
  .about-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .about-sections {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .mission-section,
  .vision-section {
    padding: var(--space-md);
  }
  
  .mission-section h3,
  .vision-section h3 {
    font-size: 1.5rem;
  }
  
  .mission-section p,
  .vision-section p {
    font-size: 1rem;
    text-align: left;
  }
}

/* Product Overview Section */
.product-overview {
  background: var(--color-white);
  padding: var(--space-lg) 0;
  margin-bottom: var(--space-md);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-overview-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding: 0 var(--space-md);
}

.header-text {
  margin-bottom: var(--space-md);
}

.header-text h2 {
  font-size: 2.2rem;
  color: var(--color-blue-main);
  margin-bottom: var(--space-sm);
}

.header-text p {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  opacity: 0.8;
  margin: 0;
}

.see-all-link {
  display: inline-block;
  color: var(--color-blue-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.see-all-link:hover {
  color: var(--color-blue-dark);
  border-bottom-color: var(--color-blue-main);
}

/* Products Page Styles */
.products-hero {
  text-align: center;
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-xl);
}

.jacket-section {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.jacket-header {
  flex: 1;
  text-align: left;
}

.jacket-header h2 {
  font-size: 1.8rem;
  color: var(--color-blue-main);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.jacket-header p {
  font-size: 1rem;
  color: var(--color-gray-dark);
  line-height: 1.6;
  margin: 0;
}

.jacket-content {
  flex: 2;
}

.jacket-content .product-item {
  margin: 0;
}

/* All Products Grid */
.all-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  padding: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.products-hero-content h1 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
  color: var(--color-blue-main);
}

.products-hero-content p {
  font-size: 1.2rem;
  color: var(--color-gray-dark);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-category {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) 0;
}

.category-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding: 0 var(--space-md);
}

.category-header h2 {
  font-size: 2.5rem;
  color: var(--color-blue-main);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.category-header p {
  font-size: 1.1rem;
  color: var(--color-gray-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  padding: 0 var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.product-item {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition);
}

.product-image:hover {
  transform: scale(1.05);
}

.product-info {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.4rem;
  color: var(--color-blue-main);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.product-info p {
  color: var(--color-gray-dark);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex: 1;
}

.product-link {
  color: var(--color-blue-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  align-self: flex-start;
}

.product-link:hover {
  color: var(--color-blue-dark);
  transform: translateX(5px);
}

.catalog-section {
  text-align: center;
  padding: var(--space-xl) 0;
  margin-top: var(--space-xl);
}

.catalog-content h3 {
  font-size: 1.4rem;
  color: var(--color-blue-main);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.catalog-content p {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

.catalog-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-blue-main);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.catalog-link:hover {
  background: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.catalog-icon {
  font-size: 1rem;
}

/* Partners Page Styles - Uses same structure as about.html */

.partners-section {
  text-align: center !important;
  width: 100%;
  margin: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: var(--space-xl) auto;
  justify-items: center;
  align-items: center;
  place-items: center;
  text-align: center;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-sm);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.partner-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.partner-logo {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: var(--transition);
  opacity: 1;
  display: block;
  margin: 0 auto;
}

.partner-logo:hover {
  filter: brightness(1.2) contrast(1.1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.partnership-opportunities {
  text-align: left;
  margin-top: 100px;
  padding-top: var(--space-lg);
  padding-left: 0;
}

.partnership-opportunities .btn:hover {
  background: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.partner-name {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 500;
}

/* Responsive design for partners grid */
@media only screen and (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 40px;
    max-width: 700px;
    text-align: center;
  }
  
  .partner-logo {
    max-height: 50px;
    max-width: 70px;
  }
  
  .partner-name {
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 30px;
    max-width: 350px;
    text-align: center;
  }
  
  .partner-logo {
    max-height: 40px;
    max-width: 80px;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .products-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .products-hero-content p {
    font-size: 1rem;
  }
  
  .category-header h2 {
    font-size: 2rem;
  }
  
  .jacket-section {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .jacket-header {
    text-align: center;
  }
  
  .jacket-header h2 {
    font-size: 1.6rem;
  }
  
  .all-products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
  }
  
  .product-gallery {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .product-item {
    margin: 0 var(--space-sm);
  }
}

.product-navigation-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  height: 400px; /* Set a fixed height to center arrows properly */
}

.product-scroll-container {
  overflow-x: auto;
  padding: 0 var(--space-sm);
  -webkit-overflow-scrolling: touch;
  flex: 1;
  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.product-scroll-container::-webkit-scrollbar {
  display: none; /* WebKit */
}

.nav-arrow {
  background: var(--color-blue-main);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: var(--shadow);
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.nav-arrow:hover:not(:disabled) {
  background: var(--color-blue-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-hover);
}

.nav-arrow:disabled {
  background: var(--color-gray-medium);
  cursor: not-allowed;
  opacity: 0.3;
}

.nav-arrow-left {
  left: 10px;
}

.nav-arrow-right {
  right: 10px;
}

.product-scroll-container {
  margin: 0 60px; /* Add margin to prevent overlap with arrows */
}

.product-grid {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-sm);
  min-width: max-content;
}

.product-card {
  flex: 0 0 300px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-blue-main);
}

.product-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: var(--space-md);
}

.product-info h3 {
  font-size: 1.3rem;
  color: var(--color-blue-main);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.product-info p {
  color: var(--color-text-dark);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.product-link {
  color: var(--color-blue-main);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.product-card:hover .product-link {
  color: var(--color-blue-dark);
  transform: translateX(5px);
}

/* Responsive design for product overview */
@media only screen and (max-width: 768px) {
  .product-overview-header h2 {
    font-size: 1.8rem;
  }
  
  .product-overview-header p {
    font-size: 1rem;
  }
  
  .product-navigation-container {
    height: 350px; /* Adjust height for mobile */
  }
  
  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .nav-arrow-left {
    left: 5px;
  }
  
  .nav-arrow-right {
    right: 5px;
  }
  
  .product-scroll-container {
    margin: 0 50px; /* Adjust margin for mobile */
  }
  
  .product-card {
    flex: 0 0 250px;
  }
  
  .product-image {
    height: 150px;
  }
  
  .product-info {
    padding: var(--space-sm);
  }
  
  .product-info h3 {
    font-size: 1.1rem;
  }
  
  .product-info p {
    font-size: 0.9rem;
  }
}

/* Product Detail Page Styles */
.product-detail-section {
  background: var(--color-white);
  padding: var(--space-lg) 0;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-detail-content {
  display: flex;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.product-detail-image {
  flex: 1;
  text-align: center;
}

.product-detail-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-detail-info {
  flex: 1;
  padding: var(--space-md) 0;
}

.product-detail-info h1 {
  font-size: 2.5rem;
  color: var(--color-blue-main);
  margin-bottom: var(--space-sm);
}

.product-category {
  font-size: 1.1rem;
  color: var(--color-blue-dark);
  font-weight: 500;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-description {
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.product-description p {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.product-features {
  margin-bottom: var(--space-lg);
}

.product-features h3 {
  font-size: 1.3rem;
  color: var(--color-blue-main);
  margin-bottom: var(--space-sm);
}

.product-features ul {
  list-style: none;
  padding: 0;
}

.product-features li {
  padding: var(--space-xs) 0;
  color: var(--color-text-dark);
  position: relative;
  padding-left: var(--space-md);
}

.product-features li:before {
  content: "✓";
  color: var(--color-green-main);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Color Palette Styles */
.color-palette {
  margin-bottom: var(--space-lg);
}

.color-palette h3 {
  font-size: 1.3rem;
  color: var(--color-blue-main);
  margin-bottom: var(--space-sm);
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  background: var(--color-gray-light);
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  min-width: 80px;
}

.color-option:hover {
  border-color: var(--color-blue-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.color-option:hover .color-swatch {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.color-option span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-align: center;
}

.product-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn {
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--color-blue-main);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--color-gray-light);
  color: var(--color-text-dark);
  border: 2px solid var(--color-gray-medium);
}

.btn-secondary:hover {
  background: var(--color-gray-medium);
  transform: translateY(-2px);
}

/* Responsive design for product detail */
@media only screen and (max-width: 768px) {
  .product-detail-content {
    flex-direction: column;
  }
  
  .product-detail-info h1 {
    font-size: 2rem;
  }
  
  .product-description p {
    font-size: 1rem;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  box-sizing: border-box;
}

.section-box {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-lg) var(--space-md);
  margin: var(--space-md) auto;
  color: var(--color-text-black);
  font-size: 1rem;
}

/* ========================================
   4. TOP BAR & LANGUAGE SELECTOR
======================================== */
.top-bar {
  background: linear-gradient(90deg, var(--color-blue-light), var(--color-blue-main));
  color: var(--color-white);
  font-size: 0.9rem;
  padding: var(--space-xs) 0;
}

.top-bar-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.lang-select {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.lang-option {
  color: var(--color-gray-text);
  font-weight: 600;
  cursor: pointer;
}

.lang-option.active,
.lang-option:hover {
  color: var(--color-accent);
}

.divider {
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   5. HEADER & NAVIGATION
======================================== */
.header {
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 5px;
}

.logo img {
  height: 70px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.logo-text span {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-blue-main);
  font-family: var(--font-body);
}

.logo-text .logosmall {
  font-size: 1rem;
  color: var(--color-green-main);
  margin-top: 2px;
  margin-bottom: 0;
  font-family: var(--font-body);
}

.logo:hover span {
  color: var(--color-logo-hover);
}

.logo:hover p {
  color: var(--color-green-light);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  font-weight: 500;
  font-size: 1.3rem;
}

.contact-btn {
  background: var(--color-green-main);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid var(--color-green-main);
  font-weight: bold;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-btn:hover {
  background: var(--color-white);
  color: var(--color-green-main);
  border: 1px solid var(--color-green-main);
}

/* ========================================
   6. HERO & INTRO SECTIONS
======================================== */
.hero-container {
  display: flex;
  justify-content: flex-start;
  gap: var(--space-lg);
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: var(--space-md);
}

.intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin: 1rem;
  flex-wrap: nowrap;
}

.intro-text {
  flex: 1 1 auto;
  min-width: 300px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.intro-text-kapcsolat {
  flex: 1 1 auto;
  min-width: 300px;
  font-size: 1.2rem;
  line-height: 0.8;
}

.intro-text-contact-p {
  line-height: 1.6;
}

.intro-text-contact {
  flex: 1 1 auto;
  min-width: 300px;
  font-size: 1.2rem;
  line-height: 1.4;
}

/* Intro Image */
.intro-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 2rem auto;
  max-width: 600px;
  flex: 0 0 auto;
}

.intro-image .name {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}

.intro-image img {
  width: 280px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

/* ========================================
   7. GALLERY SECTION
======================================== */
.main-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
  margin-top: var(--space-md);
  margin-bottom: 10px;
}

.main-gallery img {
  width: 250px;
  border-radius: var(--radius);
}

/* ========================================
   8. WHATSAPP WIDGET
======================================== */
#wa-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: auto;
  height: auto;
  overflow: visible;
}

#wa-button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-sizing: content-box;
}

#wa-icon {
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.2s ease;
  object-fit: cover;
  border-radius: 50%;
  background: var(--whatsapp-green);
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#wa-icon:hover {
  transform: scale(1.1);
}

/* CSS-only WhatsApp icon fallback */
#wa-icon.css-only {
  position: relative;
}

#wa-icon.css-only::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: var(--color-white);
  border-radius: 50%;
}

#wa-icon.css-only::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--whatsapp-green);
  border-radius: 50%;
}

/* ========================================
   9. CONTACT FORM SECTION
======================================== */
#kapcsolat-hero {
  max-width: 100%;
  margin: var(--space-lg) auto;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--color-text-black);
}

#kapcsolat-hero form label {
  font-weight: bold;
}

#contact-form {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Form Layout */
.form-row {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.form-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.message-field {
  width: 100%;
  margin-bottom: var(--space-sm);
}

/* Form Inputs */
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: var(--space-sm);
  border: 1px solid #ccc; /* Light gray border - keeping as is for form inputs */
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--color-green-main);
  box-shadow: 0 0 0 2px rgba(144, 176, 61, 0.2);
}

#contact-form label {
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 4px;
  display: block;
}

/* Form Button */
#kapcsolat-hero button.btn {
  background: var(--color-green-main);
  color: var(--color-text-black);
  font-weight: bold;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

#kapcsolat-hero button.btn:hover {
  background: var(--color-green-light);
}

/* Form Messages */
.form-message {
  display: none;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(-10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid;
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-message[style*="background: #e3f2fd"] {
  border-left-color: #1976d2;
}

.form-message[style*="background: #e8f5e8"] {
  border-left-color: #2e7d32;
}

.form-message[style*="background: #ffebee"] {
  border-left-color: #c62828;
}

.form-message[style*="background: #fff3cd"] {
  border-left-color: #856404;
}

#form-status {
  margin-top: var(--space-sm);
  font-weight: bold;
}

/* ========================================
   10. CONTACT INFORMATION SECTION
======================================== */
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  background: var(--color-white);
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info h2 {
  text-align: left;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: var(--color-text-dark);
  font-family: var(--font-heading);
}

.contact-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
  background: var(--color-white);
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  width: 100%;
  max-width: 700px;
  justify-content: space-between;
}

.contact-item:hover {
  background: var(--color-gray-light);
  border-color: var(--color-blue-main);
}

.contact-label {
  font-weight: 600;
  color: var(--color-text-black);
  min-width: 160px;
  font-size: 0.95rem;
}

.contact-name {
  font-weight: 500;
  color: var(--color-text-black);
  flex: 1;
  font-size: 1rem;
}

.contact-email {
  color: var(--color-blue-main);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.contact-email:hover {
  color: var(--color-green-main);
  text-decoration: underline;
}

/* ========================================
   11. COURSE PAGE STYLES
======================================== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.course-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-medium);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.course-card:hover {
  border-color: var(--color-blue-main);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.course-card h3 {
  color: var(--color-blue-dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  border-bottom: 2px solid var(--color-green-light);
  padding-bottom: 0.5rem;
}

.course-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--color-text-dark);
}

.course-card ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.course-card li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: var(--color-text-dark);
}

.course-price {
  font-weight: 600;
  color: var(--color-green-main);
  font-size: 1.1rem;
  text-align: center;
  background: var(--color-gray-light);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border: 1px solid var(--color-green-light);
}

/* Workshop Items */
.workshop-list {
  margin: 2rem 0;
}

.workshop-item {
  background: var(--color-gray-light);
  border-left: 4px solid var(--color-blue-main);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 8px 8px 0;
  transition: var(--transition);
}

.workshop-item:hover {
  background: #e8f4fd;
  border-left-color: var(--color-green-main);
}

.workshop-item h4 {
  color: var(--color-blue-dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.workshop-item p {
  margin: 0;
  color: var(--color-text-dark);
  line-height: 1.5;
}

/* Location List */
.location-list {
  margin: 2rem 0;
}

.location-list h4 {
  color: var(--color-blue-dark);
  margin: 1.5rem 0 1rem 0;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--color-green-light);
  padding-bottom: 0.5rem;
}

.location-list ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.location-list li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: var(--color-text-dark);
}

/* Materials Section */
.materials-included {
  background: var(--color-gray-light);
  border: 1px solid var(--color-green-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.materials-included h4 {
  color: var(--color-green-main);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.materials-included ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.materials-included li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  color: var(--color-text-dark);
}

/* Call to Action */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-blue-main));
  color: var(--color-white);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-section .btn {
  background: var(--color-green-main);
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.cta-section .btn:hover {
  background: var(--color-green-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(144, 176, 61, 0.3);
}

/* ========================================
   12. CREDITS SECTION
======================================== */
.credits-section {
  background: var(--color-bg-light);
  padding: var(--space-md);
  border-radius: 10px;
  max-width: 800px;
  margin: var(--space-md) auto;
  box-shadow: var(--shadow);
}

.credits-section h2 {
  text-align: center;
  margin-bottom: var(--space-sm);
  font-size: 1.8rem;
  color: var(--color-text-dark);
}

.credits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.credits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  background: var(--color-white);
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.credits .role {
  font-weight: bold;
  width: 180px;
}

.credits li:hover {
  background: var(--color-bg-light);
}

.credits a {
  color: var(--color-blue-main);
}

.credits a:hover {
  text-decoration: underline;
}

/* ========================================
   13. BUTTONS & LINKS
======================================== */
.btn {
  display: inline-block;
  background: var(--color-green-light);
  color: var(--color-text-dark);
  padding: 10px 20px;
  margin-top: var(--space-sm);
  font-weight: bold;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  background: var(--color-green-main);
}

.small-link {
  text-decoration: none;
  color: var(--color-text-black);
  padding-left: 30px;
  margin-bottom: 10px;
}

.small-link:hover {
  color: var(--color-green-main);
}

/* ========================================
   14. HAMBURGER MENU
======================================== */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  user-select: none;
}

.hamburger:hover {
  background-color: var(--color-gray-light);
}

.hamburger:active {
  background-color: #e9ecef;
}

/* ========================================
   15. FOOTER
======================================== */
footer {
  background: var(--color-blue-dark);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-md);
  font-size: 0.9rem;
}

/* ========================================
   16. RESPONSIVE DESIGN
======================================== */

/* Tablet and Small Desktop */
@media (max-width: 768px) {
  /* Container adjustments */
  .container {
    padding: 0 15px;
  }
  
  .section-box {
    padding: 20px 15px;
    margin: 15px auto;
  }
  
  /* Header adjustments */
  .header-container {
    padding: 0 15px;
  }
  
  /* Navigation mobile */
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: var(--space-md);
    background: var(--color-white);
    padding: var(--space-md);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 200px;
    z-index: 1000;
    align-items: stretch;
  }
  
  .nav.show {
    display: flex;
    animation: slideIn 0.3s ease-out;
  }
  
  .nav a {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-gray-border);
    text-decoration: none;
    color: var(--color-text-dark);
    transition: background-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
  }
  
  .nav a:last-child {
    border-bottom: none;
  }
  
  .nav a:hover {
    color: var(--color-green-main);
  }
  
  .nav .contact-btn {
    margin: 8px 0;
    border-radius: 6px;
    background: var(--color-green-main);
    color: var(--color-white);
    border: 1px solid var(--color-green-main);
    transition: var(--transition);
  }

  .nav .contact-btn:hover {
    background: var(--color-white);
    color: var(--color-green-main);
    border: 1px solid var(--color-green-main);
  }
  
  .hamburger {
    display: block;
    z-index: 1001;
  }
  
  /* Layout adjustments */
  .hero-container {
    flex-direction: column;
  }
  
  .intro {
    margin: 1rem 0;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .intro-image {
    margin-top: 1rem;
    margin: 1rem auto;
    max-width: 100%;
  }
  
  /* Gallery adjustments */
  .main-gallery {
    gap: 15px;
    margin-top: 15px;
    padding: 0 10px;
  }
  
  .main-gallery img {
    width: calc(50% - 10px);
    max-width: 200px;
  }
  
  /* WhatsApp adjustments */
  #wa-widget {
    right: 15px;
    bottom: 15px;
  }
  
  #wa-button,
  #wa-icon {
    width: 50px;
    height: 50px;
  }
  
  /* Form adjustments */
  #contact-form {
    max-width: 100%;
    padding: 0 10px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-row .form-group {
    margin-bottom: var(--space-sm);
    max-width: 100%;
    width: 100%;
  }
  
  .form-message {
    margin: 12px 10px;
  }
  
  #kapcsolat-hero {
    padding: 15px;
    margin: 15px auto;
  }
  
  #contact-form input,
  #contact-form textarea {
    padding: 10px;
    font-size: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Text alignment */
  .intro-text p,
  .hero-content p,
  .section-box p {
    text-align: left;
  }
  
  .intro-text h1,
  .intro-text h2,
  .intro-text h3,
  .hero-content h1,
  .hero-content h2,
  .hero-content h3,
  .section-box h1,
  .section-box h2,
  .section-box h3 {
    text-align: center;
  }
  
  /* Contact items */
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .contact-label {
    min-width: auto;
    font-weight: 600;
  }
  
  .contact-name {
    font-weight: 600;
  }
  
  .contact-center {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  
  /* Course page */
  .course-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .course-card {
    padding: 1.5rem;
  }
  
  .workshop-item {
    padding: 1rem;
  }
  
  .cta-section {
    padding: 2rem 1rem;
  }
  
  .cta-section p {
    font-size: 1.1rem;
  }
  
  .course-card p,
  .workshop-item p,
  .location-list p,
  .materials-included p {
    text-align: left;
  }
  
  .course-card h3,
  .course-card h4,
  .workshop-item h4,
  .location-list h4,
  .materials-included h4 {
    text-align: center;
  }
  
  /* Mobile list styling - keep native bullets */
  .course-card ul,
  .workshop-item ul,
  .location-list ul,
  .materials-included ul,
  .credits {
    list-style: disc outside;
    padding-left: 0 rem;
    margin-left: 0;
    text-align: left;
  }

  .course-card li,
  .workshop-item li,
  .location-list li,
  .materials-included li,
  .credits li {
    padding-left: 0;
    margin-left: 0;
    text-indent: 0;
    text-align: left;
  }

  
  /* Credits */
  .credits li {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .credits .role {
    width: auto;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .section-box {
    padding: 15px 10px;
    margin: 10px auto;
  }
  
  #contact-form {
    padding: 0 5px;
  }
  
  .contact-center {
    padding: 0 5px;
  }
  
  #wa-widget {
    right: 10px;
    bottom: 10px;
  }
  
  #wa-button,
  #wa-icon {
    width: 45px;
    height: 45px;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  #wa-button,
  #wa-icon {
    width: 40px;
    height: 40px;
  }
}

/* Large Desktop */
@media (max-width: 1200px) {
  #wa-button,
  #wa-icon {
    width: 55px;
    height: 55px;
  }
}

/* ========================================
   17. ANIMATIONS & KEYFRAMES
======================================== */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

