/* =========================================
   Hero Banner
========================================= */

#home {
    background: #f7f4ef;
    overflow: hidden;
}

/* =========================================
   Wrapper
========================================= */

.hero-wrapper {
    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;

    width: 92%;
    max-width: 1600px;

    margin: auto;

    padding: 80px 0;
}

/* =========================================
   Image
========================================= */

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;

    height: 850px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* =========================================
   Content
========================================= */

.hero-content {
    padding-right: 30px;
}

.hero-subtitle {
    display: inline-block;

    padding: 10px 20px;

    background: rgba(0, 0, 0, 0.06);

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: #444;

    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 78px;
    line-height: 1.1;

    color: #111;

    margin-bottom: 30px;

    font-weight: 700;
}

.hero-description {
    font-size: 20px;
    line-height: 1.9;

    color: #666;

    max-width: 700px;

    margin-bottom: 35px;
}

/* =========================================
   Tags
========================================= */

.hero-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 40px;
}

.hero-tags span {
    padding: 12px 22px;

    border-radius: 50px;

    background: #fff;

    border: 1px solid #ddd;

    font-size: 15px;
    font-weight: 600;

    color: #222;

    transition: 0.3s ease;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hero-tags span:hover {
    background: #111;
    color: #fff;
}

/* =========================================
   Buttons
========================================= */

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 58px;

    padding: 0 35px;

    border-radius: 60px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}

.primary-btn {
    background: #111;
    color: #fff;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.primary-btn:hover {
    background: #d4af37;

    color: #fff;

    transform: translateY(-3px);
}

.secondary-btn {
    border: 1px solid #ccc;

    background: #fff;

    color: #111;
}

.secondary-btn:hover {
    background: #111;

    color: #fff;

    border-color: #111;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1400px) {
    .hero-content h1 {
        font-size: 64px;
    }

    .hero-image {
        height: 720px;
    }
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 60px 0;
    }

    .hero-image {
        height: 600px;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-content h1 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        width: 94%;
    }

    .hero-image {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }
}
