/* ============================================
   CAFE JARDEN DE LA RUE - MAIN STYLES
   ============================================ */

:root {
  /* Color Palette - Warm, Earthy, Elegant */
  --color-cream: #FDF8F3;
  --color-cream-dark: #F5EDE4;
  --color-brown-light: #D4A574;
  --color-brown: #8B5A2B;
  --color-brown-dark: #5D3A1A;
  --color-green: #4A6741;
  --color-green-light: #7D9B6D;
  --color-green-dark: #2D4228;
  --color-gold: #C9A962;
  --color-text: #3D2B1F;
  --color-text-light: #6B5344;
  --color-white: #FFFFFF;
  --color-black: #1A1A1A;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(93, 58, 26, 0.08);
  --shadow-md: 0 4px 20px rgba(93, 58, 26, 0.12);
  --shadow-lg: 0 8px 40px rgba(93, 58, 26, 0.16);
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  .btn {
    min-height: 48px;
  }
  
  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .social-link {
    min-width: 48px;
    min-height: 48px;
  }
  
  /* Disable hover effects on touch devices */
  .product-card:hover,
  .campaign-card-menu:hover,
  .feature-card:hover {
    transform: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-brown-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--color-text-light);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.section-title.left-aligned {
  justify-content: flex-start;
  text-align: left;
}

.title-decoration {
  color: var(--color-gold);
  font-size: 1.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(74, 103, 65, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(74, 103, 65, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-large {
  padding: 1.125rem 3rem;
  font-size: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-brown-dark);
}

.logo-icon {
  font-size: 1.75rem;
}

.logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green);
  transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-green);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-brown-dark);
  transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(135deg, rgba(93, 58, 26, 0.7) 0%, rgba(45, 66, 40, 0.8) 100%),
    url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1920&q=80') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(26, 26, 26, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-md);
  max-width: 800px;
}

.hero-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.title-line {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.title-main {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  text-align: center;
  opacity: 0.8;
  animation: float 2s ease-in-out infinite;
}

.hero-scroll span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg);
  margin: 0 auto;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   CAMPAIGNS SECTION
   ============================================ */

