/* Mrňouskové - Mateřské centrum Custom Styles */
/* Mobile-First Design Approach */

/* Color Palette from Brand */
:root {
  --mint-green: #a7c6b4;
  --coral-pink: #faa28e;
  --warm-peach: #f7c08a;
  --soft-yellow: #e8c774;
  --dusty-rose: #f57872;
  --sage-green: #a4c4b5;

  /* Text colors */
  --text-primary: #4a5568;
  --text-secondary: #718096;
  --text-heading: #2d3748;
  --text-light: #ffffff;

  /* Background */
  --bg-primary: #ffffff;
  --bg-light: #fafafa;
}

/* Font Import - Using Montserrat as Century Gothic alternative */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/* ========================================
   BASE STYLES (Mobile First)
   ======================================== */

/* Global Styles */
* {
  box-sizing: border-box;
  font-family: "Century Gothic", "Montserrat", "Futura", "Avant Garde", Arial,
    sans-serif;
}

body {
  font-family: "Century Gothic", "Montserrat", "Futura", "Avant Garde", Arial,
    sans-serif;
  color: var(--text-primary);
  background: linear-gradient(
    135deg,
    rgba(184, 212, 200, 0.05) 0%,
    rgba(237, 139, 124, 0.05) 25%,
    rgba(245, 184, 149, 0.05) 50%,
    rgba(232, 199, 116, 0.05) 75%,
    rgba(224, 159, 146, 0.05) 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Century Gothic", "Montserrat", "Futura", "Avant Garde", Arial,
    sans-serif;
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ========================================
   NAVIGATION (Mobile First)
   ======================================== */

.nav-mrnouskove {
  background-color: transparent;
  position: relative;
}

.nav-logo {
  font-family: "Century Gothic", "Montserrat", "Futura", "Avant Garde", Arial,
    sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--coral-pink);
}

/* Mobile Menu Toggler (visible on mobile) */
.mobile-menu-toggler {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mint-green);
  color: white;
  width: 60px;
  height: 100%;
  padding: 2rem 1rem 1.5rem 1rem;
  border-radius: 0 0 30px 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggler::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--mint-green);
}

.mobile-menu-toggler:hover {
  transform: translateY(2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggler:focus {
  outline: none;
}

.mobile-menu-toggler svg {
  color: white;
  position: relative;
  z-index: 1;
}

/* Mobile Navigation Items */
.nav-pill-item {
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
  position: relative;
  text-decoration: none;
  width: 100%;
  text-transform: lowercase;
}

.nav-pill-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nav-pill-item.active {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Desktop Navigation (hidden on mobile) */
.nav-vertical-pill {
  display: none;
}

.nav-item {
  position: relative;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

.nav-item:hover {
  color: var(--coral-pink);
}

.nav-item.active {
  color: var(--coral-pink);
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--coral-pink);
  transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 80%;
}

/* ========================================
   PAGE CONTENT (Mobile First)
   ======================================== */

/* Hero Section */
.hero-section {
  padding: 2rem 0;
  background-color: transparent;
}

/* Page Title - Mobile Size */
.page-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--coral-pink);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

/* ========================================
   BUTTONS (Mobile First)
   ======================================== */

.btn-mrnouskove {
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--coral-pink);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--dusty-rose);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 139, 124, 0.3);
}

.btn-secondary {
  background-color: var(--mint-green);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--sage-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 212, 200, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--coral-pink);
  color: var(--coral-pink);
}

.btn-outline:hover {
  background-color: var(--coral-pink);
  color: var(--text-light);
}

/* ========================================
   FEATURE BOXES (Mobile First)
   ======================================== */

.feature-box {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-light);
}

.icon-mint {
  background-color: var(--mint-green);
}

.icon-coral {
  background-color: var(--coral-pink);
}

.icon-peach {
  background-color: var(--warm-peach);
}

.icon-yellow {
  background-color: var(--soft-yellow);
}

/* ========================================
   IMAGE GALLERY (Mobile First)
   ======================================== */

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
}

/* ========================================
   CARDS SECTION (Mobile First)
   ======================================== */

.mint-gradient-card {
  background: linear-gradient(
    135deg,
    var(--mint-green) 0%,
    var(--sage-green) 100%
  );
  position: relative;
  overflow: hidden;
}

