/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* Color Palette - Warm & Relaxing */
:root {
  --color-cream: #f5ebe0;
  --color-warm-beige: #ede0d4;
  --color-sand: #e6ccb2;
  --color-terracotta: #ddb892;
  --color-warm-brown: #b08968;
  --color-deep-brown: #7f5539;
  --color-sage: #9c8f7e;
  --color-soft-orange: #e07a5f;
  --color-text-dark: #3d3d3d;
  --color-text-light: #6b6b6b;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
background-image:
  linear-gradient(135deg, rgba(245, 235, 224, 0.3) 0%, rgba(237, 224, 212, 0.3) 100%),
  url('../img/background_main.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--color-text-dark);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--color-deep-brown);
  margin-top: 0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.3rem;
  color: var(--color-warm-brown);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

p {
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

a {
  color: var(--color-soft-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-deep-brown);
}

/* Main Container */
.main-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Circle Grid Layout */
.circle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* Logo circle takes full width and centers */
.circle-grid .logo-circle {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 400px;
}

/* Circle Items */
.circle-item {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-warm-beige) 0%, var(--color-sand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(127, 85, 57, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.circle-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-warm-brown) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.circle-item.clickable {
  cursor: pointer;
}

.circle-item.clickable:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(127, 85, 57, 0.25);
}

.circle-item.clickable:hover::before {
  opacity: 1;
}

.circle-item.clickable:hover .circle-content {
  color: white;
}

.circle-item.clickable:hover .circle-title,
.circle-item.clickable:hover .circle-subtitle {
  color: white;
}

/* Logo Circle */
.logo-circle {
  background: linear-gradient(135deg, var(--color-cream) 0%, white 100%);
}

.logo-circle .logo-image {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(127, 85, 57, 0.2));
}

.logo-scaled {
  transform: scale(1.60);
}

/* Decorative Circle , femininity quotes */
.decorative {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  /*background: linear-gradient(135deg, var(--color-soft-orange) 0%, var(--color-terracotta) 100%);*/
}

.circle-item.decorative .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: white;
  text-align: center;
  margin: 0;
  font-weight: 400;
}

/* Individual Circle Colors - Subtle variations of soft-orange/terracotta */
.circle-item[data-page="register"] {
  background: linear-gradient(135deg, #e6ac8b 0%, #ddb892 100%);
}

.circle-item[data-page="register"]::before {
  background: linear-gradient(135deg, var(--color-soft-orange) 0%, var(--color-terracotta) 100%);
}

.circle-item[data-page="trainings"] {
  background: linear-gradient(135deg, #ede0d4 0%, #deb994 100%);
}

.circle-item[data-page="trainings"]::before {
  background: linear-gradient(135deg, #e59880 0%, #d88870 100%);
}

.circle-item[data-page="schedule"] {
  background: linear-gradient(135deg, #e8bd82 0%, #dcb790 100%);
}

.circle-item[data-page="schedule"]::before {
  background: linear-gradient(135deg, #e39078 0%, #d68068 100%);
}

.circle-item[data-page="faq"] {
  background: linear-gradient(135deg, #b67862 0%, #dfba95 100%);
}

.circle-item[data-page="faq"]::before {
  background: linear-gradient(135deg, #eba898 0%, #de9888 100%);
}

.circle-item[data-page="contact"] {
  background: linear-gradient(135deg, #ddb892  0%, #ddb791 100%);
}

.circle-item[data-page="contact"]::before {
  background: linear-gradient(135deg, #e69888 0%, #d98878 100%);
}

.circle-item[data-page="pricing"] {
  background: linear-gradient(135deg, #e6ccb2  0%, #deb893 100%);
}

.circle-item[data-page="pricing"]::before {
  background: linear-gradient(135deg, #e9a088 0%, #dc9078 100%);
}


/* Circle Content */
.circle-content {
  text-align: center;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.circle-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-deep-brown);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  transition: color 0.4s ease;
}

.circle-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
  transition: color 0.4s ease;
}

/* Detail Pages */
.detail-page {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
background-image:
  linear-gradient(135deg, rgba(245,235,224,0.4) 0%, rgba(237,224,212,0.4) 100%),
  url('../img/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 1000;
  overflow-y: auto;
  animation: fadeIn 0.4s ease;
}

.detail-page.active {
  display: block;
}

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

.detail-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Detail Page Text Colors - Brighter for better readability */
.detail-page h1,
.detail-page h2,
.detail-page h3 {
  color: #f5ebe0; /* Cream - very bright */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.detail-page h4 {
  color: #ede0d4; /* Warm beige - bright */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.detail-page p,
.detail-page li,
.detail-page td {
  color: #f5ebe0; /* Cream - very bright */
  text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.2);
}

.detail-page strong {
  color: #ffffff; /* Pure white for emphasis */
  font-weight: 600;
}

.detail-page em {
  color: #ede0d4; /* Warm beige */
}

.detail-page a {
  color: #ffffff; /* White for links */
  text-decoration: underline;
  text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.3);
}

.detail-page a:hover {
  color: #f5ebe0; /* Cream on hover */
}

/* Back Button */
.back-button {
  background: var(--color-warm-brown);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  display: inline-block;
  font-family: 'Lato', sans-serif;
}

.back-button:hover {
  background: var(--color-deep-brown);
  transform: translateX(-5px);
}

/* Register Button */
.register-button {
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-soft-orange) 0%, var(--color-terracotta) 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(224, 122, 95, 0.3);
}

.register-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(224, 122, 95, 0.4);
  color: white;
}

.register-app-link {
  background: #f5ebe0;
  color: #b5835a;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: underline;
}

.tagline-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-soft-orange);
  text-align: center;
  margin: 2rem 0;
}

/* FAQ Items */
.faq-item {
  /*background: white;*/
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(127, 85, 57, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(127, 85, 57, 0.15);
}

/* App Download Links */
.app-download-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
}

.app-download-text{
  text-align: center;
  margin-top: 1rem;
  color: var(--color-text-light);
}

.app-download-links a {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-download-links a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.app-download-links img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Schedule Table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  /*background: white;*/
  border-radius: 10px;
  overflow: hidden;
}

.schedule-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(245, 235, 224, 0.3);
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table td:first-child {
  width: 40%;
  font-weight: 600;
  color: #ffffff; /* White for table headers */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.schedule-table td:last-child {
  color: #f5ebe0; /* Cream for table content */
  text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.2);
}

/* Training Items */
.training-item {
  /*background: white;*/
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 2.5rem;
  box-shadow: 0 5px 15px rgba(127, 85, 57, 0.1);
  border-left: 5px solid var(--color-soft-orange);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(127, 85, 57, 0.15);
}

.training-item h3 {
  color: var(--color-deep-brown);
  margin-top: 0;
}

.training-item ul {
  list-style: none;
  padding-left: 0;
}

.training-item ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.training-item ul li::before {
  content: '🧡';
  position: absolute;
  left: 0;
}

/* Pricing Tables */
.pricing-category-title {
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  margin-top: 3rem !important;
  margin-bottom: 1.5rem !important;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(245, 235, 224, 0.3);
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.pricing-table thead {
  background: linear-gradient(135deg, rgba(224, 122, 95, 0.9) 0%, rgba(176, 137, 104, 0.9) 100%);
}

.pricing-table thead th {
  padding: 1.2rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.pricing-table tbody tr {
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.pricing-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.pricing-table tbody td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid rgba(245, 235, 224, 0.2);
  color: #f5ebe0;
  text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.2);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Highlighted pricing rows */
.pricing-popular {
  background: rgba(224, 122, 95, 0.2) !important;
  border-left: 4px solid #e07a5f;
}

.pricing-popular:hover {
  background: rgba(224, 122, 95, 0.3) !important;
}

.pricing-best-value {
  background: rgba(176, 137, 104, 0.2) !important;
  border-left: 4px solid #b08968;
}

.pricing-best-value:hover {
  background: rgba(176, 137, 104, 0.3) !important;
}

.pricing-highlight {
  background: rgba(245, 235, 224, 0.1) !important;
}

/* Pricing badges */
.popular-badge,
.best-value-badge,
.trial-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
  text-shadow: none;
}

.popular-badge {
  background: linear-gradient(135deg, #e07a5f 0%, #d4695b 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(224, 122, 95, 0.4);
}

.best-value-badge {
  background: linear-gradient(135deg, #b08968 0%, #9c7a5e 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(176, 137, 104, 0.4);
}

.trial-badge {
  background: linear-gradient(135deg, #ede0d4 0%, #e6ccb2 100%);
  color: #7f5539;
  box-shadow: 0 2px 8px rgba(237, 224, 212, 0.4);
}

/* Responsive pricing tables */
@media (max-width: 768px) {
  .pricing-table {
    font-size: 0.9rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 0.8rem 0.6rem;
  }

  .pricing-table .price {
    font-size: 1.1rem;
  }
}

.pricing-table-register-button-centered {
  text-align: center;
  display: flex;
  justify-content: center;
}

/* Map Embed */
.map-embed {
  margin: 2rem 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(127, 85, 57, 0.1);
}

.map-embed iframe,
.map-iframe {
  width: 100%;
  height: 400px;
  border: none;
  border: 0;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .circle-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }

  .circle-item {
    max-width: 350px;
    margin: 0 auto;
  }

  .circle-title {
    font-size: 1.1rem;
  }

  .circle-subtitle {
    font-size: 0.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .detail-content {
    padding: 2rem 1.5rem;
  }

  .faq-item,
  .training-item {
    padding: 1.5rem;
  }

  .tagline-large {
    font-size: 1.4rem;
  }

  .main-container {
    padding: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  .circle-grid {
    gap: 1.5rem;
  }

  .circle-item {
    padding: 1.5rem;
  }

  .circle-title {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .detail-content {
    padding: 1.5rem 1rem;
  }

  .back-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .register-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* Print Styles - Keep existing */
/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* ========================================================================
   BLACK FRIDAY PROMOTION STYLES - REMOVE AFTER 30.11.2025
   ======================================================================== */

/* Sticky Top Banner */
.black-friday-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.black-friday-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.black-friday-icon {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.black-friday-text {
  font-size: 1rem;
  line-height: 1.4;
}

.black-friday-text strong {
  color: #FFD700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.black-friday-email {
  color: #FFD700 !important;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.black-friday-email:hover {
  color: #FFA500 !important;
}

.black-friday-close {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.5rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.black-friday-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Adjust body padding when banner is visible */
body {
  padding-top: 70px;
}

/* Badge on Cjenik Circle */
.black-friday-badge {
  position: absolute;
  top: 30%;
  right: 38%;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  z-index: 10;
  animation: bounce 2s infinite;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Promotion Box on Pricing Page */
.black-friday-promo-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 3px solid #FFD700;
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0 3rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.black-friday-promo-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.black-friday-promo-icon {
  font-size: 4rem;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.black-friday-promo-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.black-friday-promo-title {
  color: #FFD700 !important;
  font-size: 2rem !important;
  margin: 0 0 1rem 0 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.black-friday-promo-text {
  color: white !important;
  font-size: 1.1rem !important;
  margin-bottom: 1rem !important;
  line-height: 1.6 !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.black-friday-promo-text strong {
  color: #FFD700 !important;
  font-size: 1.3rem;
}

.black-friday-promo-cta {
  color: white !important;
  font-size: 1rem !important;
  margin: 0 !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.black-friday-promo-email {
  color: #FFD700 !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-shadow: none !important;
}

.black-friday-promo-email:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.05);
  color: #FFA500 !important;
}

/* Responsive Black Friday Styles */
@media (max-width: 768px) {
  .black-friday-banner {
    padding: 0.8rem 1rem;
  }

  .black-friday-text {
    font-size: 0.85rem;
  }

  .black-friday-text strong {
    font-size: 0.95rem;
  }

  .black-friday-icon {
    font-size: 1.2rem;
  }

  body {
    padding-top: 60px;
  }

  .black-friday-promo-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .black-friday-promo-icon {
    font-size: 3rem;
  }

  .black-friday-promo-title {
    font-size: 1.5rem !important;
  }

  .black-friday-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    top: 8%;
    right: 23%;
  }
}

@media (max-width: 480px) {
  .black-friday-text {
    font-size: 0.75rem;
  }

  .black-friday-text strong {
    display: block;
    margin-bottom: 0.3rem;
  }

  .black-friday-promo-text strong {
    font-size: 1.1rem;
  }
}

/* END BLACK FRIDAY STYLES */

