/* ====================================
   FRODO Project - WordPress Theme
   Based on Adobe XD Design
   ==================================== */

/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap");

/* ====================================
   CSS Variables (from XD Design)
   ==================================== */
:root {
  /* Colors */
  --color-primary: #2A7DF8;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-accent: #DCFF05;
  --color-gray: #efefef;
  --color-text: #000000;
  --color-text-light: #666666;
  --color-light: #F8F8F8;
  
  /* Typography */
  --font-family-primary: 'Poppins', sans-serif;
  --font-family-headings: 'transducer-condensed', sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  
  /* Font Sizes */
  --font-size-base: 23px;
  --font-size-h1: 5rem;
  --font-size-h2: 2.3rem;
  --font-size-h3: 2rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1rem;
  --font-size-small: 0.9375rem;
  
  /* Line Heights */
  --line-height-tight: 30px;
  --line-height-normal: 36px;
  --line-height-relaxed: 1.6;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Breakpoints (for reference) */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

/* ====================================
   Reset & Base Styles
   ==================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Utility Classes */
.bg-gray {
  background-color: #efefef;
}

.bg-black {
  background-color: #000;
  color: #fff !important;
}

.btn.btn-frodo {
  font-family: "Poppins";
  border-radius: 0 !important;

  color: #DCFF05;
  border-color: #DCFF05 !important;

}

.btn.btn-frodo:hover,
.btn.btn-frodo:focus,
.btn.btn-frodo:active {
  background-color: #DCFF05;
  color: #000;
  border-color: #DCFF05;
  font-weight: 400;
}

/**********************/
/*     Navigation     */
/**********************/
.navbar {
  background-color: transparent;
  font-size: 1rem;
  line-height: 0.875rem;
  transition: all 0.4s ease;
  padding: 2rem 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.navbar.navbar-transparent {
  background-color: transparent;
  box-shadow: none;
}

.navbar.navbar-light {
  background-color: #fff;
}

.navbar .navbar-brand {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  position: relative;
  z-index: 1001;
}

.navbar .logo-image img {
  height: 50px;
  transition: all 0.3s ease;
}

/* Logo na transparentním navbaru - invertovat/zesvětlit */
.navbar.navbar-transparent .logo-image img,
.footer-logo img {
  filter: brightness(0) invert(1);
}

/* Logo na scrolled navbaru - normální */
.navbar.scrolled .logo-image img {
  filter: none;
  height: 45px;
}

.offcanvas-collapse {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100%;
  padding-top: 80px;
  padding-right: 1rem;
  padding-left: 1rem;
  overflow-y: auto;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 999;
}

/* Bílé odkazy pouze pro mobilní menu */
.offcanvas-collapse .nav-link {
  color: #fff !important;
}

.offcanvas-collapse.open,
.offcanvas-collapse.show {
  visibility: visible;
  transform: translateX(-100%);
}

.navbar .navbar-nav {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-left: 1rem;
  font-weight: 600;
}

.navbar.scrolled .nav-item .nav-link {
  color: #000;
}

.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
  color: #DCFF05;
}

.navbar.scrolled .nav-item .nav-link:hover,
.navbar.scrolled .nav-item .nav-link.active {
  color: #DCFF05;
}

.navbar-nav-scroll {
  text-align: center;
}

.navbar-nav-scroll li {
  padding: 1rem 0;
  font-size: 1.3rem;
}

/* Remove border from toggler */
.navbar-toggler {
  border: 0 !important;
  position: relative;
  z-index: 1000;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Lines of the Toggler */
.toggler-icon {
  width: 30px;
  height: 3px;
  background-color: #fff;
  display: block;
  transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar {
  margin: 5px auto;
}

/* State when navbar is collapsed (three lines) - DEFAULT */
.navbar-toggler.collapsed .top-bar,
.navbar-toggler[aria-expanded="false"] .top-bar {
  transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar,
.navbar-toggler[aria-expanded="false"] .middle-bar {
  opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar,
.navbar-toggler[aria-expanded="false"] .bottom-bar {
  transform: rotate(0);
}

/* State when navbar is opened (X cross) */
.navbar-toggler:not(.collapsed) .top-bar,
.navbar-toggler[aria-expanded="true"] .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggler:not(.collapsed) .middle-bar,
.navbar-toggler[aria-expanded="true"] .middle-bar {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .bottom-bar,
.navbar-toggler[aria-expanded="true"] .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

/* Color of Toggler - always white */
.navbar-toggler .toggler-icon {
  background-color: #fff;
}
/*****************/
/*    TYPO     */
/*****************/

body {
  color: #000000;
  font-family: "Poppins";
  font-size: 1.15rem;
}

.strong,
b,
strong {
  font-family: "Poppins";
  font-weight: 400;
}

.small {
  font-size: 0.9375rem;
}

.smaller {
  font-size: 0.75rem;
}

.font-bigger {
  font-size: 1.25em;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-headings);
  margin-top: 0;
  display: block;
  padding-top: 5px;
  font-weight: 900;
  font-variation-settings: 'wght' 900;
}

.h1,
h1 {
  font-size: 4rem;
}

.h2,
h2 {
  font-size: 2.3rem;
}

.h3,
h3 {
  font-size: 2rem;
}

.h4,
h4 {
  font-size: 1.5rem;
}

.h5,
h5 {
  font-size: 1rem;
  font-family: "Poppins";
}

.h6,
h6 {
  font-size: 0.9375rem;
}

li {
  padding-bottom: 1rem;
}

.li-space-lg li {
  margin-bottom: 0.5rem;
}

a {
  color: rgba(60, 60, 59);
  text-decoration: underline;
}

a:hover,
a:focus,
a:active {
  color: rgba(60, 60, 59);
  text-decoration: none;
}

.no-line {
  text-decoration: none;
}

.no-line:hover {
  text-decoration: none;
}

/*****************/
/*    Header     */
/*****************/
.header {
  position: relative;
  animation: fadeIn 2s;

}

.header .header-bg {
  background-image: url("../images/04032024_Snowing_the_Goalie-2023_154539.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 600px;
}

.header .headline {
  display: flex;
  align-items: center;
}

/******************/
/*     Footer     */
/******************/
.footer {
  padding-top: 30px;
  padding-bottom: 2rem;
  background-color: #000;
  border-top: 10px solid #DCFF05;
}

.footer .col-md-12 {
  text-align: center;
}

.footer p,
.footer a,
.footer ul {
  color: #fff;
}

/***********************/
/*     Extra Pages     */
/***********************/

.page-content {
  min-height: calc(100vh - 60px);
}

.page-header {
  padding-top: 100px;
}

.store-cards {
  padding-bottom: 4rem;
}

/* ANIMATION */
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition-property: height, visibility;
    transition-duration: 0.35s;
  }
}



@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.container-responsive-iframe {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*************************/
/*     Media Queries     */
/*************************/

/* Min-width 768px */
@media (min-width: 768px) {
  /* Header */
  .header .header-content {
    padding-top: 15rem;
    padding-bottom: 13rem;
  }

  /* end of header */

}
/* end of min-width 768px */

@media (max-width: 991px) {
  /* Header */
  .order-m-1 {
    order: -1;
  }

    .navbar .logo-image img {
  height: 38px;
}
.headline {
  padding: calc(4rem + 38px) 2rem 4rem 2rem;
}

.top-newsbar {padding-top: 6rem;}
}

/* end of min-width 768px */
/* Min-width 992px */
@media (min-width: 992px) {
  /* Header */
  .header .header-content {
    padding-top: 18rem;
    padding-bottom: 16rem;
  }

  /* Header */
  .header {
    overflow: hidden;
  }

  .page-header {
    padding-top: 150px;
  }

  /* Navigation */
  .navbar {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .navbar.navbar-transparent {
    background-color: transparent;
  }

  .navbar.top-nav-collapse,
  .navbar.scrolled {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .old-navbar-collapse-class {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }

  .offcanvas-collapse {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    background-color: transparent;
    backdrop-filter: none;
    overflow-y: visible;
    visibility: visible;
  }

  .offcanvas-collapse.open,
  .offcanvas-collapse.show {
    transform: none;
  }
  
  /* Na desktopu bílé odkazy místo černých (protože navbar má bílé logo) */
  .offcanvas-collapse .nav-link {
    color: #ffffff !important;
  }

  .navbar .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar .nav-item .nav-link {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }

  .navbar .social-icons {
    margin-left: 0.5rem;
  }

  .navbar .fa-stack {
    margin-right: 0;
    margin-left: 0.25rem;
  }

  .navbar-nav-scroll li {
    font-size: 1.1rem;
  }
  /* end of navigation */

}
/* end of min-width 992px */

/* Min-width 1200px */
@media (min-width: 1200px) {
  /* General Styles */
  .container {
    max-width: 1140px;
  }
  /* end of general styles */

  /* Header */
  .header {
    height: 100vh;
  }

  .header .header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .h1,
  h1 {
    font-size: 5rem;
  }

  .header p {
    font-size: 2rem;
  }

  .navbar-nav-scroll li {
    font-size: 1.3rem;
  }
}
/* End of min-width 1200px */

/* ====================================
   HERO SECTION (podle XD designu)
   ==================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.hero-section.hero-loaded {
  opacity: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}

/* Znak 44 v pravém spodním rohu */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65vh;
  height: 60vh;
  min-height: 30vh;
  background-image: url("../images/44.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
  z-index: 2;
  animation: fadeInRight 1.5s ease-out;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: var(--spacing-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.hero-text-wrapper {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: auto;
}

.hero-title {
  font-family: var(--font-family-headings);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wght' 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title .highlight-yellow {
  color: var(--color-accent);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-xl);
}

.hero-subtitle .highlight-link {
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: var(--font-weight-bold);
  transition: all var(--transition-fast);
}

.hero-subtitle .highlight-link:hover {
  color: var(--color-black);
  background-color: var(--color-accent);
  padding: 0.2rem 0.5rem;
  text-decoration: none;
}

.scroll-indicator {
  display: inline-block;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: transform var(--transition-fast);
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(5px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 0.9;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ====================================
   ABOUT SECTION (O projektu)
   ==================================== */
.about-section {
  position: relative;
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-light);
  overflow: hidden;
  min-height: 100vh;
}

.about-text {
  padding-right: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: var(--font-family-headings);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wght' 900;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  color: var(--color-black);
}

.section-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-lg);
  color: var(--color-text);
  font-weight: var(--font-weight-normal);
}

.btn-frodo {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--color-accent);
  color: var(--color-black);
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-frodo:hover {
  background-color: var(--color-black);
  color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(220, 255, 5, 0.3);
}

.about-text {
  position: relative;
  z-index: 2;
}

.about-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  z-index: 2;
}

/* Fade in zprava při scrollu */
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

/* Dekorativní prvky (neonově žluté šmouhy) */
/* Žlutá šmouha v levém dolním rohu about sekce */
.about-section {
  position: relative;
  overflow: hidden;
}


.about-section::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30vh;
  height: 30vh;
  background: var(--color-accent);
  border-radius: 0;
  z-index: 0;
}

.about-section::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60vh;
  height: 60vh;
  background: var(--color-light);
  border-radius: 50%;
  z-index: 1;
}

/* ====================================
   CALENDAR SECTION (Tréninky)
   ==================================== */
.calendar-section {
  position: relative;
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
  overflow: hidden;
}

.calendar-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 30vh;
  height: 30vh;
  background: var(--color-accent);
  border-radius: 0;
  z-index: 0;
}

.calendar-section::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 60vh;
  height: 60vh;
  background: var(--color-white);
  border-radius: 50%;
  z-index: 1;
}

.calendar-section .container {
  position: relative;
  z-index: 2;
}

.calendar-column {
  padding: var(--spacing-lg);
}

.calendar-title {
  font-family: var(--font-family-headings);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wght' 900;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  color: var(--color-black);
}

.calendar-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: var(--spacing-lg);
  color: var(--color-text);
}

.calendar-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calendar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-normal);
  font-weight: var(--font-weight-medium);
}

