body {
margin: 0;
font-family: 'Arial', sans-serif;
}

/* HEADER */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 40px;
background: #ffffff;
color: black;
}

.logo-section {
display: flex;
flex-direction: column;
text-align: center;
}

.logo-section img {
    max-height: 130px;
    width: auto;
    object-fit: contain;
}

.tagline {
    font-family: 'Lora', serif;
    font-size: 10px;
    font-style: italic;
    color: #0b3d4a;
    font-weight: 600;
    margin-top: 4px;
}

/* CONTACT SECTION */
.contact-wrapper {
display: flex;
flex-direction: column;
align-items: flex-end;
}
.contact-info {
display: flex;
gap: 15px;
align-items: center;
}

.contact-info {
display: flex;
align-items: center;
gap: 12px;
font-size: 18px;
}

/* Email */
.email {
text-decoration: none;
color: orange;
font-weight: bold;
transition: color 0.3s ease;
}
.email:hover {
    color: #1d7fd1; 
}

/* Divider */
.divider {
width: 1px;
height: 40px;
background: #ccc;
}

/* Icons */
.icon img {
height: 30px;
width: 30px;
}

/* Phone */
.phone-number {
font-weight: 600;
color: #3b3b3b;
}
.social-icons {
margin-top: 8px;
display: flex;
gap: 12px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: 0.3s ease;
}

.social-icons img:hover {
    filter: brightness(70%);
}


/* Whatsapp Button */
.floating-whatsapp {
position: fixed;
bottom: 20px;
right: 20px;
background: #25D366;
padding: 9px;
border-radius: 50%;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
z-index: 1000;
cursor: pointer;
animation: pulse 1.5s infinite;
transform: scale(1.1);
box-shadow: 0 0 15px rgba(37, 211, 102, 0.8),
0 0 25px rgba(37, 211, 102, 0.6);

}
.floating-whatsapp img {
width: 30px;
height: 30px;
}
.floating-whatsapp:hover {
transform: scale(1.15);
box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}
70% {
box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}
}
/* Tabs */
.main-nav {
display: flex;
justify-content: center;
gap: 40px;
padding: 12px 0;
background: #fff;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}

.main-nav a {
text-decoration: none;
color: #333;
font-size: 16px;
letter-spacing: 1px;
transition: 0.3s;
}

.main-nav a:hover {
color: orange;
}

/* About Section Title */
.about-container {
display: flex;
align-items: stretch; /* makes both sides equal height */
gap: 50px;
max-width: 1200px;
margin: 0 auto;          /* centers the content */
padding: 0 40px;   
}

.about-text {
flex: 1;
}

.about-image {
flex: 1;
display: flex;
}

.about-image img {
margin-top: 40px;
width: 100%;
height: auto;
object-fit: contain;
border-radius: 12px;
}

.about-text h1.about-title {
font-family: 'Cinzel', serif;
font-size: 42px;
color: #b8860b;
letter-spacing: 2px;
margin-bottom: 10px;
}

.about-text p.about-subtitle {
font-family: 'Lora', serif;
font-style: italic;
font-size: 18px;
color: #666;
margin-bottom: 25px;
}
.about-text p.about-closing {
font-family: 'Lora', serif;
font-size: 18px;
color: #666;
margin-top: 30px;
}
.about-text p {
font-family: 'Lora', serif;
font-size: 16px;
line-height: 1.8;
color: #333;
margin-bottom: 18px;
}


/* HERO */
.hero {
position: relative;
height: 80vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
}

.hero-slides {
position: absolute;
inset: 0;
z-index: 1;
}

.slide {
position: absolute;
inset: 0;
background-size: cover;
opacity: 0;
transition: opacity 1.5s ease-in-out;
}

.slide.active {
opacity: 1;
}

.hero-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.35);
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
background: rgba(0, 0, 0, 0.45);
padding: 30px 40px;
border-radius: 12px;
}

.hero-content h2 {
font-size: 45px;
margin-bottom: 12px;
font-family: 'Lora', serif;
}

.hero-content p {
font-size: 20px;
margin-bottom: 20px;
font-family: 'Lora', serif;
}

.hero-btn {
display: inline-block;
padding: 12px 28px;
background: orange;
color: white;
text-decoration: none;
font-size: 15px;
font-weight: 600;
border-radius: 4px;
transition: background 0.3s ease;
}

.hero-btn:hover {
background: #cc8400;
}
/*Collections*/

