*{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family:'Poppins',sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

/* Theme */
:root{
    --brand-primary: rgb(21, 110, 110);
    --brand-accent: #fc0050;
    --text-color: #e6e6e6;
    --muted-text: #a3a3a3;
    --surface: #101418;
    --surface-muted: #161b1f;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 28px;
    --shadow-sm: 0 6px 18px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.10);
    --border-color: rgba(255,255,255,0.08);
}

body{
    color: var(--text-color);
    background: var(--surface);
    line-height: 1.6;
}

/* Home page */

.banner{
    width:100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner video{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.content{
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(1, 0, 5, 0.3),rgba(4, 1, 17, 0.3));



}

nav{
    width: 100%;
    position: fixed;
    background-color: rgba(10, 14, 16, 0.75);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2000;      /* high value so header is always on top */
}

nav .logo{
    width: 80px;
    margin: 2vh;
    margin-left: 8%;
}

nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}

.navbar{
    display: flex;
    margin-right: 4vh;
}

.navbar a{
    color: white;
    font-size: 18px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;   
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.18s ease;
}

.navbar a:hover,.navbar a.active{
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    transform: translateY(-1px);
    border-radius: var(--radius-sm);
}

nav ul li a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 17px;
}

.title{
    text-decoration: none;
    /* display: inline-block; */
    font-size: 4vh;
    color: rgb(255, 255, 255);
    padding: 14px 17px;
    margin-top: 32vh;
    text-align: center;
    vertical-align: center;
}

