/* --- Globálne nastavenie --- */
body {
    font-family: 'Poppins', sans-serif;

    background-color: var(--background-color);
    color: var(--primary-color);
    margin-bottom: 180px;
}

/* --- Hero sekcia --- */
.hero {

    height: 30vh;
    background-color: var(--primary-color);
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    color: var(--primary-color-text);
}

.hero-content a.couple-names {
    font-size: 2rem;
    font-weight: 600;
text-decoration:none;
color:color: var(--primary-color-text) ;
}
.hero-content .thank-you {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}
.hero-content .date-time {
    font-weight: 500;
    margin-top: 0.25rem;
}

/* --- Upload box --- */
.upload-box {
    width: 100%;
    min-height: 160px;

    border: 2px dashed var(--background-color);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.upload-icon {
    font-size: 2.5rem;
    color: var(--background-color);
    margin-bottom: 0.5rem;
}

.stats p {
    margin-bottom: 0;
}
/* --- Citácia --- */
.last-quote {
    width: 100%;
    margin: auto;
}
.last-quote h3 {
    font-weight: 500;
}
.quote-box {

    background-color: var(--primary-color);
    border-radius: 2rem;
}
.quote-text {
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    padding: 0 1.5rem;
    color: var(--primary-color-text);
}
.quote-mark {
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
}
.quote-mark.start {
    top: -10px;
    left: -10px;
}
.quote-mark.end {
    bottom: -10px;
    right: -10px;
}
.all-links {
    color: var(--primary-color);
    text-decoration: underline;
}
.text-link{
    color: var(--primary-color);
	text-decoration: none;
}

/* --- Galéria obrázkov --- */
.gallery img {
    object-fit: cover;
    height: 180px;
    width: 100%;
}
.gallery {
    width: 100%;
    margin: auto;
}

/* --- Dolná navigačná lišta --- */
.footer-nav {
    background-color: #ffffff;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
 
}
.footer-nav .nav-link {
    color: #6c757d;
    transition: background-color .2s, transform .2s;
    padding: 0.5rem 1rem;
 border-radius: 2rem;
}
.footer-nav .nav-link.active {
    background-color: var(--hover-color);
    color: var(--secondary-color);
    border-radius: 2rem;
    transform: translateY(-10px);
}
.footer-nav :hover {
    background-color: var(--hover-color);
    color: var(--secondary-color);;
    border-radius: 2rem;
    transform: translateY(-10px);
}
.upload-btn {
    background-color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transform: translateY(-10px);
}
.uppy-Dashboard {
      margin: 0 auto;
      font-size: 14px;
      max-height: 50vh;
      overflow-y: auto;
      box-sizing: border-box;
      height: 550px;
      border-color: var(--primary-color);
      border-width: 3px;
      border-style: dotted;
    }
    .uppy-Dashboard-inner {
    max-height:50vh;
    width:100% !important;
    
    }
    
    
    /* Menšie náhľady súborov */
    .uppy-DashboardItem-preview {
      width: 80px;
      height: 80px;
    }
    
    /* Zmenšiť drag-and-drop zónu */
    .uppy-Dashboard-dropFilesTitle,
    .uppy-Dashboard-AddFiles-title {
      font-size: 16px;
    }
    
    .uppy-Dashboard-AddFiles {
      padding: 8px;
    }
    
    .uppy-Dashboard-FileCard {
      font-size: 13px;
    }

    .btn-color {
        background-color: var(--primary-color);
        color: var(--primary-color-text);
        border:none

    }
    .btn-color:hover {
        background-color: var(--hover-color);
        color: var(--secondary-color);
        border:none;

    }


.glightbox img {
  transition: transform 0.3s ease;
}

.glightbox:hover img {
  transform: scale(1.05);
}
