* {
    box-sizing: border-box;
}

:root {
    --gold: #d8a313;
    --maroon: #7f1814;
    --ink: #1d1d1d;
    --muted: #6f6f6f;
    --surface: #f7f7f5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--ink);
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-wordmark {
    font-family: "Cinzel", serif;
}

a {
    text-decoration: none;
}

.top-bar {
    background: var(--maroon);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.top-bar span {
    white-space: nowrap;
}

.top-bar i {
    color: var(--gold);
    margin-right: 6px;
}

.site-nav {
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
    padding: 14px 0;
}

.brand-wordmark {
    color: var(--maroon);
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.brand-accent {
    color: var(--gold);
    margin-right: 6px;
    font-weight: 700;
}

.navbar .nav-link {
    color: #444;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(216, 163, 19, 0.24);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn-gold:hover,
.btn-gold:focus {
    color: #fff;
    background: #bf8f06;
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(127, 24, 20, 0.18);
}

.btn-book-nav {
    padding: 0.72rem 1.2rem;
}

.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 5rem 0 4rem;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgba(22, 14, 8, 0.86) 0%, rgba(22, 14, 8, 0.64) 56%, rgba(22, 14, 8, 0.38) 100%); */
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 0.95;
    margin-bottom: 1rem;
    max-width: 14ch;
}

.hero h1 .accent,
.hero h1 strong,
.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.6rem;
    margin-top: 2rem;
}

.hero-item {
    min-width: 104px;
    color: #fff;
}

.hero-item i {
    display: inline-block;
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.hero-item strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
}

.hero-item div {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.86);
}

.section,
.section-block {
    padding: 5rem 0;
}

.soft-section,
.booking-section,
.contact-section {
    background: #fff;
}

.section-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f5 100%);
}

.shadow-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(29, 29, 29, 0.08);
}

.section-kicker {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.section-heading {
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.06;
    margin-bottom: 1rem;
}

.section-heading--small {
    font-size: clamp(1.6rem, 2.3vw, 2.3rem);
}

.section-copy {
    color: var(--muted);
    line-height: 1.8;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 22px 44px rgba(29, 29, 29, 0.12);
}

.title {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.6rem;
}

.counter {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-top: 1.8rem;
}

.counter h2 {
    color: var(--maroon);
    font-size: 1.9rem;
    margin-bottom: 0.2rem;
}

.counter p {
    margin: 0;
    color: var(--muted);
}

.occasion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.occasion-card {
    padding: 1.7rem;
}

.occasion-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.occasion-tile {
    min-height: 92px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: #202020;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.occasion-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(216, 163, 19, 0.45);
    box-shadow: 0 10px 20px rgba(29, 29, 29, 0.06);
    color: var(--ink);
}

.occasion-tile i {
    color: var(--gold);
    font-size: 1.4rem;
}

.occasion-tile span {
    font-size: 0.95rem;
    font-weight: 500;
}

.service-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.1rem;
}

.service-list-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.service-list-item i {
    color: var(--gold);
    margin-top: 0.18rem;
    font-size: 1rem;
}

.service-list-item h6 {
    margin-bottom: 0.15rem;
    font-size: 0.96rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.service-list-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.pricing-section .card,
.booking-card,
.contact-section .shadow-card,
.gallery-card {
    border: 0;
    border-radius: 12px;
}

.pricing-section .card-header {
    border-bottom: 0;
}

.pricing-section .list-group-item {
    border-color: #ececec;
}

.pricing-section .btn-warning,
.pricing-section .btn.btn-warning {
    border-radius: 999px;
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 700;
}

.pricing-section .btn-warning:hover {
    background: #bf8f06;
    border-color: #bf8f06;
    color: #fff;
}

.gallery-card img,
.pricing-section .card-img-top {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.check-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.8rem;
    color: #404040;
}

.check-list li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0;
}

.booking-card {
    padding: 1.5rem;
}

