/* Styling Page specific styles */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Lato:ital,wght@0,700;1,700&display=swap');

/* --- HEADER STYLES --- */
.header-banner {
    height: 100vh; 
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

.styling-page-title {
    position: relative;
    z-index: 1;
    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);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.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;
}

/* --- INTRO SECTION STYLES --- */
.intro-section h2 {
    font-weight: 700; 
    font-size: 2.5rem; 
    color: #ccb765;
    text-transform: none;
    line-height: 1.3;
}

/* --- PACKAGES SECTION STYLES --- */
.packages-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.packages-section .card {
    border: none;
    background-color: transparent;
}

.packages-section .card-title {
    font-weight: bold;
    color: #ccb765;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    font-size: 1.75rem; 
}

.packages-section .card-text {
    font-size: 1.15rem;
    line-height: 1.6;
}

.text-custom-color {
    color: #ccb765 !important;
    font-weight: bold !important;
}

/* --- BOOK NOW LINK STYLES --- */
.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);
}

/* --- WHY CHOOSE SECTION STYLES --- */
.section-why-choose {
    background-color: #fff;
    color: #000;
}

.why-choose-title {
    font-size: 3.5rem; 
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* CARD STYLES UPDATED FOR SWAP EFFECT */
.why-choose-card {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.05); 
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 320px; 
    position: relative; /* Essential for absolute positioning of description */
    overflow: hidden; 
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

/* CONTENT WRAPPERS */
/* The front content (Icon + Title) */
.why-choose-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
}

/* The back content (Description) */
.why-choose-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #fff; /* Opaque background to cover front content */
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* SWAP ANIMATION ON HOVER */
.why-choose-card:hover .why-choose-content {
    opacity: 0;
    transform: scale(0.95);
}

.why-choose-card:hover .why-choose-description {
    opacity: 1;
    transform: scale(1);
}

/* ELEMENT STYLES */
.why-choose-icon {
    font-size: 3rem; 
    color: #ccb765; 
    margin-bottom: 1rem;
    display: inline-block;
}

.why-choose-card .card-title {
    font-size: 1.1rem;
    color: #212121;
}

.why-choose-description p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}


/* --- SPACING UTILITIES --- */
.mb-extra-large {
    margin-bottom: 7rem;
}

.mt-extra-large {
    margin-top: 8rem;
}

#why-choose-section {
    margin-bottom: 8rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .styling-page-title {
        font-size: 3rem;
    }

    .header-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .intro-section h2 {
        font-size: 2rem; 
    }

    .packages-section h2, .why-choose-title {
        font-size: 2.5rem;
    }

    .section-why-choose .card {
        margin-bottom: 1rem;
    }
}