/* --- MAIN STYLES (MATCHING WEDDING PAGE) --- */
:root {
    --text-color: #222;
    --bg-color: #fff;
    --accent: #D4AF37;
    /* Gold */
    --purple-lux: #6a1b9a;
    /* Royal Purple */
    --dark-bg: #111111;
    --gray-light: #f9f9f9;
}

body {
    font-family: 'Uni Sans', 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-weight: 400;
    line-height: 1.6;
    padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #111;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 25px;
}

.section-divider.start {
    margin: 0 0 25px 0;
}

@media (max-width: 991px) {
    .section-divider.start {
        margin: 0 auto 25px;
    }

    .text-lg-start {
        text-align: center !important;
    }
}

/* --- NAV --- */
.navbar {
    background-color: var(--dark-bg) !important;
    padding: 0;
    border-bottom: 1px solid #222;
    min-height: 80px;
    transition: all 0.3s;
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff !important;
    margin: 0 15px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.logo-mobile {
    max-height: 40px;
}

.logo-desktop {
    max-height: 55px;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
    margin-right: 15px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--dark-bg);
        padding: 20px 0;
        text-align: center;
    }

    .nav-link {
        justify-content: center;
        padding: 15px 0;
    }
}

@media (min-width: 992px) {
    .navbar .container {
        height: 80px;
    }

    .navbar-collapse,
    .navbar-nav,
    .nav-item {
        height: 100%;
    }
}