.title h1{
    font-size: 9vh;
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.title h1:hover{ opacity: 0.98; }

.button{
    display: inline-block;
    margin-top:5vh;
    font-size: 25px;
    padding: 10px 30px;
    color: #ffffff;
    background-color: var(--brand-accent);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.30s ease;
    box-shadow: 0 10px 24px rgba(252,0,80,0.22);
}

.button:hover{
    transform: scale(1.1);
    color: #111;
    background-color: #ffffff;
    box-shadow: 0 12px 30px rgba(255,255,255,0.12);
    padding: 10px 30px;
}

/* Services */

.text h2{
    font-size: 40px;
    font-weight: 650;
    margin-top: 40px;
    margin-bottom: 10px;
    line-height: 2;
    text-align: center;
}

.rowitems{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 28px;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    margin-left: 30px ;
    margin-right: 30px;
    margin-bottom:10px ;
}

.container-box{
    border: 1px solid var(--border-color);
    background: var(--surface-muted);
    border-radius: 10px;
    padding: 50px 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.container-image img{
    height: 100px;
    width: 100px;
    padding: 10px;
    margin-bottom: 15px;
}

.container-box h4{
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 550;
}

.container-box p{
    font-size: 16px;
    color: var(--muted-text);
}

.container-box:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
}

/* Packages */

.package-title{
    text-align: center;
}

.package-title h2{
    font-size: 40px;
    font-weight: 650;
    padding-top: 75px;
    padding-bottom: 10px;
    line-height: 2;
}

.package-content{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.image{
    position: relative;
    transition: all 0.3s cubic-bezier(0.445,0.05,0.55,0.95);
    cursor: pointer;
    filter: brightness(95%);
}

.image img{
    width: 100%;
    height: 480px;
    border-radius: 22px;
}

.image h3{
    color: white;
    position: absolute;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    top: 12px;
    right: 16px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(0,0,0,0.35);
}

.dest-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-bottom: 36px;
}

.location h4{
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2px;
}

.pac-details li{
    font-size: 18px;
    color: #c7c7c7;
    margin-left: 15px;
    margin-bottom: 4px;
    list-style-type: disc;
}

.image:hover{
    filter: brightness(120%);
    transform: scale(1.03);
}

/* Locations */

.location-content{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.col-content{
    position: relative;
    filter:brightness(95%);
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);

}

.col-content img{
    margin-bottom: 40px;
    height: 420px;
    border-radius: 22px;
    width: 100%;
    
}

.col-content h5{
    position: absolute;
    font-size: 25px;
    color: white;
    font-weight: 500;
    left: 20px;
    bottom: 105px;
    cursor: pointer;
}

.col-content p{
    position: absolute;
    font-size: 20px;
    color: white;
    left: 20px;
    bottom: 80px;
    cursor: pointer;
}

.col-content:hover{
    filter: brightness(106%);
    transform: translateY(-4px);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

/* Newsletter */

.newsletter{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.newstext h2{
    margin-top: 100px;
    font-size: 38px;
}

.newstext p{
    font-size: 20px;
    color: var(--muted-text);
}

.newsletter form{
    margin-top: 60px;
    width: 100%;
    position: relative;
}

.newsletter form input:first-child{
    display: inline-block;
    width: 300px;
    font-size: 17px;
    outline: none;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px 150px 20px 30px;
    background: #0d1114;
    color: var(--text-color);
}

.newsletter form input:last-child{
    display: inline-block;
    position: absolute;
    outline: none;
    border: 2px solid transparent;
    border-radius: 20px;
    color: white;
    background-color: var(--brand-primary);
    padding: 14px 30px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 450;
    top: 6px;
    right: 6px;
    transition: ease 0.30s;
}

.newsletter form input:last-child:hover{
    border: 2px solid var(--brand-primary);
    background-color: white;
    color: var(--brand-primary);
}


/* Footer */

.footer{
    margin-top: 80px;
    background-color: var(--brand-primary);
}

.foot{
    padding: 20px 0;
}

.footer-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    
}

.footlinks h4{
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    position: relative;
}


.footlinks h4::before{
    content: "";
    position: absolute;
    height: 2px;
    width: 70px;
    left: 0;
    bottom: -7px;
    background: white;
}

.footlinks ul li{
    margin-bottom: 15px;
}

.footlinks ul li a{
    font-size: 17px;
    color: #dddddd;
    display: block;
    transition: ease 0.30s;
}

.footlinks ul li a:hover{
    transform: translate(6px);
    color: white;
}

.social a{
    font-size: 25px;
    margin: 4px;
    height: 40px;
    width: 40px;
    color: var(--brand-primary);
    background-color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: ease 0.30s;
}

.social a:hover{
    transform: scale(1.2);
}

.end{
    text-align: center;
    padding-top: 36px;
    padding-bottom: 12px;
}

.end p{
    font-size: 15px;
    color: white;
    letter-spacing: 1px;
    font-weight: 300;
}

/* About Us */

.aboutbody{
    background-color: #191919;
}

.about{
    width: 100%;
    padding: 78px 0px;
}

.about img{
    height: auto;
    width: 400px;
}

/* Pop image utility */
.pop-image{
    display: block;
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.35), 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    outline: 1px solid var(--border-color);
    outline-offset: -1px;
}
.pop-image:hover{
    transform: scale(1.05);
    box-shadow: 0 28px 70px rgba(0,0,0,0.45), 0 10px 24px rgba(0,0,0,0.35);
    filter: brightness(1.05);
}

.abt-text{
    width: 500px;
}

.abt-text h1{
    font-size: 70px;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.abt-text h1 span{
    color: #fc0050;
    letter-spacing: 1px;
}

.abt-text p{
    color: white;
    font-size: 24px;
    margin-bottom: 45px;
    line-height: 30px;
    letter-spacing: 1px;
}

.main{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* About layout: place image on the right on wide screens */
.about .main{ flex-direction: row-reverse; gap: 40px; }
@media (max-width: 820px){ .about .main{ flex-direction: column; gap: 24px; } }

.connectbtn{
    display: inline-block;
    background-color: #fc0050;
    font-size: 18px;
    color: white;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: ease 0.4s;
    border: 2px solid transparent;
    letter-spacing: 1px;
}

.connectbtn:hover{
    background-color: transparent;
    border: 2px solid #fc0050;
    transform: scale(1.1);
}

.connect-section{
    margin-top: 26px;
}


.social-icons a{
    height: 40px;
    width: 40px;
    margin: 4px;
    font-size: 30px;
    color: #101010;
    background-color: white;
    border-radius: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: ease 0.30s;
}

.social-icons a:hover{
    transform: scale(1.2);
}

/* Contact Us */

.contactbody{
    background-color: #0c0f11;
    background-repeat: no-repeat;
    background-size: cover;
    
}

.contact{
    padding: 110px 30%;
    height: 100%;
    min-height: 100vh;
}

.contact-form h1{
    font-size: 80px;
    color: white;
    margin-bottom: 20px;
}

.contact-form h1 span{
    color:#fc0050;
}

.contact-form p{
    color: white;
    line-height: 30px;
    letter-spacing: 1px;
    font-size: 23px;
    margin-bottom: 20px;
}


.contact-form form input,form textarea{
    width: 100%;
    padding: 17px;
    border: none;
    outline: none;
    background-color: #191919;
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
    border-radius: 10px;
}

.contact-form form .submit-btn{
    display: inline-block;
    background-color: #fc0050;
    font-size: 27px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 40px;
    width: 220px;
    cursor: pointer;
    transition: ease 0.30s;

}

.contact-form form .submit-btn:hover{
    border: 2px solid #fc0050;
    background-color: transparent;
    transform: scale(1.1);

}

/* Registration Form */

.register-body{
    background-color: #0c0f11;
    background-repeat: no-repeat;
    background-size: cover;

}

.registration{
    padding: 110px 30%;
    height: 100%;
    min-height: 100vh;
}

.register-form h1{
    font-size: 80px;
    color: white;
    margin-bottom: 20px;
}
.register-form h1 span{
    color: #fc0050;
}

.register-form{
    color: white;
    font-size: 20px;
}

.register-form form input{
    color: white;
    padding: 17px;
    background-color: #191919;
    font-size: 20px;
    outline: none;
    border: none;
    border-radius: 10px;
    margin-bottom: 20px;
    
}
.register-form h4{
    font-size: 22px;
    font-weight: 500;
    margin-top: 20px;
    color: #fc0050;
}


.register-form form .submitbtn{
    display: inline-block;
    background-color: #fc0050;
    font-size: 27px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 60px;
    width: 220px;
    cursor: pointer;
    transition: ease 0.30s;
}

.register-form form .submitbtn:hover{
    border: 2px solid #fc0050;
    background-color: transparent;
    transform: scale(1.1);
}


.location-body{
    background-color: #0c0f11;
    color: white;
}

.location-section{
    padding: 110px;
    height: 100%;
    min-height: 100vh;
}

.location-heading h1{
    margin-top: 20px;
    font-size: 60px;
    margin-bottom: 20px;
}

.location-heading h1 span{
    color: #fc0050;
}

.location-detail h1{
    padding-top: 60px;
    color: #fc0050;
    font-size: 40px;
}

.location-detail p{
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.location-img img{
    height: 400px;
    width: 400px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.stars i{
    font-size: 20px;
    color: rgb(197, 167, 44);
}

.location button {
    background-color: #fc0050;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.location button:hover {
    background-color: transparent;
    border: 2px solid #fc0050;
    transform: scale(1.05);
}

/* Cart Section Styling */
.cart-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    background: var(--surface-muted);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    font-family: 'Poppins', sans-serif;
}

.cart-section h2 {
    text-align: center;
    font-family: 'Paytone One', sans-serif;
    color: #fc0050;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

#cart-items {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f7f7;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: #ffe5eb;
}

.cart-item span {
    font-size: 1rem;
    font-weight: 500;
}

.delete-btn {
    background: #fc0050;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: #e60044;
}

#total {
    text-align: right;
    font-size: 1.5rem;
    color: #e9e9e9;
    font-weight: 600;
    margin-bottom: 20px;
}

#checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #fc0050;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

#checkout-btn:hover {
    background: #e60044;
}

/* Cart Page Banner/Header */
.cart-banner {
    width: 100%;
    height: 35vh;
    background: linear-gradient(rgba(252,0,80,0.35),rgba(10,14,16,0.75))
        , url('../images/cart-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}
.cart-banner::before,
.cart-banner::after {
    display: none !important;
    pointer-events: none !important;
}
.cart-banner .content {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    background: transparent;
}

/* Minimal override — only shrink cart header (no other changes) */
.cart-banner {
    height: 14vh;        /* smaller vertical size */
    min-height: 80px;   /* ensure usability on small screens */
    max-height: 140px;  /* cap on very large viewports */
    margin-bottom: 18px;
    overflow: hidden;
}

.cart-banner .content {
    padding: 6px 12px;
}

.cart-banner .content h1 {
    font-size: 1.6rem;
    margin: 0;
    line-height: 1;
}

/* Cart Container */
.cart-container {
    max-width: 820px;
    margin: 24px auto 64px;
    background: var(--surface-muted);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    padding: 22px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1000;
}

.cart-container h2 {
    text-align: left;
    color: #fc0050;
    font-family: 'Paytone One', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.cart-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.cart-item {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: #0f1418;
    border: 1px solid var(--border-color);
}

.cart-item .ci-left { flex: 1 1 auto; min-width: 0; }
.ci-name { font-weight: 600; color: #fafafa; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ci-unit { font-size: 0.9rem; color: #b8b8b8; margin-top: 4px; }

.ci-qty { display:flex; align-items:center; gap:8px; }
.qty-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #eaeaea;
}
.qty-value { min-width: 26px; text-align: center; font-weight: 600; }

.ci-right { display:flex; align-items:center; gap:12px; }

.remove-btn {
    background: transparent;
    border: 1px solid #7a2138;
    color: #ff6f9a;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.remove-btn:hover { background: rgba(252,0,80,0.15); }

.cart-summary {
    display:flex;
    align-items:flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap:wrap;
}

.summary-left { flex:1 1 auto; color:#444; }
.summary-row { display:flex; justify-content:space-between; margin-bottom:6px; color:#444; }

.summary-right { display:flex; flex-direction:column; align-items:flex-end; gap:8px; }

.total-amount {
    font-size: 1.2rem;
    font-weight:700;
    color:#f3f3f3;
}

.checkout-btn {
    background: #fc0050;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
}

.checkout-btn:hover { background:#d90045; }

.clear-cart {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    color: #eaeaea;
}

/* Professional add-to-cart button (locations) */
.add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: linear-gradient(90deg,#fc0050 0%, #ff6b88 100%);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 28px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s;
    box-shadow: 0 6px 18px rgba(252,0,80,0.18);
    min-width: 170px;
}
.add-to-cart .label { display:inline-block; }
.add-to-cart.added { background: linear-gradient(90deg,#28a745 0%, #2ecc71 100%); box-shadow: 0 6px 18px rgba(46,204,113,0.16); }
.add-to-cart:active { transform: translateY(1px); }
.add-to-cart:focus { outline: 3px solid rgba(252,0,80,0.12); outline-offset: 3px; }

/* Cart section adjustments (locations page) */
.cart-section {
    max-width: 980px;
    margin: 30px auto;
    padding: 22px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    color: #111;
    font-family: 'Poppins', sans-serif;
}
.cart-section h2 { color: #fc0050; font-family:'Paytone One',sans-serif; margin-bottom: 12px; text-align: left; }
.cart-list { list-style: none; padding: 0; margin: 12px 0 18px; }

/* small tidy: keep checkout centered on narrow layouts */
.cart-summary { display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.summary-right { display:flex; flex-direction:column; align-items:flex-end; gap:8px; }
.checkout-btn { background:#fc0050; color:#fff; border:none; padding:10px 18px; border-radius:10px; font-weight:700; cursor:pointer; }
.clear-cart { background:transparent; border:1px solid rgba(21,74,74,0.08); padding:8px 12px; border-radius:10px; cursor:pointer; }
@media (max-width:720px){
    .cart-summary { flex-direction:column-reverse; align-items:stretch; }
    .summary-right { width:100%; align-items:stretch; }
    .checkout-btn { width:100%; }
}

/* ensure buttons do not float under fixed header */
nav { z-index: 2000; }
.cart-section, .add-to-cart, .cart-list li { position: relative; z-index: 1010; }

/* Seasons & Batches */
.seasons-batches{
    padding: 32px 0;
    background: #0f1719;
    position: relative;
    z-index: 5;
    margin: 24px 0;
}
.seasons-batches .package-title h2{
    padding-top: 0;
}
.seasons-batches form{
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
}
.seasons-batches select{
    flex: 1;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #0d1114;
    color: #e6e6e6;
    font-size: 15px;
}

/* Responsive tweaks */
@media (max-width: 992px){
    .title h1{ font-size: 7vh; }
    .image img{ height: 380px; }
    .col-content img{ height: 340px; }
}
@media (max-width: 680px){
    .navbar a{ padding: 10px 12px; font-size: 16px; }
    .title{ margin-top: 28vh; }
    .title h1{ font-size: 6vh; }
    .image img{ height: 300px; }
    .col-content img{ height: 280px; }
}


