/*
Theme Name: AnnDy Extreme
Theme URI: 
Author: AnnDy Extreme Wypożyczalnia
Author URI: 
Description: Niestandardowy motyw Brutalist Poster dla wypożyczalni quadów i skuterów śnieżnych.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anndy-extreme
*/

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@700&f[]=satoshi@400,500,700&display=swap');

:root {
  --base: #E4E2DD;
  --primary: #1E1E1E;
  --accent-red: #DB4A2B;
  --warm-orange: #F8A348;
  --soft-pink: #FF89A9;

  --font-headings: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;

  --transition-smooth: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: var(--accent-red);
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--base);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-red);
}

body {
  background-color: var(--base);
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.75;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUp var(--transition-smooth) forwards;
}

/* Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

@media (max-width: 767px) {
  .site-header {
    mix-blend-mode: difference;
    color: #fff;
    /* to contrast with diff mode */
  }
}

.brand-logo a {
  font-family: var(--font-headings);
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  display: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 2rem;
  }
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.lang-switch {
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.lang-switch:hover {
  color: var(--accent-red);
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  display: flex;
}

/* Mobile Menu Toggle Button visibility */
@media (min-width: 768px) {
  #menuToggle {
    display: none !important;
  }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--base);
  color: var(--primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
  transform: translateY(0);
}

.close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  transition: transform 0.3s;
}

.close-menu:hover {
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-headings);
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.3s, transform 0.3s;
}

.mobile-link:hover {
  color: var(--accent-red);
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 8vh;
  overflow: hidden;
}

/* Animated Gradient Blobs */
.bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(140px);
  mix-blend-mode: multiply;
  opacity: 0.8;
  animation: pulseBlob 15s infinite alternate ease-in-out;
}

.blob-1 {
  background: var(--accent-red);
  top: -10%;
  left: -10%;
}

.blob-2 {
  background: var(--warm-orange);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

.blob-3 {
  background: var(--soft-pink);
  top: 40%;
  left: 30%;
  width: 50vw;
  height: 50vw;
  animation-delay: -10s;
}

@keyframes pulseBlob {
  0% {
    opacity: 0.6;
    transform: translate(0, 0) scale(1);
  }

  100% {
    opacity: 0.9;
    transform: translate(5%, 5%) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
}

.hero-title {
  font-size: clamp(3.5rem, 12vw, 140px);
  margin-bottom: 2rem;
  color: var(--primary);
  line-height: 0.85;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: clamp(5rem, 14vw, 200px);
  }
}

.hero-title-line-1 {
  display: block;
}

.hero-title-line-2 {
  display: block;
  text-indent: 15vw;
}

.hero-subtext {
  max-width: 400px;
  font-size: 20px;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Interactive CTA Button */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background-color: var(--primary);
  color: var(--base);
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease-out;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  z-index: 0;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  color: var(--accent-red);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  color: var(--accent-red);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-secondary svg {
  transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

/* Hero Background Image enhancements */
.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  /* Behinds blobs */
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.3);
  opacity: 0.25;
  mix-blend-mode: luminosity;
}

/* Hero dark gradient overlay for readablity */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(228, 226, 221, 0.9) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Base Sections Wrapper */
.base-section {
  padding: 6rem 5vw;
}

/* Product Grid */
.product-grid-section {
  position: relative;
  z-index: 10;
}

.products-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px 16px;
  position: relative;
}

@media (min-width: 768px) {
  .products-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  display: block;
  cursor: pointer;
}

.product-image-cont {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: #d9d6d0;
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: var(--soft-pink);
}

.product-price {
  font-family: var(--font-body);
  color: #444444;
  font-size: 14px;
}

/* Category Divider */
.category-divider {
  padding: 128px 5vw;
  background: radial-gradient(circle at center, rgba(248, 163, 72, 0.2) 0%, transparent 60%);
  display: flex;
  align-items: center;
}

.divider-title {
  font-size: clamp(4rem, 12vw, 250px);
  line-height: 0.8;
  opacity: 0.9;
  color: var(--primary);
}

/* Campaign Block */
.campaign-block {
  background-color: #D9D6D0;
  padding: 8rem 5vw;
  position: relative;
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .campaign-grid {
    grid-template-columns: 8fr 4fr;
    gap: 2rem;
  }
}

