﻿/* =============================================
   Vintropica Holidays — home.css
   Home Page Styles (responsive)
   ============================================= */

/* =============================================
   HERO
   ============================================= */
.hero {
    height: 85vh;
    min-height: 480px;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url('https://images.unsplash.com/photo-1528127269322-539801943592?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 5%;
}

.hero-content {
    color: #fff;
    max-width: 860px;
    width: 100%;
}

    .hero-content h1 {
        font-size: clamp(28px, 6vw, 62px);
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: clamp(15px, 2.2vw, 20px);
        line-height: 1.8;
        margin-bottom: 32px;
        opacity: 0.92;
    }

.hero-btn {
    display: inline-block;
    background: #c46239;
    color: #fff;
    border: none;
    padding: 15px 38px;
    border-radius: 40px;
    font-size: clamp(15px, 2vw, 18px);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s, transform .2s;
    text-decoration: none;
}

    .hero-btn:hover {
        background: #d97b53;
        transform: translateY(-2px);
    }

/* =============================================
   SECTION COMMON
   ============================================= */
.section {
    padding: 70px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: clamp(26px, 4vw, 42px);
        color: #222;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .section-title p {
        color: #666;
        font-size: clamp(14px, 1.8vw, 17px);
    }

/* =============================================
   TOUR CARDS
   ============================================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform .3s, box-shadow .3s;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.13);
    }

    .card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

.card-content {
    padding: 22px 24px 26px;
}

    .card-content h3 {
        margin-bottom: 10px;
        color: #222;
        font-size: 18px;
    }

    .card-content p {
        color: #666;
        line-height: 1.7;
        font-size: 14px;
    }

/* =============================================
   WHY US
   ============================================= */
.why-us {
    background: #fff;
    padding: 70px 5%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.why-box {
    background: #f9f4ec;
    padding: 32px 28px;
    border-radius: 20px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}

    .why-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 32px rgba(0,0,0,0.08);
    }

.why-icon {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 4px;
}

.why-box h3 {
    margin: 16px 0 10px;
    color: #c46239;
    font-size: 17px;
}

.why-box p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* =============================================
   PLAN / FORM SECTION
   ============================================= */
.trip-section {
    background: #d8c7a1;
    padding: 70px 5%;
}

.trip-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.step {
    background: #fff;
    padding: 28px 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 54px;
    height: 54px;
    background: #c46239;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    margin-bottom: 8px;
    color: #222;
    font-size: 16px;
}

.step p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* Form box */
.form-box h2 {
    margin-bottom: 28px;
    color: #b65d34;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.2;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        color: #333;
        font-weight: 600;
        font-size: 13px;
        margin-bottom: 7px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: none;
        border-radius: 8px;
        outline: none;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        background: #fff;
        transition: box-shadow .2s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            box-shadow: 0 0 0 2px rgba(196,98,57,0.35);
        }

    .form-group textarea {
        height: 140px;
        resize: none;
    }

.form-full {
    grid-column: 1 / -1;
}

.submit-btn {
    margin-top: 22px;
    background: #c46239;
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background .3s, transform .2s;
    width: 100%;
    letter-spacing: 0.5px;
}

    .submit-btn:hover {
        background: #d97b53;
        transform: translateY(-2px);
    }
.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}
/* =============================================
   RESPONSIVE — TABLET (992px)
   ============================================= */
@media (max-width: 992px) {

    .trip-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 42px;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (768px)
   ============================================= */
@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 70vh;
        padding: 60px 5%;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .section {
        padding: 50px 5%;
    }

    .why-us {
        padding: 50px 5%;
    }

    .trip-section {
        padding: 50px 5%;
    }

    .section-title {
        margin-bottom: 36px;
    }

        .section-title h2 {
            font-size: 26px;
        }

    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card img {
        height: 200px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .why-box {
        padding: 24px 16px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .step {
        padding: 20px;
    }

    .step-number {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 14px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================================= */
@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-btn {
        padding: 13px 28px;
        font-size: 14px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .form-box h2 {
        font-size: 22px;
    }

    .card img {
        height: 180px;
    }
}body {
}
