/* =========================
   VARIABLES & RESET
========================= */


:root {
    --primary: #2c3e50;
    --accent: #a29bfe;
    --bg: #f4f7f6;
    --white: #ffffff;
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #fff;
    z-index: 1000;
}


body {
    background-color: var(--bg);
    color: #222;
    font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
    min-height: 100vh;
}

/* =========================
   NAVIGATION
========================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 70px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

nav a {
    position: relative;
    text-decoration: none;
    color: #222;
    margin-left: 30px;
    font-weight: 500;
    padding-bottom: 4px;
}

nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #222;
    transition: .3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

/* Dropdown menu */
.dropdown {
    display: inline-block;
    position: relative;
}

.dropbtn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    color: #222;
    padding: 0;
    margin-left: 30px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
    right: 0;
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    margin: 0;
    font-size: 14px;
    text-align: left;
}

.dropdown:hover .dropdown-content {
    display: block !important;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* =========================
   HERO SECTIONS
========================= */
.hero {
    max-width: 1200px;
    margin: 50px auto 60px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero p {
    color: #555;
    line-height: 1.8;
    max-width: 520px;
}

.hero img {
    width: 100%;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .1);
}

/* Index/Welcome hero */
.hero-welcome {
    position: relative;
    height: 100vh;
    background-image: url("../assets/welcome.gif");
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
}

.hero-welcome .hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.75);
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
}

.hero-welcome h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-welcome p.lead {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-welcome .btn {
    border: 2px solid #000;
    color: #000;
    background: transparent;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-welcome .btn:hover {
    background: #000;
    color: #fff;
}

/* =========================
   FORM CONTAINERS
========================= */
.register-page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 50px;
    font-family: 'Poppins', sans-serif;
}

.register-page .main-wrapper {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-page .form-container {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
   
    box-sizing: border-box;
    text-align: center;
}

.register-page .input-group {
    margin-bottom: 20px;
    text-align: left;
}

.register-page .input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primary);
}

.register-page .input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    background: #fdfdfd;
    transition: 0.3s;
}

.register-page .input-group input:focus {
    border-color: #333;
    outline: none;
    background: #fff;
}

/* Buttons */
.register-page .signupbtn {
    background-color: #1a1a1a;
    color: white;
    padding: 14px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.register-page .signupbtn:hover {
    opacity: 0.8;
}

.register-page .cancelbtn {
    padding: 14px 20px;
    background-color: transparent;
    color: #666;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

/* =========================
   PACKAGE CARDS
========================= */
.package-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    width: 90%;
    padding: 40px 0;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #eee;
}

.package-info {
    padding: 25px;
    text-align: center;
}

/* =========================
   PROGRESS BAR
========================= */
.progress-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    width: 35px;
    height: 35px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
    color: #777;
}

.progress-step.active {
    background: var(--accent);
    color: white;
}

.progress-line {
    position: absolute;
    top: 17px;
    left: 0;
    height: 2px;
    background: #ddd;
    width: 100%;
    z-index: 0;
}

/* =========================
   INFO SECTION
========================= */
.info {
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: stretch;
}

.left-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.time{
    margin-top: 10px;
    display: grid;
    row-gap: 10px;
}

.card {
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 14px;
}

.card p {
    font-size: .95rem;
    color: #555;
    line-height: 1.7;
}

/* =========================
   MAP
========================= */
.map {
    max-width: 1200px;
    padding: 0 40px;
    margin: 0 auto;
    /* center the container */
    display: flex;
    /* required for justify-content */
    justify-content: center;
    margin-bottom: 30px;

}

.map iframe {
    width: 100%;
    height: 360px;
    border-radius: 22px;
    border: 0;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 40px;
    color: #666;
    border-top: 1px solid #eee;
    font-size: .9rem;
}

.amora-footer {
    text-align: center;
    padding: 40px;
    color: #666;
    border-top: 1px solid #eee;
    font-size: .9rem;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:900px) {
    nav {
        padding: 20px 30px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
    }

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


.main-wrapper {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primary);
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    margin-top: 0;
    /* remove extra margin if Bootstrap adds one */

}


.btn-booking {
    display: block;
    background-color: black;
    color: var(--white);
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
    border: none;
    width: 100%;
    /* Full width inside forms */
    cursor: pointer;
}

.btn-booking:hover {
    background-color: var(--accent);
}


.module-header {
    background: #000;
    color: #fff;
    padding: 20px 28px;
    margin-bottom: 24px;
    margin-top: 50px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-container {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 1000px;
    /* or remove max-width */
    padding: 20px;
    /* add padding inside card */
    margin: 0 auto;
    /* center card horizontally */
    box-sizing: border-box;
}


/* PACKAGES */
.packages {
    max-width: 1100px;
    margin: 0 auto 120px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.package-card {
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 40px;
    text-align: center;
    transition: .3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card p {
    font-size: 14px;
    color: #666;
    margin: 15px 0 30px;
}

.package-card button {
    padding: 12px 34px;
    border-radius: 30px;
    border: none;
    background: #111;
    color: #fff;
    cursor: pointer;
}

.disabled {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
}

/* MODAL */
.package-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.package-modal.active {
    display: flex;
}

.package-modal-box {
    background: #fff;
    width: 95%;
    max-width: 900px;
    border-radius: 26px;
    padding: 45px;
    position: relative;
}

.close {
    position: absolute;
    top: 22px;
    right: 26px;
    font-size: 22px;
    cursor: pointer;
}

.package-modal-box h2 {
    text-align: center;
    margin-bottom: 45px;
}

/* INNER */
.inner-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.inner-card {
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 28px;
}

.details {
    display: grid;
    gap: 14px;
    font-size: 14px;
    color: #555;
}

.detail {
    display: flex;
    gap: 10px;
}

.price {
    margin-top: 22px;
    font-size: 20px;
    font-weight: 600;
}

.book {
    margin-top: 18px;
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: none;
    background: #111;
    color: #fff;
}

/* SELF price row only */
.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.page-title {
    text-align: center;
    margin: 90px auto 70px;
    padding: 0 40px;
}

.page-title h1 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.page-title p {
    color: #555;
}


.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 0.0625rem solid transparent;
    border-radius: 0.5rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 500;
}

.alert-dismissible {
    padding-right: 3rem;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem;
}

.alert-primary {
    color: #131921;
    background-color: #d2d4d7;
    border-color: #bcbfc3;
}

.alert-primary .alert-link {
    color: #0f141a;
}

.alert-secondary {
    color: #973023;
    background-color: #fedcd8;
    border-color: #fecbc4;
}

.alert-secondary .alert-link {
    color: #79261c;
}

.alert-tertiary {
    color: #1d1d40;
    background-color: #d6d6e1;
    border-color: #c1c1d2;
}

.alert-tertiary .alert-link {
    color: #171733;
}

.alert-success {
    color: #0a6f4d;
    background-color: #cff1e6;
    border-color: #b7ead9;
}

.alert-success .alert-link {
    color: #08593e;
}

.alert-info {
    color: #153a7c;
    background-color: #d3dff5;
    border-color: #bdd0f0;
}

.alert-info .alert-link {
    color: #112e63;
}

.alert-warning {
    color: #927755;
    background-color: #fdf4e8;
    border-color: #fbeedd;
}

.alert-warning .alert-link {
    color: #755f44;
}

.alert-danger {
    color: #87112b;
    background-color: #f9d2da;
    border-color: #f6bbc8;
}

.alert-danger .alert-link {
    color: #6c0e22;
}