/* events banner  */
.event-hero {
    background: url("/src/celebrating_moments_events.webp") center center / cover no-repeat;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    /* background: rgba(0, 0, 0, 0.55); */
    width: 100%;
    padding: 80px 0;
}

.hero-title {
    font-size: 42px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
}

.hero-title span {
    color: #f2c94c;
}

.hero-subtitle {
    color: #f1f1f1;
    font-size: 17px;
    margin-top: 15px;
}

.hero-buttons .btn {
    padding: 14px;
    border-radius: 30px;
    font-size: 16px;
}

/* Buttons */
.btn-primary-hero {
    background-color: #0d6efd !important;
    border-color: #0d6efd;
    color: #fff !important;
}

.btn-primary-hero:hover,
.btn-primary-hero:focus,
.btn-primary-hero:active {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    box-shadow: none !important;
}

.btn-primary-hero {
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: all 0.25s ease;
}

.btn-primary-hero,
.btn-success:hover,
.btn-primary-hero,
.btn-success:focus {
    background-color: #2f80ff;
    /*lighterblue*/
    border-color: #2f80ff;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(13, 110, 253, 0.25);
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
}

.hero-buttons .btn {
    font-size: 16px;
    padding: 6px 24px;
    margin: 0;
    border-radius: 50px;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-overlay {
        padding: 60px 20px;
    }

    .hero-buttons {
        max-width: 200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 14px;
        /* 👈 THIS FIXES THE ISSUE */
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 12px;
        border-radius: 30px;
    }
}

/*  celebration section */
.celebration-section {
    background-color: #ffffff;
}

/* Title */
.section-title {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.section-title span {
    color: #d4a017;
}

/* Text */
.celebration-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* Image */
.image-wrapper img {
    width: 100%;
    object-fit: cover;
}

/* Badge */
.trusted-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 16px 22px;
    border-radius: 12px;
    text-align: center;
    max-width: 320px;
}

.trusted-badge h6 {
    font-weight: 600;
    color: #111;
}

.trusted-badge p {
    font-size: 13px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .trusted-badge {
        position: static;
        transform: none;
        margin: 20px auto 0;
    }

    .celebration-section {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .trusted-badge {
        display: none;
    }
}

/* services section */



.services-section {
    background-color: #ffffff;
}

.services-subtitle {
    max-width: 820px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.service-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: #fff2d9;
    color: #d89c1e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.service-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 576px) {
    .services-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #fff2d9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-box img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 260px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.05));
    color: #fff;
}

.image-overlay h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.image-overlay p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .image-card {
        height: 220px;
    }
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 260px;
    cursor: pointer;
}

/* Image */
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.05));
    transition: all 0.4s ease;
}

/* Text */
.image-overlay h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.image-overlay p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* 🔥 HOVER EFFECTS */
.image-card:hover img {
    transform: scale(1.08);
}

.image-card:hover .image-overlay {
    padding-bottom: 28px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.15));
}

/* Responsive */
@media (max-width: 768px) {
    .image-card {
        height: 220px;
    }
}

/* Wedding Planning*/
.wedding-section {
    background: #fffaf6;
}

/* TITLE */
.section-title {
    font-weight: 500;
    font-size: 32px;
    color: #444;
}

.section-title span {
    color: #f4b000;
}

/* DESCRIPTION */
.section-desc {
    color: #666;
    max-width: 520px;
}

/* FEATURE ITEMS */
.feature-item {
    flex-direction: column;

}

.feature-item img {
    width: 34px;
    height: 34px;
    background: #fff2d8;
    padding: 6px;
    border-radius: 8px;
}

.feature-item h6 {
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 600;
}

.feature-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* RIGHT CARD */
.handle-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.handle-card h5 {
    font-weight: 600;
}

/* LIST */
.handle-list {
    padding-left: 0;
    list-style: none;
}

.handle-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.handle-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f4b000;
    font-size: 22px;
    line-height: 1;
}

/* Horizontal feature layout */
.horizontal-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}



/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .mobile-center {
        text-align: center;
    }
}


/* travel section */

.travel-section {
    background: #ffffff;
}

/* IMAGE */
.image-wrapper {
    position: relative;
}

.main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* IMAGE BADGE */
.image-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    text-align: center;
}

.image-badge h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.image-badge p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.main-image {
    transform: scale(0.95);
    /*reducesize*/
    transform-origin: center;
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
}

/* TEXT */
.section-title {
    font-weight: 500;
    font-size: 32px;
}

.section-title span {
    color: #f4a300;
}

.section-text {
    color: #555;
    max-width: 520px;
}

/* INFO CARDS */
.info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    margin-top: 18px;
    transition: all 0.3s ease;
}