.booking-card .form-control,
.booking-card .form-select {
    border-color: #dfe0df;
    border-radius: 8px;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .2rem rgba(216, 163, 19, 0.12);
}

/* CONTACT */
.contact-detail {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-bottom: 1.1rem;
}

.contact-detail i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.contact-detail span {
    display: block;
    text-transform: uppercase;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.contact-detail strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
}

/* FOOTER */

.site-footer {
    position: relative;
    background: #1d1d1d;
    color: rgba(255, 255, 255, 0.84);
    padding: 3.4rem 0 1.25rem;
}

.footer-brand {
    color: var(--gold);
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.3rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transition: background .2s ease, color .2s ease;
}

.footer-socials a:hover {
    background: var(--gold);
    color: #1d1d1d;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a,
.footer-contact-list li {
    color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-list i {
    color: var(--gold);
    margin-right: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.back-to-top {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    width: 46px;
    height: 46px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
/* HERO SECTION */

.hero{
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
}

.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,.35); */
}

.hero .container{
    position: relative;
    z-index: 2;
}

.hero h1{
    color:#fff;
    font-size:65px;
    font-weight:400;
    line-height:1.2;
    margin-bottom:25px;
}

.hero h1 span{
    display:inline;          /* keeps it on the same line */
    color:#d4af37;
    background:transparent;  /* remove blue background */
    padding:0;
    margin-left:10px;
}

.hero p{
    color:#fff;
    font-size:22px;
    max-width:650px;
    margin-bottom:30px;
}



/*==========================
        GALLERY PAGE
===========================*/

.gallery-page{
    background:#fafafa;
}

.gallery-item{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-content{

    padding:20px;

    text-align:center;

}

.gallery-content h5{

    font-weight:600;

    margin:0;

}
.gallery-card{
    overflow:hidden;
    border-radius:12px;
}

.gallery-img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.4s;
}

.gallery-card:hover .gallery-img{
    transform:scale(1.08);
}




.gallery-section{
    background:#faf8f4;
}

.section-tag{
    color:#d4af37;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:2px;
}

.section-title{
    font-size:52px;
    margin:15px 0;
    font-weight:700;
    color:#222;
}

.section-desc{
    max-width:700px;
    margin:auto;
    color:#777;
    font-size:18px;
}

.gallery-card{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding:25px;
    opacity:0;
    transition:.4s;
}

.gallery-overlay h5{
    color:#fff;
    font-size:24px;
    margin:0;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}



.hero h1{
    color:#fff;
    font-size:65px;
    font-weight:400;
    line-height:1.1;
    margin-bottom:20px;
}

.hero h1 span{
    color:#d4af37;
    display:inline;          /* important */
    background:none;
    padding:0;
    white-space:nowrap;      /* keeps Special Moments together */
}

/* VIDEOS  */
.card{
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15)!important;
}

.card iframe{
    border:none;
}

.card h5{
    font-weight:700;
    margin:0;
}

.card{
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15)!important;
}

.card iframe{
    border:none;
}

.card h5{
    font-weight:700;
    margin:0;
}


/* MAP */
.map-container{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.map-container iframe{
    width:100%;
    display:block;
}


@media (max-width: 1199.98px) {
    .occasion-grid,
    .service-list-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .site-nav .navbar-collapse {
        padding-top: 1rem;
    }

    .hero {
        min-height: 68vh;
    }
}

@media (max-width: 767.98px) {
    .top-bar span {
        display: block;
        margin-right: 0;
        margin-bottom: 0.25rem;
    }

    .hero {
        padding-top: 4rem;
        padding-bottom: 3.5rem;
    }

    .hero p {
        font-size: 0.98rem;
    }

    .hero-box {
        gap: 1rem;
    }

    .occasion-card,
    .booking-card {
        padding: 1.2rem;
    }

    .section,
    .section-block {
        padding: 4rem 0;
    }
}