.mint-gradient-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.social-icon-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 3rem;
  padding: 0.5rem;
}

.social-icon-white:hover {
  transform: translateY(-3px) scale(1.15);
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.social-icon-white i {
  font-size: inherit;
}

/* ========================================
   FOOTER (Mobile First)
   ========================================*/

.footer-mrnouskove {
  background: linear-gradient(
    to right,
    rgba(237, 139, 124, 0.12) 0%,
    rgba(245, 184, 149, 0.12) 25%,
    rgba(232, 199, 116, 0.12) 50%,
    rgba(184, 212, 200, 0.12) 75%,
    rgba(164, 196, 181, 0.12) 100%
  );
  color: var(--text-heading);
  padding: 1rem 0 1rem;
  position: relative;
}

.footer-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--coral-pink) 0%,
    var(--warm-peach) 25%,
    var(--soft-yellow) 50%,
    var(--mint-green) 75%,
    var(--sage-green) 100%
  );
}

/* Social Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(74, 85, 104, 0.1);
  color: var(--text-heading);
  transition: all 0.3s ease;
  margin: 0 0.25rem;
}

.social-icon:hover {
  background-color: var(--coral-pink);
  color: var(--text-light);
  transform: translateY(-3px);
}

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

.text-mint {
  color: var(--mint-green);
}
.text-coral {
  color: var(--coral-pink);
}
.text-peach {
  color: var(--warm-peach);
}
.text-yellow {
  color: var(--soft-yellow);
}
.text-rose {
  color: var(--dusty-rose);
}

.bg-mint {
  background-color: var(--mint-green);
}
.bg-coral {
  background-color: var(--coral-pink);
}
.bg-peach {
  background-color: var(--warm-peach);
}
.bg-yellow {
  background-color: var(--soft-yellow);
}
.bg-rose {
  background-color: var(--dusty-rose);
}

/* Section Backgrounds */
.section-mint {
  background-color: transparent;
}
.section-coral {
  background-color: transparent;
}
.section-peach {
  background-color: transparent;
}

/* ========================================
   TABLET STYLES (min-width: 640px)
   ======================================== */

@media (min-width: 640px) {
  .nav-logo {
    font-size: 1.5rem;
  }

  /* Show desktop navigation */
  .nav-vertical-pill {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    padding: 2rem 0.75rem 1.5rem 0.75rem;
    height: 100%;
    border-radius: 0 0 45px 45px;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: 85px;
    text-transform: lowercase;
  }

  .nav-vertical-pill::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
  }

  .nav-vertical-pill .nav-pill-text {
    position: relative;
    z-index: 1;
  }

  .nav-vertical-pill:hover {
    transform: translateY(2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .nav-vertical-pill.active {
    transform: translateY(4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  /* Hide mobile menu toggler */
  .mobile-menu-toggler {
    display: none;
  }

  /* Adjust mobile nav items for tablet */
  .nav-pill-item {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    margin: 0 0.5rem;
  }
}

/* ========================================
   DESKTOP STYLES (min-width: 768px)
   ======================================== */

@media (min-width: 768px) {
  /* Page Title - Desktop Size */
  .page-title {
    font-size: 3rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 3rem 0;
  }

  /* Buttons */
  .btn-mrnouskove {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  /* Feature Boxes */
  .feature-box {
    padding: 2rem;
  }

  .feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
  }

  /* Gallery */
  .gallery-item {
    border-radius: 15px;
  }

  /* Footer */
  .footer-mrnouskove {
    padding: 1.5rem 0 1.25rem;
  }
}

/* ========================================
   LARGE DESKTOP STYLES (min-width: 1024px)
   ======================================== */

@media (min-width: 1024px) {
  /* Navigation - Full size for desktop */
  .nav-vertical-pill {
    padding: 2rem 1rem 1.5rem 1rem;
    border-radius: 0 0 55px 55px;
    font-size: 1rem;
    width: 110px;
  }

  /* Page Title - Large Desktop */
  .page-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 4rem 0;
  }
}

/* ========================================
   CUSTOM SCROLLBAR - Removed (using browser defaults)
   ======================================== */