/* Žluté buttony - Budoucí tréninky */
.calendar-item.highlight-item {
  background-color: var(--color-accent);
  color: var(--color-black);
}

.calendar-item.highlight-item:hover {
  background-color: var(--color-black);
  color: var(--color-accent);
  transform: translateX(5px);
}

/* Černé buttony - Máme za sebou */
.calendar-item.dark-item {
  background-color: var(--color-black);
  color: var(--color-white);
}

.calendar-item.dark-item:hover {
  background-color: var(--color-accent);
  color: var(--color-black);
  transform: translateX(5px);
}

.calendar-date {
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
}

.calendar-location {
  font-size: 0.9rem;
}

/* ====================================
   INSTAGRAM SECTION
   ==================================== */
.instagram-section {
  background-color: var(--color-black);
  padding: var(--spacing-xxl) 0;
  position: relative;
}

.instagram-title {
  font-family: var(--font-family-headings);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wght' 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--color-white);
}

.instagram-title a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: text-decoration var(--transition-fast);
}

.instagram-title a:hover {
  text-decoration: none;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 20px;
  transition: transform var(--transition-normal);
}

.instagram-item:hover {
  transform: scale(1.05);
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====================================
   MERCH SECTION (Dresy)
   ==================================== */
.merch-section {
  background-color: var(--color-black);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.merch-text {
  padding-right: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.merch-title {
  font-family: var(--font-family-headings);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wght' 900;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  color: var(--color-white);
}

.merch-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-lg);
  color: var(--color-white);
  font-weight: var(--font-weight-normal);
}

.btn-merch {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--color-accent);
  color: var(--color-black);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  border-radius: 50px;
  transition: all var(--transition-normal);
  cursor: pointer;
  text-transform: uppercase;
}

