/**
 * Стили главной страницы
 *
 * @package VertikalTour
 */

/* ===== HERO SECTION ===== */
.vt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.vt-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vt-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.vt-hero .vt-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.vt-hero__content {
    max-width: 700px;
    padding: 120px 0 80px;
}

.vt-hero__title {
    font-size: clamp(46px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.vt-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
    max-width: 500px;
}

/* Hero Buttons */
.vt-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.vt-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.vt-hero__btn--primary {
    background: var(--vt-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(23, 116, 187, 0.4);
}

.vt-hero__btn--primary:hover {
    background: var(--vt-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(23, 116, 187, 0.5);
}

.vt-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.vt-hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Stats */
.vt-hero__stats {
    display: flex;
    gap: 48px;
}

.vt-hero__stat {
    display: flex;
    flex-direction: column;
}

.vt-hero__stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.vt-hero__stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

/* Scroll Indicator */
.vt-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    animation: bounce 2s infinite;
}

.vt-hero__scroll svg {
    animation: scrollArrow 2s infinite;
}

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

@keyframes scrollArrow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .vt-hero__content {
        padding: 100px 0 60px;
    }

    .vt-hero__buttons {
        display: grid;
        grid-template-columns: auto auto;
    }

    .vt-hero__btn {
        justify-content: flex-start;
        width: 100%;
        padding: 16px 20px;
    }

    .vt-hero__stats {
        gap: 32px;
        flex-wrap: wrap;
    }

    .vt-hero__stat-value {
        font-size: 28px;
    }

    .vt-hero__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .vt-hero__stats {
        gap: 16px;
        justify-content: space-between;
    }

    .vt-hero__stat {
        flex: 1;
        min-width: 0;
    }

    .vt-hero__stat-value {
        font-size: 24px;
    }

    .vt-hero__stat-label {
        font-size: 12px;
    }
}

/* ===== SECTION TITLE ===== */
.vt-section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 32px;
}

/* ===== UPCOMING SECTION ===== */
.vt-upcoming {
    padding: 80px 0;
    background: #f8f9fa;
}

/* ===== TABS ===== */
.vt-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.vt-tabs__btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: #666;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vt-tabs__btn:hover {
    color: var(--vt-primary);
    border-color: var(--vt-primary);
}

.vt-tabs__btn.is-active {
    color: #fff;
    background: var(--vt-primary);
    border-color: var(--vt-primary);
}

.vt-tabs__panel {
    display: none;
}

.vt-tabs__panel.is-active {
    display: block;
}

/* More link */
.vt-upcoming__more {
    margin-top: 32px;
}

.vt-upcoming__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--vt-primary);
    background: #fff;
    border: 2px solid var(--vt-primary);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.vt-upcoming__link:hover {
    color: #fff;
    background: var(--vt-primary);
}

.vt-upcoming__empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .vt-upcoming {
        padding: 60px 0;
    }

    .vt-tabs__nav {
        gap: 6px;
    }

    .vt-tabs__btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ===== ABOUT SECTION ===== */
.vt-about {
    padding: 80px 0;
    background: #f8f9fa;
}

.vt-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.vt-about__left {
    position: relative;
}

.vt-about__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--vt-primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.vt-about__badge-value {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.vt-about__badge-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.vt-about__text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 32px;
}

.vt-about__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vt-about__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
}

.vt-about__features svg {
    flex-shrink: 0;
    color: var(--vt-primary);
}

/* Founder Card (compact) */
.vt-about__founder {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.vt-about__founder-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.vt-about__founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-about__founder-info {
    text-align: left;
}

.vt-about__founder-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.vt-about__founder-role {
    display: block;
    font-size: 14px;
    color: #666;
}

/* Team Section */
.vt-about__team {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.vt-about__team-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px;
}

.vt-about__team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Team Card */
.vt-team-card {
    text-align: center;
}

.vt-team-card__photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f0f0f0;
}

.vt-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-team-card__name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.vt-team-card__role {
    display: block;
    font-size: 13px;
    color: #666;
}

/* About Responsive */
@media (max-width: 992px) {
    .vt-about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vt-about__team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vt-about {
        padding: 60px 0;
    }

    .vt-about__badge-value {
        font-size: 36px;
    }

    .vt-about__text {
        font-size: 16px;
    }

    .vt-about__team {
        padding: 24px;
    }

    .vt-about__team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .vt-about__founder {
        flex-direction: column;
        text-align: center;
    }

    .vt-about__founder-info {
        text-align: center;
    }
}

/* ===== ВИДЫ ТУРИЗМА ===== */
.vt-services {
    padding: 100px 0;
    background: #ffffff;
}

.vt-services__header {
    margin-bottom: 60px;
}

.vt-section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 12px;
}

.vt-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vt-service-card {
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vt-service-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
}

.vt-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vt-service-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.vt-service-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--vt-primary);
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
    padding-top: 8px;
    transition: gap 0.3s ease;
}

.vt-service-card__btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.vt-service-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.vt-service-card__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Hover эффекты только для устройств с мышью */
@media (hover: hover) {
    .vt-service-card:hover {
        transform: translateY(-4px);
    }

    .vt-service-card:hover .vt-service-card__image img {
        transform: scale(1.05);
    }

    .vt-service-card:hover .vt-service-card__btn {
        gap: 10px;
    }

    .vt-service-card:hover .vt-service-card__btn svg {
        transform: translateX(2px);
    }
}

/* Адаптив */
@media (max-width: 1200px) {
    .vt-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vt-services {
        padding: 60px 0;
        overflow: hidden;
    }

    .vt-services__header {
        margin-bottom: 40px;
    }

    .vt-section-subtitle {
        font-size: 16px;
    }

    .vt-services__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0;
        margin: 0 -20px 0 0;
        transition: margin 0.3s ease;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .vt-services__grid.at-end {
        margin: 0 -30px 0 -20px;
    }

    .vt-services__grid::-webkit-scrollbar {
        display: none;
    }

    .vt-service-card {
        flex-shrink: 0;
        width: 70vw;
        scroll-snap-align: start;
    }

    .vt-service-card:first-child {
        margin-left: 20px;
    }

    .vt-service-card:last-child {
        margin-right: 30px;
    }

    .vt-service-card__content {
        padding: 20px;
    }

    .vt-service-card__btn {
        font-size: 13px;
    }

    .vt-service-card__title {
        font-size: 18px;
    }

    .vt-service-card__desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .vt-services {
        padding: 40px 0;
    }

    .vt-services__grid {
        padding: 0;
        margin: 0 -20px 0 0;
        gap: 12px;
    }

    .vt-services__grid.at-end {
        margin: 0 -30px 0 -20px;
    }

    .vt-service-card {
        width: 75vw;
    }

    .vt-service-card:first-child {
        margin-left: 20px;
    }

    .vt-service-card:last-child {
        margin-right: 30px;
    }

    .vt-service-card__content {
        padding: 18px;
    }

    .vt-service-card__title {
        font-size: 17px;
    }
}
