/* Rishikesh Cards */

.hero_container {
    display: flex;
    justify-content: space-between;
    margin-inline: 1.5rem;
    gap: 5rem;
}

.hero {
    width: 60%;
}

.hero-gallery {
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    margin: 1rem auto;
    padding: 20px;
    display: grid;
    gap: 8px;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 130px 130px auto;
    grid-template-areas:
        "main s1 s2"
        "main s3 s4"
        "btn  btn btn";
}

.hero-gallery .img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.hero-gallery .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease-in-out;
}

.main {
    grid-area: main;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--tertiary-text-color);
    border: none;
    color: var(--sub-text-color);
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 5;
}

.nav-btn:hover {
    background: var(--primary-text-color);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.s1 {
    grid-area: s1;
}

.s2 {
    grid-area: s2;
}

.s3 {
    grid-area: s3;
}

.s4 {
    grid-area: s4;
}

/* overview */
.overview-section {
    width: 100%;
    margin-top: 2rem;
    max-width: 1100px;
}

.overview-container {
    background: var(--section-background-1);
    padding: 40px 36px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.overview-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 22px;
    position: relative;
}

.overview-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70px;
    height: 3px;
    border-radius: 2px;
    background: var(--tertiary-text-color);
}

.overview-text {
    font-size: 14px;
    text-align: justify;
    line-height: 1.9;
    margin: 0 0 18px 0;
    letter-spacing: 0.3px;
}

/* Price */
.price-section {
    display: flex;
    justify-content: center;
    font-family: var(--secondary-font-family);
}

.price-container {
    background: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 1000px;
    margin-bottom: 1rem;
}

.price-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.old-price {
    font-size: 15px;
    color: var(--primary-text-color) !important;
    text-decoration: line-through;
}

.new-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--tertiary-text-color) !important;
}

.check-time {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.check-time p {
    color: var(--primary-text-color);
}

.includes-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.includes-list li {
    font-size: 13px;
    padding-left: 24px;
    position: relative;
    line-height: 1.3;
}

.includes-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tertiary-text-color);
    font-weight: bold;
}


.detail-section {
    display: flex;
    justify-content: center;
    font-family: var(--secondary-font-family);
}

.sub-title {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: #2b2b2b;
}


/* form */
.form {
    margin-top: 1rem;
    width: 40%;
    justify-items: right;
}

.form button {
    color: var(--primary-text-color);
    width: 100%;
}

.resort-form {
    font-family: var(--secondary-font-family);
    width: 80%;
    background: var(--section-background-2);
    padding: 15px 48px;
    border-radius: 10px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    font-size: 15px;
    line-height: 1.3;
}

.resort-form.fancy h2 {
    font-family: var(--primary-font-family);
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.resort-form .form-group {
    margin-bottom: 8px;
}

.resort-form .form-row .form-group {
    flex: 1;
    min-width: 0;
}

.resort-form .form-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.resort-form label {
    margin-bottom: 3px;
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
}

.resort-form input,
.resort-form select,
.resort-form textarea {
    width: 100%;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 13px;
}

.resort-form input:focus,
.resort-form select:focus,
.resort-form textarea:focus {
    border-color: var(--tertiary-text-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}