.info-card img {
    width: 42px;
    height: 42px;
    background: #fff4df;
    padding: 8px;
    border-radius: 10px;
}

.info-card h6 {
    margin-bottom: 4px;
    font-weight: 600;
}

.info-card p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* HOVER */
.hover-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* MOBILE CENTER */
@media (max-width: 991px) {
    .section-text {
        margin: auto;
    }

    .info-card {
        text-align: left;
    }
}

/* jewelry section  */

/* Heading */
.section-title {
    font-size: 32px;
    font-weight: 500;
    color: #444;
}

.section-title span {
    color: #f2a900;
}

/* Description */
.section-desc {
    color: #666;
    font-size: 16px;
    margin: 20px 0 30px;
    max-width: 520px;
}

/* Features */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.features-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.icon-box {
    width: 42px;
    height: 42px;
    background: #ffe9c6;
    color: #f2a900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}

.feature-item h6 {
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}


/* Image */
.image-wrapper {
    display: flex;
    justify-content: center;
}

.jewelry-img {
    border-radius: 20px;
    transform: scale(0.8);
    /*visuallyreducedwithoutwidth/height*/
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
}

/* Responsive */
@media (max-width: 991px) {
    .section-desc {
        margin-left: auto;
        margin-right: auto;
    }
}


/* why choose us  */
.why-choose-section {
    background: linear-gradient(135deg, #1f1c18, #2b2b2b);
}

/* Subtitle */
.section-subtitle {
    max-width: 720px;
    font-size: 15px;
    color: #ccc;
}

/* Glass Card */
.glass-card {
    height: 100%;
    padding: 28px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.35s ease;
}

/* Hover */
.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
}

/* Icon */
.glass-card .icon {
    font-size: 26px;
    margin-bottom: 14px;
    color: #f4b000;
}

/* Title */
.glass-card h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Text */
.glass-card p {
    font-size: 13px;
    color: #eee;
    margin: 0;
}

/* video */
.brand-video-section {
    background: #f8f9fa;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}.volume-btn {
  position: absolute;
  bottom: 20px;
  right: 80px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

/* Play Button Circle */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95px;
    height: 95px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Blue Triangle */
.play-btn span {
    width: 0;
    height: 0;
    border-left: 24px solid #2f5bff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .play-btn {
        width: 70px;
        height: 70px;
    }

    .play-btn span {
        border-left: 18px solid #2f5bff;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
}



/* Make video taller */
.video-container video {
    width: 100%;
    height: 500px;
    /* 👈 Increase height */
    object-fit: cover;
    /* Prevent distortion */
}

/* Responsive height */
@media (max-width: 992px) {
    .video-container video {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .video-container video {
        height: 260px;
    }
}

.video-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    /* Force 1 line */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Add ... if too long */
    max-width: 90%;
}

@media (max-width: 768px) {
    .video-caption {
        font-size: 13px;
        /* Smaller font */
        padding: 6px 12px;
        /* Less padding */
        bottom: 10px;
        /* Slightly closer */
    }
}


.video-container {
    position: relative;
    overflow: hidden;
}

.video-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.video-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
}

/*  e catgloue */
/* Section */
.catalog-section {
    padding: 80px 0;
}

/* Heading */
.catalog-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}

.catalog-subtitle {
    text-align: center;
    margin-bottom: 30px;
}

/* Wrapper */
.flip-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

/* Flipbook */
#flipbook {
    margin: auto;
}

/* Page */
#flipbook .page {
    background: #fff;
    overflow: hidden;
}

/* Image */
#flipbook img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* IMPORTANT */
}

/* Shadow */
#flipbook .page {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    margin: 5px;
}

/* COVER PAGE */
.cover-content {
    display: flex;
    height: 100%;
}

.cover-left {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cover-left h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.cover-left p {
    font-size: 15px;
    line-height: 1.6;
}

.cover-right {
    width: 50%;
}

.cover-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* END PAGE */
.end-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.end-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.end-content p {
    margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

    .cover-content {
        flex-direction: column;
    }

    .cover-left,
    .cover-right {
        width: 100%;
    }

    .cover-left {
        padding: 20px;
        text-align: center;
    }
}

/* Fix wide screen stretching issue */
.flip-wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

#flipbook {
    width: 100%;
}

/* Mobile optimization for end page */
@media (max-width: 480px) {

    .end-page h1 {
        font-size: 24px !important;
        line-height: 1.2;
    }

    .end-page p {
        font-size: 14px !important;
        margin-top: 8px;
    }

    .end-page .btn,
    .end-page button {
        font-size: 13px !important;
        padding: 8px 14px !important;
        border-radius: 6px;
    }

    .end-page {
        padding: 15px 10px !important;
        text-align: center;
    }
}