/* ==================== МИНИМАЛИСТИЧНЫЕ СТИЛИ ДЛЯ ГЛАВНОЙ СТРАНИЦЫ ==================== */

/* Intro Section */
.intro-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
                url('./1762096265733.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.intro-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 1400px 900px at 30% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 1200px 700px at 70% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: introSectionGlow 15s ease-in-out infinite;
}

@keyframes introSectionGlow {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1) translate(0, 0);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05) translate(20px, -15px);
    }
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-title {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

/* Navigation Cards Section */
.navigation-cards-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
                url('./1762096265733.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.navigation-cards-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 1400px 900px at 30% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 1200px 700px at 70% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: cardsSectionGlow 15s ease-in-out infinite;
}

@keyframes cardsSectionGlow {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1) translate(0, 0);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05) translate(20px, -15px);
    }
}

.navigation-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.nav-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Фоновые изображения для каждой карточки */
.nav-card-rooms {
    background-image: url('./11.jpg');
}

.nav-card-spa {
    background-image: url('./гречесская сауна бассейн.jpg');
}

.nav-card-promotions {
    background-image: url('./1762096265733.jpg');
}

.nav-card-gallery {
    background-image: url('./1.jpg');
}

/* Overlay для читаемости текста */
.nav-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.nav-card:hover .nav-card-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Контент карточки */
.nav-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.nav-card:hover::before {
    opacity: 1;
}

.nav-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.nav-card:hover .nav-card-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.nav-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.nav-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.nav-card-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.nav-card-link {
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.nav-card:hover .nav-card-link {
    transform: translateX(5px);
    color: #f4d03f;
}

/* Contacts Minimal Section */
.contacts-minimal-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
                url('./1762096265733.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.contacts-minimal-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 1400px 900px at 30% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 1200px 700px at 70% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: contactsSectionGlow 15s ease-in-out infinite;
}

@keyframes contactsSectionGlow {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1) translate(0, 0);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05) translate(20px, -15px);
    }
}

.contacts-minimal-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contacts-minimal-container .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.contacts-minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.contact-minimal-item {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-minimal-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.contact-minimal-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.contact-minimal-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-minimal-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.contact-minimal-content a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-minimal-content a:hover {
    color: #f4d03f;
}

.work-badge-minimal {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
}

.contacts-minimal-actions {
    margin-top: 50px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .intro-section {
        padding: 60px 20px;
    }
    
    .intro-section::before {
        background: 
            radial-gradient(ellipse 800px 600px at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
            radial-gradient(ellipse 700px 500px at 70% 80%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    }
    
    .intro-title {
        font-size: 36px;
    }
    
    .intro-text {
        font-size: 18px;
    }
    
    .navigation-cards-section {
        padding: 60px 20px;
    }
    
    .navigation-cards-section::before {
        background: 
            radial-gradient(ellipse 800px 600px at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
            radial-gradient(ellipse 700px 500px at 70% 80%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    }
    
    .navigation-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav-card {
        min-height: 280px;
        padding: 30px 20px;
    }
    
    .nav-card-icon {
        font-size: 40px;
    }
    
    .nav-card-title {
        font-size: 20px;
    }
    
    .nav-card-description {
        font-size: 14px;
    }
    
    .contacts-minimal-section {
        padding: 60px 20px;
    }
    
    .contacts-minimal-section::before {
        background: 
            radial-gradient(ellipse 800px 600px at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
            radial-gradient(ellipse 700px 500px at 70% 80%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    }
    
    .contacts-minimal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}