/* --- HERO --- */
.prom-hero {
    min-height: 60vh;
    background-image: url('https://images.pixieset.com/68309375/aecfe6c33b44a70ece3418012f6990e5-xxlarge.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1px;

    @media (max-width: 991px) {
        min-height: 20vh;
        background-position: bottom;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-title {
    color: white;
    text-align: center;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.hero-title h1 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-title p {
    font-size: .5rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #eee;
}

@media (min-width: 992px) {
    .hero-title h1 {
        font-size: 3.5rem;
    }

    .hero-title p {
        font-size: 1rem;
    }
}

/* --- SERVICES & WHY US (NEW SECTIONS) --- */
.service-list p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
}

.service-list b {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.reason-card {
    padding: 40px 25px;
    text-align: center;
    border: 1px solid #eee;
    background: #fff;
    height: 100%;
    transition: 0.3s;
    border-radius: 4px;
}

.reason-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.reason-icon {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    transition: 0.3s;
}

.reason-card:hover .reason-icon {
    color: var(--accent);
}

.reason-card h5 {
    margin-bottom: 15px;
    font-weight: 700;
}

.reason-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* --- CALCULATOR STYLES --- */
.calc-section {
    background-color: var(--gray-light);
    padding: 60px 0;
}

.calc-card {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--accent);
}


/* Package Cards */
.package-option {
    display: none;
}

.extra-card-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #eee;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    height: 100%;
    background: #fff;
    width: 100%;
}

.extra-card-label .fw-bold {
    font-size: 0.9rem;
    line-height: 1.2;
}

.extra-price {
    font-size: 0.75rem !important;
    color: #888;
}

.package-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #eee;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    height: 100%;
    background: #fff;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.package-label:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.package-option:checked+.package-label {
    border-color: #D4AF37;
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.package-icon {
    font-size: 4rem;
    color: #D4AF37;
    margin-bottom: 20px;
    display: block;
}

/* Lux Package Special */
.package-label.lux-pack {
    border: 2px solid #e1bee7 !important;
}

.package-label.lux-pack .package-icon {
    color: #6a1b9a !important;
}

.package-label.lux-pack:hover,
.package-option:checked+.package-label.lux-pack {
    border-color: #6a1b9a !important;
    background-color: #f8f0fa !important;
    box-shadow: 0 8px 25px rgba(106, 27, 154, 0.15) !important;
}

.package-label.lux-pack .package-details li i {
    color: #6a1b9a !important;
}

.package-label.lux-pack .package-details li b {
    color: #6a1b9a !important;
}

.package-label.lux-pack strong {
    color: #000;
}

.package-label.lux-pack .price-tag {
    color: #444;
}

.package-label.lux-pack strong,
.package-option:checked+.package-label.lux-pack strong {
    color: #000;
}

.package-label.lux-pack .price-tag {
    color: #444;
}

.package-label.lux-pack .package-details li i {
    color: #6a1b9a !important;
}

.package-label.lux-pack .package-details li b {
    color: #6a1b9a;
}

.package-details {
    font-size: 0.85rem;
    color: #555;
    margin-top: 20px;
    list-style: none;
    padding: 0;
    text-align: left;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.package-details li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.package-details li i {
    color: #D4AF37;
    margin-right: 12px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.package-label strong {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.package-label .price-tag {
    font-size: 1rem;
    font-weight: 700;
    color: #444;
}

.package-label.lux-pack:hover .package-details li i,
.package-option:checked+.package-label.lux-pack .package-details li i {
    color: var(--purple-lux) !important;
}

/* Checkboxes */
.custom-check-wrapper {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.2s;
    display: flex;
    align-items: center;
}

.custom-check-wrapper:hover {
    border-color: #ccc;
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* Price Display */
.total-price-box {
    background: #222;
    color: #fff;
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin: 20px 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px solid #444;
    padding: 8px 0;
    color: #aaa;
}

.summary-item span:last-child {
    color: #fff;
    font-weight: 600;
}

.btn-custom {
    border: 2px solid var(--accent);
    background: var(--accent);
    color: #fff;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
    width: 100%;
    display: block;
    text-decoration: none;
    margin-top: 20px;
}

.btn-custom:hover {
    background: #fff;
    color: var(--accent);
}

/* --- GALLERY MASONRY --- */
.masonry {
    display: block !important;
    column-count: 3;
    column-gap: 15px;
    width: 100%;
}

.masonry-item {
    display: inline-block !important;
    width: 100% !important;
    margin-bottom: 10px !important;
    break-inside: avoid;
    padding: 0;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: #f9f9f9;
    aspect-ratio: auto !important; /* Remove fixed aspect ratio */
}

.portfolio-img {
    width: 100%;
    height: auto !important; /* Allow natural height */
    object-fit: contain !important; /* Don't crop */
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

/* Responsiveness for Masonry */
@media (max-width: 991px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 575px) {
    .masonry {
        column-count: 1;
    }
}

/* --- FOOTER --- */
footer {
    background: #111;
    color: #aaa;
    padding-top: 60px;
    font-size: 0.9rem;
    overflow: hidden;
}

footer h5 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
}

footer ul {
    padding: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

footer ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
}

.social-link {
    font-size: 1.2rem;
    margin-right: 15px;
    color: #fff;
    transition: 0.3s;
}

.social-link:hover {
    color: var(--accent);
}

@media (max-width: 991px) {

    .g-5,
    .gx-5 {
        --bs-gutter-x: 0;
    }

    .calc-card {
        padding: 40px 0;
    }

    h2.mb-4.h2.text-black.fw-normal.lh-base {
        font-size: 1.2rem;
    }

    .price-display {
        font-size: 1.7rem;
    }
}

.fs-5 {
    font-size: 1rem !important;
}

/* --- Extra Cards Styling --- */
.extra-option {
    display: none;
}

.extra-card-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #eee;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s all ease;
    height: 100%;
    background: #fff;
    font-weight: 600;
    color: #555;
    position: relative;
}

.extra-card-label:hover {
    border-color: #ccc;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.extra-option:checked + .extra-card-label {
    border-color: var(--accent);
    background-color: #fffcf5;
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

.extra-card-icon {
    font-size: 1.8rem;
    color: #ccc;
    margin-bottom: 10px;
    transition: 0.2s;
}

.extra-option:checked + .extra-card-label .extra-card-icon {
    color: #D4AF37;
}

.extra-card-label:hover {
    border-color: #D4AF37;
}

.extra-option:checked + .extra-card-label {
    border-color: #D4AF37;
    background: #fff;
}

.extra-price {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
    font-weight: 400;
}

.extra-option:checked + .extra-card-label .extra-price {
    color: #444;
}
