/* Packages specific styles */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Lato:wght@700&display=swap');

/* Header styling */
.header-banner-packages {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-banner-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

.header-banner-packages .container {
    z-index: 1;
}

.packages-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.header-text {
    font-size: 1.25rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.btn-custom-white {
    position: relative;
    z-index: 1;
    background-color: transparent !important; 
    color: #ccb765 !important; 
    border: 2px solid #ccb765 !important; 
    font-weight: bold !important;
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 0 !important; 
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-custom-white:hover {
    background-color: #ccb765 !important; 
    border-color: #ccb765 !important;
    color: #fff !important; 
    text-decoration: none;
}

/* --- SEAMLESS PLANNING SECTION --- */
.section-seamless-planning {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* UPDATED: Increased font size slightly to 2.5rem */
.packages-section-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 2.5rem; 
    font-weight: 700;
    line-height: 1.2;
    color: #ccb765;
}

/* --- PACKAGES ALTERNATE LIST --- */
.packages-section-alternate {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.packages-section-alternate .card {
    border: none;
    background-color: transparent;
}

.packages-section-alternate .card-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    color: #ccb765;
    font-size: 1.75rem;
}

.packages-section-alternate .card-text {
    font-size: 1.15rem;
    line-height: 1.6;
}

.text-custom-color {
    color: #ccb765 !important;
    font-weight: bold !important;
}

/* --- BOOK NOW LINK --- */
.book-now-link {
    display: inline-flex;
    align-items: center;
    color: #ccb765;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 0;
    transition: color 0.3s ease, transform 0.3s ease; 
}

.book-now-link:hover {
    color: #ccb765;
    text-decoration: none; 
    transform: translateY(-5px); 
}

.book-now-link i {
    color: inherit; 
    font-size: 1.1rem; 
    font-weight: 900; 
    -webkit-text-stroke: 1px currentColor; 
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.book-now-link:hover i {
    transform: translateX(5px);
}

/* --- SPACING UTILITIES --- */
.mb-extra-large {
    margin-bottom: 7rem;
}

.mt-extra-large {
    margin-top: 8rem;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .packages-title {
        font-size: 3rem; 
    }
    
    .header-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* UPDATED: Slightly increased mobile font size */
    .packages-section-title {
        font-size: 2rem; 
    }

    .packages-section-alternate .col-md-6,
    .packages-section-alternate .col-md-6 * {
        text-align: left !important;
    }
}