.collections {
    padding: 10px 20px;
    text-align: center;
}
.signature {
    padding-top: 80px; /* increase this as needed */
}
.collections h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-family: 'Lora', serif;
}
.collection-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.collection-card {
    width: 250px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: black;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.collection-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.collection-info {
    position: static; 
    padding: 15px;
    background: white;
    text-align: left;
}

.collection-info h3 {
    margin: 0;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.collection-info p {
    font-size: 14px;
    margin-top: 5px;
    color: #555;
}
.collection-card:hover {
    transform: translateY(-5px);
}
.collcontent-container {
display: flex;
align-items: stretch; /* makes both sides equal height */
gap: 50px;
max-width: 1200px;
margin: 0 auto;          
padding: 0 40px;   
}

.collcontent-text {
flex: 1;
}

.collcontent-image {
flex: 1;
display: flex;
}

.collcontent-image img {
width: 100%;
height: auto;
object-fit: contain;
border-radius: 12px;
}

.collcontent-text h1.collcontent-title {
font-family: 'Cinzel', serif;
font-size: 30px;
color: #039fd2;
letter-spacing: 2px;
margin-bottom: 10px;
}

.collcontent-text p.collcontent-subtitle {
font-family: 'Lora', serif;
font-style: italic;
font-size: 16px;
color: #885f50;
margin-bottom: 25px;
}

.collcontent-text p {
font-family: 'Lora', serif;
font-size: 16px;
line-height: 1.8;
color: #333;
margin-bottom: 18px;
}
/* =========================
   WOMEN SOLO LAUNCH EVENT
========================= */

.launch-event {
    padding: 70px 20px;
    background: linear-gradient(to bottom, #faf8f5, #ffffff);
}

.launch-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.launch-container img {
    width: 100%;
    max-width: 700px;   /* controls image size */
    height: auto;
    border-radius: 18px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Content Below Image */

.launch-content {
    margin-top: 35px;
    padding: 0 20px;
}

.launch-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: #0b3d4a;  
    margin-bottom: 18px;
    letter-spacing: 1px;
}

/* Main Description */

.launch-content p {
    font-family: 'Lora', serif;
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    max-width: 850px;
    margin: 0 auto 18px;
}

/* Highlight Text */

.launch-content strong {
    color: #b8860b;
}

/* Stylish Caption */

.launch-caption {
    margin-top: 28px;
    font-size: 22px;
    font-style: italic;
    color: #c26d2d;   /* luxury copper shade */
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .launch-event {
        padding: 50px 15px;
    }

    .launch-content h2 {
        font-size: 26px;
    }

    .launch-content p {
        font-size: 15px;
    }

    .launch-caption {
        font-size: 18px;
    }

    .launch-container img {
        max-width: 100%;
    }
}

/* WHY */
.why {
background: #f9f9f9;
padding: 60px;
text-align: center;
}

.features {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
margin-top: 20px;
}

/* CTA */
.cta {
text-align: center;
padding: 60px;
background: #111;
color: white;
}

.cta button {
margin-top: 15px;
padding: 12px 25px;
border: none;
background: orange;
color: white;
cursor: pointer;
}

/* FOOTER */
footer {
background: #000;
color: #aaa;
text-align: center;
padding: 20px;
}

.footer-contact {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 15px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
    display: block;
    transition: transform 0.3s ease;
}

.footer-contact img:hover {
    transform: scale(1.1);
}

/* CONTACT PAGE */

.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url('images/contact_hero.jpg') center/cover no-repeat;
    padding: 90px 20px;
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    margin: 0;
    letter-spacing: 2px;
}

.contact-hero-content p {
    font-family: 'Lora', serif;
    font-size: 18px;
    margin-top: 12px;
}

.contact-page {
    padding: 70px 20px;
    background: #faf8f5;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: start;
}

.contact-details,
.contact-form-box {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.contact-details h2,
.contact-form-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    color: #0b3d4a;
    margin-top: 0;
}

.contact-intro {
    font-family: 'Lora', serif;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 16px;
    background: #fcfcfc;
}

.contact-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin: 0 0 8px;
    color: #b8860b;
}

.contact-card p {
    margin: 0;
    font-family: 'Lora', serif;
    line-height: 1.8;
    color: #444;
}

.contact-card a {
    color: #0b3d4a;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.contact-social img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.contact-social img:hover {
    transform: scale(1.1);
}

.whatsapp-group {
    background: linear-gradient(135deg, #fdf7ef, #fff);
    border: 1px solid #f0dfc2;
}

.group-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 20px;
    background: #25D366;
    color: white !important;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: 0.3s ease;
}

.group-btn:hover {
    background: #1fae56;
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 14px 16px;
    font-family: 'Lora', serif;
    font-size: 15px;
    outline: none;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b8860b;
}

.contact-form button {
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    background: #0b3d4a;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #b8860b;
}

.contact-map-section {
    padding: 0 20px 70px;
    background: #faf8f5;
}

.contact-map {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
    .contact-page-container {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 34px;
    }
}
/* =========================
   THANK YOU PAGE
========================= */

.thankyou-section {
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background:
    linear-gradient(rgba(255,255,255,0.85),
    rgba(255,255,255,0.85)),
    url('images/background/contact-hero.jpg');

    background-size: cover;
    background-position: center;
}

.thankyou-card {
    background: rgba(255,255,255,0.96);
    padding: 60px 50px;
    max-width: 750px;
    width: 100%;
    text-align: center;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.thankyou-icon {
    font-size: 58px;
    color: #b8860b;
    margin-bottom: 20px;
}

.thankyou-card h1 {
    font-family: 'Cinzel', serif;
    font-size: 46px;
    color: #0b3d4a;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.thankyou-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #b8860b;
    margin-bottom: 22px;
}

.thankyou-text {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    max-width: 580px;
    margin: auto;
}

.thankyou-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.thankyou-btn {
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary-btn {
    background: #0b3d4a;
    color: white;
}

.primary-btn:hover {
    background: #092f39;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1fae56;
}

@media (max-width: 768px) {

    .thankyou-card {
        padding: 45px 25px;
    }

    .thankyou-card h1 {
        font-size: 34px;
    }

    .thankyou-subtitle {
        font-size: 20px;
    }

    .thankyou-text {
        font-size: 16px;
    }
}

/* =========================
   PACKAGES PAGE
========================= */

.packages-hero {
    height: 40vh;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('images/package_hero.jpg') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: white;
    padding: 20px;
}

.packages-hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 54px;
    margin: 0 0 12px;
    letter-spacing: 2px;
}

.packages-hero-content p {
    font-family: 'Lora', serif;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =========================
   PACKAGE GRID
========================= */

.packages-grid-section {
    padding: 60px 20px 80px;
    background: #faf8f5;
}

.packages-grid {
    max-width: 950px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
    align-items: stretch;
}

/* =========================
   PACKAGE CARD
========================= */

.package-card {
    background: #fff;

    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 8px 24px rgba(0,0,0,0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;

    height: 100%;
}

.package-card img {
    width: 100%;
    height: 220px;

    object-fit: cover;
    display: block;
}

/* =========================
   PACKAGE CONTENT
========================= */

.package-card-content {
    padding: 18px;

    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-card-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;

    margin: 0 0 10px;

    color: #111;
}

/* =========================
   DURATION
========================= */

.package-duration {
    margin-bottom: 18px;
}

.main-duration {
    display: block;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;

    color: #0b3d4a;
    font-weight: 600;

    margin-bottom: 12px;
}

/* =========================
   DESTINATION TAGS
========================= */

.package-breakdown {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.package-breakdown span {
    background: #9eeee3;

    color: #164452;

    padding: 7px 14px;

    border-radius: 999px;

    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* =========================
   PRICE
========================= */

.package-price {
    font-family: 'Lora', serif;

    font-size: 15px;
    color: #444;

    margin-bottom: 14px;

    line-height: 1.7;
}

.package-price strong {
    color: #b8860b;
    font-size: 22px;
    font-family: 'Playfair Display', serif;
}

/* =========================
   STAY HIGHLIGHTS
========================= */

.stay-highlights {
    margin: 12px 0 22px;

    padding-top: 16px;

    border-top: 1px solid #eee4d2;
}

.stay-highlights h3 {
    margin: 0 0 14px;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;

    color: #b8860b;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.stay-item {
    position: relative;


    font-family: 'Lora', serif;
    font-size: 15px;

    color: #444;

    line-height: 1.9;

    margin-bottom: 8px;
}


.stay-item strong {
    color: #0b3d4a;
}

/* =========================
   PACKAGE LIST
========================= */

.package-inclusions-title {
    margin: 0 0 10px;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;

    color: #b8860b;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-list {
    margin: 0;
    padding-left: 18px;

    font-family: 'Lora', serif;
    font-size: 14px;

    line-height: 1.6;

    color: #555;

    flex: 1;
}

.package-list li {
    margin-bottom: 4px;
}

/* =========================
   VALIDITY
========================= */

.package-validity {
    margin-top: 18px;

    font-size: 14px;

    color: orange;

    font-style: italic;

    line-height: 1.6;
}

.packages-pagination {
    max-width: 950px;
    margin: 34px auto 0;

    display: flex;
    justify-content: center;
    gap: 12px;
}

.packages-pagination a {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d7c18d;
    border-radius: 50%;

    color: #0b3d4a;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;

    background: #fff;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.packages-pagination a:hover,
.packages-pagination a.active {
    background: #0b3d4a;
    border-color: #0b3d4a;
    color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

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

}

@media (max-width: 768px) {

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

    .packages-hero {
        height: 34vh;
    }

    .packages-hero-content h1 {
        font-size: 36px;
    }

    .packages-hero-content p {
        font-size: 16px;
    }

    .package-card img {
        height: 220px;
    }

    .package-card-content h2 {
        font-size: 30px;
    }

    .package-price strong {
        font-size: 24px;
    }

}