.campaign-headline {
  font-size: clamp(2rem, 5vw, 48px);
  line-height: 1;
  max-width: 700px;
}

@media (min-width: 992px) {
  .campaign-headline {
    font-size: clamp(2.5rem, 3.5vw, 56px);
  }
}

.campaign-links {
  display: flex;
  flex-direction: column;
}

.campaign-link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(30, 30, 30, 0.2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.2rem;
  transition: padding-left 0.3s ease;
}

.campaign-link-item:hover {
  padding-left: 1rem;
}

.circle-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
}

.campaign-link-item:hover .circle-icon {
  background-color: var(--primary);
  color: var(--base);
}

/* Footer Section */
.site-footer {
  background-color: var(--primary);
  color: var(--base);
  padding: 6rem 5vw 2rem;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  position: relative;
  z-index: 10;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-col .brand-logo {
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: rgba(228, 226, 221, 0.5);
  /* mutated base */
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 16px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 10;
}

.massive-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-headings);
  font-size: clamp(10rem, 35vw, 600px);
  color: rgba(255, 255, 255, 0.03);
  z-index: 1;
  pointer-events: none;
  line-height: 0.75;
}

.copyright {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(228, 226, 221, 0.5);
  position: relative;
  z-index: 10;
}

/* Video Section */
.video-section {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--base);
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
  filter: grayscale(80%) sepia(20%) hue-rotate(340deg);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.6);
  z-index: -1;
}

.video-content {
  text-align: center;
  max-width: 800px;
  padding: 0 5vw;
}

.video-headline {
  font-size: clamp(3rem, 8vw, 120px);
  margin-bottom: 2rem;
  color: var(--base);
}

.video-subtext {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Accordion (FAQ in Campaign) */
.accordion-wrapper {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brutalist-accordion {
  border: 3px solid var(--primary);
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.brutalist-accordion[open] {
  background-color: var(--primary);
  color: var(--base);
}

.brutalist-accordion summary {
  padding: 1.5rem 2rem;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  /* hide default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brutalist-accordion summary::-webkit-details-marker {
  display: none;
}

.brutalist-accordion summary::after {
  content: '+';
  font-size: 2rem;
  transition: transform 0.3s;
}

.brutalist-accordion[open] summary::after {
  transform: rotate(45deg);
  content: '+';
}

.brutalist-accordion:hover:not([open]) {
  background-color: rgba(30, 30, 30, 0.05);
}

.accordion-content {
  padding: 0 2rem 2rem 2rem;
  border-top: 3px solid var(--primary);
}

.brutalist-accordion[open] .accordion-content {
  border-top-color: var(--base);
}

.accordion-content p {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Brutalist Contact Section */
.contact-block {
  background-color: var(--base);
  padding: 8rem 5vw;
}

.contact-grid-brutal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .contact-grid-brutal {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
}

.contact-brutal-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-form-wrapper {
  min-width: 0;
}

.contact-title {
  font-size: clamp(3rem, 6vw, 80px);
  line-height: 0.9;
  color: var(--primary);
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.contact-details-brutal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cd-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cd-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-red);
  letter-spacing: 0.1em;
}

.cd-item p,
.cd-item a {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1.2;
}

.cd-item a.hover-red {
  transition: color 0.3s;
}

.cd-item a.hover-red:hover {
  color: var(--accent-red);
}

.form-brutal-card {
  background-color: var(--base);
  border: 4px solid var(--primary);
  padding: 3rem;
  box-shadow: 15px 15px 0px var(--primary);
}

.brutalist-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--base);
  border: 2px solid var(--primary);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--primary);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--accent-red);
}

/* Price Lists in Modals */
.price-list {
  margin-top: 1.5rem;
  list-style-type: none;
  padding: 0;
  font-size: 1.2rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(228, 226, 221, 0.2);
}

.price-list li:last-child {
  border-bottom: none;
}

.rules-text {
  font-size: 0.9rem !important;
  opacity: 0.8;
  margin-top: 2rem !important;
}

/* Modals for Product Grid */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.modal-content-box {
  background-color: var(--base);
  border: 4px solid var(--primary);
  width: 100%;
  max-width: 600px;
  padding: 3rem 2rem;
  position: relative;
  display: none;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-content-box.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  transition: transform 0.3s;
}

.close-modal:hover {
  transform: rotate(90deg) scale(1.1);
}

.modal-content-box h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.modal-content-box p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}