.campaigns-section {
  padding: var(--space-xl) 0;
  background: var(--color-cream-dark);
}

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.campaign-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.campaign-image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-green-light), var(--color-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-content {
  padding: var(--space-md);
}

.campaign-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.campaign-description {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.campaign-dates {
  font-size: 0.8rem;
  color: var(--color-green);
  font-weight: 500;
}

.no-campaigns {
  text-align: center;
  padding: var(--space-lg);
  color: var(--color-text-light);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  text-align: center;
  padding: var(--space-md);
  border-radius: 16px;
  transition: var(--transition-normal);
}

.feature-card:hover {
  background: var(--color-cream);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  padding: var(--space-xl) 0;
  background: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-images {
  position: relative;
  height: 500px;
}

.about-image {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-1 {
  width: 70%;
  height: 60%;
  top: 0;
  left: 0;
}

.about-image-2 {
  width: 60%;
  height: 50%;
  bottom: 0;
  right: 0;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-brown-light), var(--color-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.about-content {
  padding: var(--space-md) 0;
}

.about-text {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.about-signature {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-brown-light);
}

.signature-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.signature-name {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ============================================
   MENU PREVIEW SECTION
   ============================================ */

.menu-preview-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.menu-preview-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.menu-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.menu-preview-image {
  height: 180px;
  background: linear-gradient(135deg, var(--color-brown-light), var(--color-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.menu-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-preview-image .product-placeholder-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.8;
}

.menu-preview-content {
  padding: 1.25rem;
}

.menu-preview-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.menu-preview-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-green);
}

.menu-preview-cta {
  text-align: center;
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location-section {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.location-item {
  display: flex;
  gap: var(--space-sm);
}

.location-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.location-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.location-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-map {
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.map-placeholder span {
  font-size: 3rem;
}

.map-placeholder p {
  font-size: 1rem;
  color: var(--color-text-light);
}

.map-placeholder small {
  font-size: 0.8rem;
  color: var(--color-text-light);
  opacity: 0.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding: var(--space-xl) 0;
  background: var(--color-cream);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-brown-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link:hover {
  background: var(--color-green);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--color-brown-dark);
  color: var(--color-cream);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
  flex-direction: column;
}

.footer-logo .logo-text {
  color: var(--color-cream);
}

.footer-text {
  font-size: 1rem;
  color: rgba(253, 248, 243, 0.9);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(253, 248, 243, 0.85);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(253, 248, 243, 0.7);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .location-map {
    height: 350px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  /* Navigation */
  .nav-container {
    padding: 0.75rem 1rem;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-brown-dark) 0%, var(--color-green-dark) 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 999;
    padding: 2rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--color-cream) !important;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    background: var(--color-brown-dark);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
  }
  
  .nav-links a:last-child {
    margin-bottom: 0;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    background: var(--color-brown);
    color: var(--color-gold) !important;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
    z-index: 1000;
  }
  
  .mobile-menu-btn.active span {
    background: var(--color-white);
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .logo-img {
    width: 38px;
    height: 38px;
  }
  
  /* Hero */
  .hero {
    min-height: 100svh;
  }
  
  .hero-content {
    padding: var(--space-sm);
  }
  
  .title-line {
    font-size: 1rem;
    letter-spacing: 4px;
  }
  
  .title-main {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  
  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
  }
  
  .hero-scroll {
    display: none;
  }
  
  /* Features */
  .features-section {
    padding: var(--space-lg) 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
  
  .feature-card {
    padding: var(--space-sm);
  }
  
  .feature-icon {
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1rem;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
  
  /* About */
  .about-section {
    padding: var(--space-lg) 0;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .about-images {
    height: 280px;
    order: -1;
  }
  
  .about-image-1 {
    width: 60%;
    height: 70%;
  }
  
  .about-image-2 {
    width: 50%;
    height: 55%;
  }
  
  .section-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }
  
  .section-title.left-aligned {
    text-align: center;
    justify-content: center;
  }
  
  .about-text {
    font-size: 1rem;
    text-align: center;
  }
  
  .about-signature {
    text-align: center;
  }
  
  /* Location */
  .location-section {
    padding: var(--space-lg) 0;
  }
  
  .location-info {
    text-align: center;
  }
  
  .location-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .location-icon {
    font-size: 2rem;
  }
  
  .location-map {
    height: 300px;
  }
  
  /* Contact */
  .contact-section {
    padding: var(--space-lg) 0;
  }
  
  .social-links {
    gap: var(--space-sm);
  }
  
  .social-link {
    width: 50px;
    height: 50px;
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }
  
  /* Footer */
  .footer {
    padding: var(--space-md) 0;
  }
  
  .footer-logo {
    font-size: 1.5rem;
  }
  
  .footer-logo-img {
    width: 50px;
    height: 50px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .footer-links a {
    font-size: 1rem;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  :root {
    --space-md: 1.25rem;
    --space-lg: 2.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  /* Features - single column on very small screens */
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-align: left;
  }
  
  .feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
  }
  
  .feature-card h3 {
    margin-bottom: 0.25rem;
  }
  
  /* About images smaller */
  .about-images {
    height: 220px;
  }
  
  /* Location */
  .location-details {
    gap: var(--space-sm);
  }
  
  .location-item h4 {
    font-size: 0.9rem;
  }
  
  .location-item p {
    font-size: 0.85rem;
  }
  
  .location-map {
    height: 250px;
    border-radius: 12px;
  }
  
  .location-map iframe {
    border-radius: 12px !important;
  }
  
  /* Section titles */
  .section-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .title-decoration {
    font-size: 1rem;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .logo-text {
    font-size: 0.95rem;
  }
  
  .logo-img {
    width: 32px;
    height: 32px;
  }
  
  .title-main {
    font-size: 2rem;
  }
  
  .btn {
    font-size: 0.8rem;
    padding: 0.875rem 1.25rem;
  }
}

/* Fix for iOS Safari viewport height */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-scroll {
    display: none;
  }
}