.btn-merch:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.merch-image {
  position: relative;
  z-index: 2;
}

.jersey-wrapper {
  position: relative;
  text-align: center;
}

.jersey-wrapper img {
  width: 80%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* ====================================
   FOOTER SECTION
   ==================================== */
.footer-section {
  background-color: var(--color-black);
  padding: var(--spacing-xl) 0;
  color: var(--color-white);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: block;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-center {
  display: flex;
  align-items: center;
}

.footer-title {
  font-family: var(--font-family-headings);
  font-size: 1.5rem;
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
  margin: 0;
  color: var(--color-white);
}

.footer-contact {
  display: flex;
  align-items: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition-fast);
}

.footer-contact-item:hover {
  color: var(--color-accent);
}

.footer-contact-item svg {
  fill: var(--color-accent);
  min-width: 20px;
  transition: fill var(--transition-fast);
}

.footer-contact-item:hover svg {
  fill: var(--color-white);
}

/* ====================================
   RESPONSIVE - Hero & About
   ==================================== */

/* Tablet */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* Desktop */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Footer - stack all under 1200px for better layout */
  .footer-left,
  .footer-center,
  .footer-contact {
    text-align: center;
    margin-bottom: var(--spacing-md);
  }
  
  .footer-left {
    align-items: center;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 5.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
  
  .section-description {
    font-size: 1.2rem;
  }
  
  /* Instagram grid - 6 columns on desktop */
  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .instagram-title {
    font-size: 3rem;
  }
  
  /* Merch section on desktop */
  .merch-title {
    font-size: 3rem;
  }
  
  /* Footer on desktop - horizontal layout */
  .footer-content {
    flex-direction: row;
  }
  
  .footer-logo img {
    height: 60px;
  }
  
  .footer-title {
    font-size: 1.5rem;
  }
  
  .footer-contacts {
    flex-direction: row;
    gap: 2rem;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 6.5rem;
  }
  
  .section-title {
    font-size: 4rem;
  }
}


/* Mobile */
@media (max-width: 767px) {
  .hero-section {
    min-height: 80vh;
  }
  
  /* Menší znak 44 na mobilu */
  .hero-section::after {
    width: 80px;
    height: 80px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-section {
    min-height: auto;
  }
  
  .about-text {
    padding-right: 0;
    margin-bottom: var(--spacing-lg);
  }
  
  .about-image {
    position: relative;
    width: 100%;
    bottom: auto;
    right: auto;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  /* Calendar na mobilu */
  .calendar-section {
    padding: var(--spacing-lg) 0;
  }
  
  .calendar-column {
    padding: var(--spacing-sm);
  }
  
  .calendar-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  
  .calendar-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .calendar-date {
    font-size: 0.9rem;
  }
  
  .calendar-location {
    font-size: 0.85rem;
  }
  
  /* Instagram grid - 2 columns on mobile */
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .instagram-title {
    font-size: 1.8rem;
  }
  
  /* Merch section on mobile */
  .merch-text {
    padding-right: 0;
    margin-bottom: var(--spacing-lg);
  }
  
  .merch-title {
    font-size: 2rem;
  }
  
  .merch-description {
    font-size: 1rem;
  }
  
  /* Footer on mobile */
  .footer-left,
  .footer-center,
  .footer-contact {
    text-align: center;
    margin-bottom: var(--spacing-md);
  }
  
  .footer-left {
    align-items: center;
  }
  
  .footer-logo img {
    height: 50px;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .footer-contact-item {
    justify-content: center;
    font-size: 0.9rem;
  }
  
  /* Zmenšit dekorativní prvky na mobilu */
  .about-section::before,
  .section-decoration-top-left {
    width: 200px;
    height: 200px;
  }
}

/* Tablet - střední velikost znaku 44 */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section::after {
    width: 120px;
    height: 120px;
    bottom: 2rem;
    right: 2rem;
  }
}
