﻿
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #5d6d36;
    --primary-light: #8aa13e;
    --accent: #a8bf5f;
    --bg-main: #fafbf8;
    --bg-card: #ffffff;
    --text-dark: #2d3319;
    --text-medium: #555555;
    --text-light: #888888;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 40px rgba(0,0,0,0.12);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

.welcome-container {
    position: relative;
    background: linear-gradient(180deg, #fafbf8 0%, #f4f7ec 100%);
    min-height: auto;
    padding: 0 0 80px 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.flowers-left,
.flowers-right {
    position: absolute;
    width: 400px;
    z-index: 1;
    opacity: 0.7;
    /*animation: float 8s ease-in-out infinite;*/
}

.flowers-left {
    left: 0;
    top: 120px;
}

.flowers-right {
    right: 0;
    top: 120px;
    animation-delay: 1s;
}

.flowers-left img,
.flowers-right img {
    width: 100%;
    height: auto;
    user-select: none;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.welcome-hero {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 40px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
    animation: fadeInDown 0.8s ease;
}

.badge-icon {
    font-size: 18px;
    animation: spin 3s ease-in-out infinite;
}

@keyframes spin {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.welcome-title {
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 900;
    color: var(--text-dark);
    margin: 0 0 24px 0;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), transparent);
    border-radius: 2px;
}

.welcome-subtitle {
    font-size: 22px;
    color: var(--text-medium);
    font-weight: 500;
    margin: 0 0 48px 0;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

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

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 36px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
}

.info-section {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardAppear 0.6s ease both;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-schedule {
    animation-delay: 0.1s;
}

.card-contact {
    animation-delay: 0.2s;
}

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

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f0f4e8, #e8eed9);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.info-card:hover .card-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transform: scale(1.1) rotate(5deg);
}

.card-icon {
    color: var(--primary);
    transition: color 0.4s ease;
}

.info-card:hover .card-icon {
    color: white;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px 0;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8faf6;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-light);
}

.schedule-item.closed {
    opacity: 0.6;
    border-left-color: var(--text-light);
}

.schedule-day {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.schedule-time {
    font-weight: 500;
    color: var(--text-medium);
    font-size: 14px;
    text-align: right;
    line-height: 1.5;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #f8faf6;
    border-radius: var(--radius-md);
}

.contact-item.special {
    background: linear-gradient(135deg, #f0f4e8, #e8eed9);
    border-left: 4px solid var(--accent);
}

.contact-icon {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.phone-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-light);
}

.contact-link:hover::after {
    width: 100%;
}

.contact-note {
    font-size: 13px;
    color: var(--text-light);
    margin: 8px 0 0 0;
    font-style: italic;
}

.cta-section {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 40px;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    animation: cardAppear 0.6s ease 0.4s both;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-card > * {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin: 0 0 16px 0;
}

.cta-description {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    margin: 0 0 32px 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-cta.primary {
    background: white;
    color: var(--primary);
}

.btn-cta.primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: #f8faf6;
}

.btn-cta.secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid white;
}

.btn-cta.secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-4px);
}

.bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 161, 62, 0.1) 0%, transparent 70%);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: -50px;
    animation: pulse 10s ease-in-out infinite;
    animation-delay: 2s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 60%;
    right: 10%;
    animation: pulse 12s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

@media (max-width: 1024px) {
    .flowers-left,
    .flowers-right {
        width: 220px;
    }

    .info-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .flowers-left,
    .flowers-right {
        display: none;
    }

    .welcome-hero {
        padding: 60px 24px 40px;
    }

    .info-section {
        padding: 0 24px;
        margin-top: 40px;
    }

    .info-card {
        padding: 32px 24px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .cta-section {
        padding: 0 24px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 36px;
    }

    .welcome-subtitle {
        font-size: 18px;
    }

    .stat-number {
        font-size: 32px;
    }

    .schedule-item {
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }

    .schedule-time {
        text-align: left;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-description {
        font-size: 16px;
    }
}
