:root {
  --bg: #0b0b0b;
  --card: #181818;
  --text: #eaeaea;
  --muted: #b0b0b0;
  --accent: #e53935;
  --accent-dark: #d32f2f;
  --radius: 18px;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #060606;
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

/* Plain black background */
body::before {
  display: none;
}

body::after {
  display: none;
}

/* Keep all page content above the decorative background layers */
body > * {
  position: relative;
  z-index: 1;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 80px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-brand {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  color: var(--accent);
  font-weight: 500;
}

.nav-user {
  font-size: 12px;
  color: var(--muted);
  margin-left: 4px;
}

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(229, 57, 53, 0.35);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(229, 57, 53, 0.35);
}

.btn-block {
  width: 100%;
  text-align: center;
  padding: 14px;
}

main {
  flex: 1;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-section .hero-actions {
  margin-top: 10px;
}

.hero-section .hero-actions .btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out both;
}

.hero-section .hero-actions .btn:nth-child(1) {
  animation-delay: 0.7s;
}

.hero-section .hero-actions .btn:nth-child(2) {
  animation-delay: 0.85s;
}

.hero-section .hero-actions .btn:nth-child(3) {
  animation-delay: 1s;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(28px, 8vw, 64px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 50%, var(--text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-text p {
  font-size: clamp(14px, 3vw, 18px);
  color: var(--muted);
  margin: 8px 0;
  line-height: 1.6;
  max-width: 600px;
}

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

/* Hero image entrance animation */
@keyframes heroImageEntrance {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Sections */
.section {
  padding: 80px;
}

.section h2, .section h3 {
  font-size: 38px;
  text-align: center;
}

.section h3 span {
  color: var(--accent);
}

.section .subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 30px;
}

/* 4 cards in one horizontal row (masterclasses) */
.cards-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Training: 14 cards, 4 per row */
.cards-grid.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: linear-gradient(180deg, #202020, #141414);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  border: 0px solid transparent;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 80px rgba(229, 57, 53, 0.4);
  border: 1px solid rgba(229, 57, 53, 0.4);
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.08);
}

.card-body {
  padding: 16px;
}

.card-body h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* Card Details Styles */
.card-details {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 8px;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.85;
}

.detail-row span {
  flex: 1;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}


/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  margin: 0 auto;
  padding: 60px 80px;
}

.footer-block h5 {
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-block a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-block a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.social-links a {
  font-size: 24px !important;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: var(--accent) !important;
}

.studio {
  margin-bottom: 28px;
}

.studio strong {
  display: block;
  margin-bottom: 8px;
}

.studio p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.studio .metro {
  font-size: 13px;
  color: #888;
}

.studio .phone {
  margin-top: 8px;
}

.copyright {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #777;
  background: #000;
}

/* Detail page */
.detail-page {
  padding: 60px 80px 80px;
  min-height: 60vh;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 20px;
  display: inline-block;
}

.back-link:hover {
  color: var(--accent);
}

.detail-page h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.detail-desc {
  color: var(--muted);
  margin-bottom: 20px;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.detail-meta .price {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
}

.detail-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.detail-booking {
  background: linear-gradient(180deg, #202020, #141414);
  padding: 32px;
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
}

.detail-booking h3 {
  margin-bottom: 24px;
  font-size: 22px;
}

.booking-form .form-input,
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="number"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #0b0b0b;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 16px;
}

.booking-form .form-row {
  margin-bottom: 16px;
}

.booking-form .form-row.amount {
  font-size: 18px;
  margin-top: 20px;
}

.booking-form button[type="submit"] {
  margin-top: 24px;
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: #888;
}

.booking-form p {
  margin-bottom: 8px;
}

.booking-form .errorlist {
  list-style: none;
  color: #ef5350;
  font-size: 12px;
  margin-top: 4px;
}

.message {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.message.error {
  background: rgba(229, 57, 53, 0.2);
  color: #ef5350;
}

.message.success {
  background: rgba(0, 200, 100, 0.2);
  color: #6ee7a0;
}

/* Payment page */
.payment-page {
  padding: 80px 40px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-card {
  background: linear-gradient(180deg, #202020, #141414);
  padding: 48px;
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
}

.payment-card h2 {
  margin-bottom: 24px;
}

.payment-card .booking-summary,
.payment-card .amount {
  margin-bottom: 12px;
  color: var(--muted);
}

.payment-card .note {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.payment-card .small {
  margin-top: 20px;
  font-size: 12px;
  color: #666;
}

/* Legal & FAQ pages */
.legal-page {
  padding: 60px 80px 80px;
  min-height: 60vh;
  flex: 1;
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-page .back-link {
  display: inline-block;
  margin-bottom: 24px;
}

.legal-page h1 {
  font-size: 32px;
  margin-bottom: 32px;
}

.legal-content {
  color: var(--muted);
  line-height: 1.7;
}

.legal-content h2 {
  color: var(--text);
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 14px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.faq-content p {
  margin-bottom: 20px;
}

/* FAQ Accordion Styles */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question span:first-child {
  font-weight: 500;
  font-size: 16px;
  flex: 1;
  padding-right: 20px;
}

.faq-arrow {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  line-height: 1;
}

.faq-item.active .faq-arrow {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer-content {
  opacity: 1;
}

.faq-answer-content p {
  margin: 0 0 12px 0;
}

/* Hero Section - Landing Page */
.landing-page {
  width: 100%;
  background: transparent;
}

.hero-section {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  background: transparent;
}

.hero-bg {
  width: 100%;
  flex-shrink: 0;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.hero-bg img {
  opacity: 0.6;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;  
  mix-blend-mode: lighten;
  border: #000000 0px solid;
  background-color: transparent;
  animation: heroImageEntrance 1.2s ease-out both;
}

.hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0px 30px;
  flex-shrink: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  max-width: 700px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* ============= WIDTH-BASED MEDIA QUERIES ============= */

/* Tablet: 3 cards per row (769px - 1100px) */
@media (max-width: 1100px) {
  .cards-row-4,
  .cards-grid.cards-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .main-nav,
  .site-footer {
    padding: 10px 40px;
  }
  
  .footer-grid {
    padding: 0px;
  }

  .section {
    padding: 60px 40px;
  }

  .section h2 {
    font-size: 34px;
  }

  .section h3 {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .main-nav,
  .site-footer {
    padding: 10px 30px;
  }
  .section{
    padding: 40px 30px;
  }

  .section h2 {
    font-size: 32px;
  }

  .footer-grid {
    padding: 0px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-booking {
    position: static;
  }

  .detail-page {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .cards-row-4,
  .cards-grid.cards-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .card-body {
    padding: 12px;
  }

  .card-body h4 {
    font-size: 16px;
  }

  .card-details {
    font-size: 14px;
  }

  .detail-icon {
    width: 14px;
    height: 14px;
  }

  .hero-content {
    padding: 15px 25px;
  }

  .hero-text {
    gap: 16px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .main-nav {
    padding: 10px 20px;
  }

  .section.section-masterclasses {
    margin-top: -60px;
  }

  .nav-logo {
    height: 50px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
  }

  .nav-links.active {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    padding: 20px 0;
  }

  .nav-links li {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.active li:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-link {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    display: block;
  }

  .section {
    padding: 40px 20px;
  }

  .section h2 {
    font-size: 30px;
  }

  .section h3 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .section .subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

@media (max-width: 650px) {
  .cards-row-4,
  .cards-grid.cards-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .card-body {
    padding: 16px !important;
  }

  .card-body h4 {
    font-size: 16px !important;
  }

  .card-details {
    font-size: 14px !important;
  }

  .detail-icon {
    width: 13px;
    height: 13px;
  }

  .section h2 {
    font-size: 26px;
  }

  .section h3 {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .cards-row-4,
  .cards-grid.cards-4 {
    gap: 12px;
  }

  .card-body {
    padding: 12px 8px !important;
  }

  .card-body h4 {
    font-size: 14px !important;
  }

  .card-details {
    font-size: 12px !important;
  }

  .detail-icon {
    width: 13px;
    height: 13px;
  }

  .section h2 {
    font-size: 22px;
  }

  .section h3 {
    font-size: 24px;
  }

  .hero-content {
    padding: 15px 20px;
  }

  .hero-text {
    gap: 14px;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 1.4;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 13px !important;
  }
}

/* ============= HEIGHT-BASED MEDIA QUERIES ============= */

/* Very Tall Screens (>1000px height) */
@media (min-height: 1000px) {
  .hero-bg {
    max-height: 65vh;
  }
  
  .hero-content {
    padding: 25px 30px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
}

/* Tall Screens (900px-999px height) */
@media (min-height: 900px) and (max-height: 999px) {
  .hero-bg {
    max-height: 72vh;
  }
  
  .hero-content {
    padding: 0px 30px;
  }
  
  .hero-text {
    gap: 6px !important;
  }

  .hero-subtitle {
    font-size: 18px !important;
    line-height: 1.4;
  }

  .hero-actions .btn {
    padding: 8px 20px !important;
    font-size: 18px !important;
  }
}

/* Standard Desktop (700px-899px height) */
@media (min-height: 700px) and (max-height: 899px) {
  .hero-bg {
    max-height: 65vh;
  }
  
  .hero-content {
    padding: 15px 30px;
  }

  .hero-text {
    gap: 6px !important;
  }

  .hero-subtitle {
    font-size: 16px !important;
    line-height: 1.4;
  }

  .hero-actions .btn {
    padding: 6px 18px !important;
    font-size: 16px !important;
  }
}

/* Short Desktop/Tablet Landscape (600px-699px height) */
@media (max-height: 699px) and (min-height: 600px) {
  .main-nav {
    padding: 8px 60px;
  }
  
  .nav-logo {
    height: 60px;
  }
  
  .hero-bg {
    max-height: 62vh;
  }
  
  .hero-content {
    padding: 12px 30px;
  }
  
  .hero-text {
    gap: 8px !important;
  }
  
  .hero-subtitle {
    font-size: 14px !important;
    line-height: 1.5;
  }
  
  .hero-actions .btn {
    padding: 10px 24px !important;
    font-size: 14px !important;
  }
}

/* Mobile Landscape / Small Laptop (500px-599px height) */
@media (max-height: 599px) and (min-height: 500px) {
  .main-nav {
    padding: 6px 40px;
  }
  
  .nav-logo {
    height: 50px;
  }
  
  .hero-bg {
    max-height: 58vh;
  }
  
  .hero-content {
    padding: 10px 25px;
  }
  
  .hero-text {
    gap: 10px;
  }
  
  .hero-subtitle {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
  
  .hero-actions {
    gap: 7px;
  }
  
  .hero-actions .btn {
    padding: 6px 20px !important;
    font-size: 12px !important;
  }
}

/* Short Mobile Landscape (400px-499px height) */
@media (max-height: 499px) and (min-height: 400px) {
  .main-nav {
    padding: 5px 20px;
  }
  
  .nav-logo {
    height: 40px;
  }
  
  .hero-bg {
    max-height: 55vh;
  }
  
  .hero-content {
    padding: 8px 20px;
  }
  
  .hero-text {
    gap: 8px;
  }
  
  .hero-subtitle {
    font-size: 12px !important;
    line-height: 1.3;
  }
  
  .hero-actions {
    gap: 8px;
  }
  
  .hero-actions .btn {
    padding: 6px 16px !important;
    font-size: 11px !important;
    min-width: 100px !important;
  }
}

/* Very Short Screens (300px-399px height) */
@media (max-height: 399px) and (min-height: 300px) {
  .main-nav {
    padding: 3px 15px;
  }
  
  .nav-logo {
    height: 32px;
  }
  
  .hero-bg {
    max-height: 50vh;
  }
  
  .hero-content {
    padding: 5px 15px;
  }
  
  .hero-text {
    gap: 6px;
  }
  
  .hero-subtitle {
    font-size: 10px !important;
    line-height: 1.2;
  }
  
  .hero-actions {
    gap: 6px;
    flex-direction: row;
  }
  
  .hero-actions .btn {
    padding: 4px 12px !important;
    font-size: 10px !important;
    min-width: 85px !important;
  }
}

/* Extremely Short Screens (<300px height) */
@media (max-height: 299px) {
  .main-nav {
    padding: 2px 10px;
  }
  
  .nav-logo {
    height: 28px;
  }
  
  .hero-bg {
    max-height: 45vh;
  }
  
  .hero-content {
    padding: 3px 10px;
  }
  
  .hero-text {
    gap: 4px;
  }
  
  .hero-subtitle {
    font-size: 10px !important;
    line-height: 1.1;
  }
  
  .hero-actions {
    gap: 4px !important;
    flex-direction: row;
  }
  
  .hero-actions .btn {
    padding: 3px 10px !important;
    font-size: 10px !important;
    min-width: 75px !important;
  }
}
