body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    text-align: justify;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 100px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url('../images/banner.JPG') no-repeat top center/cover;
    height: 120vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

/* Journey Section */
.section-padding {
    padding: 80px 0;
}

.bg-light-alt {
    background-color: #fcfcfc;
}

/* Community Voices Card */
.voice-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.voice-card:hover {
    transform: translateY(-5px);
}

.voice-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.btn-primary {
    background-color: #d81b60;
    border: none;
    padding: 12px 30px;
}

.btn-primary:hover {
    background-color: #ad1457;
}

footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.logo {
    position: absolute;
    max-height: 150px;
    top: 5px;
    left: 5px;
}

@media screen and (max-width:500px) {
    .hero-section {
        height: 35vh;
    }

}

@media screen and (max-width:991px) {
    .navbar-collapse {
        z-index: 10000;
        position: fixed;
        top: 83px;
        left: 10px;
        width: 100%;
        background-color: #ffffffee;
        padding: 20px;
        margin: 0px;
    }
    .logo{
        height: 100px;
    }
}

/* Parallax Contact Section */
.contact-parallax {
    position: relative;
    /* Replace the URL below with a high-res image of the Narengi playground or a Bihu dance scene */
    background-image: url('../images/parallax.jpg'); 
    background-attachment: fixed; /* This creates the Parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-overlay {
    background: rgba(0, 0, 0, 0.75); /* Dark overlay for readability */
    padding: 100px 0;
}

.contact-item {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    height: 100%;
}

/* Social Media Icons Styling */
.social-icon {
    width: 50px;
    height: 50px;
    background: #d81b60; /* Matching your theme color */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #fff;
    color: #d81b60;
    transform: scale(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .contact-parallax {
        background-attachment: scroll; /* Better performance on mobile */
    }
}

/* Styling for the Journey Section */
#journey {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* 1. The Container holding the background image */
.clipping-container {
    height: 100%;
    min-height: 500px; /* Ensures minimum height on mobile */
    /* This is the IMAGE that will show THROUGH the '50' */
    /* Replace this URL with a vibrant Bihu dance or GGEB celebration image */
    background-image: url('../images/orchid.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* 2. The Solid White Mask covering the image */
.white-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* Solid mask color */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* This enables the magic: any text inside this mask will become transparent, cutting through the white */
    mix-blend-mode: screen; 
}

/* 3. The Text doing the cutting (transparent background, solid color) */
.clipped-text {
    font-size: 25vw; /* Massive size that scales with screen width */
    font-weight: 900; /* Super heavy weight to maximize clipped area */
    line-height: 1;
    color: black; /* This color becomes transparent due to screen blend mode */
    font-family: 'Arial Black', sans-serif; /* Thick font required */
    letter-spacing: -10px;
    margin-bottom: -20px;
}

.golden-jubilee-sub {
    font-size: 3rem;
    font-weight: 700;
    color: black; /* Also cut out */
    letter-spacing: 5px;
    text-transform: uppercase;
}

.journey-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .clipping-container {
        min-height: 300px;
    }
    .clipped-text {
        font-size: 40vw; /* Even larger relative size on small screens */
    }
}

/* Invitation Card Styling */
.invitation-card {
    background: #fff;
    border-radius: 4px;
    position: relative;
    padding: 15px;
    background-image: radial-gradient(circle, #ffffff 0%, #fdfbf7 100%);
}

/* Elegant Double Border */
.invitation-border {
    border: 1px solid #d4af37; /* Gold color */
    padding: 10px;
    position: relative;
}

.invitation-border::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid #d4af37;
    pointer-events: none;
}

/* Golden Jubilee Emblem */
.jubilee-circle {
    width: 90px;
    height: 90px;
    border: 2px double #d4af37;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #d4af37;
    background: #fff;
}

/* Typography */
.invitation-title {
    font-family: 'Playfair Display', serif; /* Elegant Serif Font */
    font-weight: 700;
    color: #1a1a1a;
    font-size: 2.5rem;
}

.text-gold { color: #d4af37; }

.lead-text {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #555;
}

/* Responsiveness for the middle border divider */
@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #eee;
    }
}

/* Smooth transition for the card */
.invitation-card:hover {
    transform: translateY(-5px);
    transition: transform 0.4s ease;
}

/* Navigation Hover Effect */
.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #d81b60; /* Your theme red color */
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
    background: #d81b60;
}


/* Reusable Short Underline Class */
.title-underlined {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: inline-block; /* Ensures underline matches text width or stays centered */
}

.title-underlined::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%; /* Position in middle */
    transform: translateX(-50%); /* Center it perfectly */
    width: 60px; /* Short width as requested */
    height: 4px; /* Thickness */
    background-color: #d81b60; /* Red color */
    border-radius: 2px;
}

/* Version for Left-Aligned Titles */
.title-underlined-left {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.title-underlined-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #d81b60;
    border-radius: 2px;
}
/* Notice Marquee Styling */
.notice-marquee-bg {
    background-color: #fff9fa; /* Very subtle red tint to match theme */
    position: relative;
    z-index: 100;
}

/* Custom Marquee Behavior */
.notice-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
    padding: 10px 0;
}

.notice-marquee:hover {
    animation-play-state: paused; /* CSS-based stop on hover */
}

.notice-item {
    display: inline-flex;
    align-items: center;
    margin-right: 100px; /* Space between different notices */
    font-weight: 500;
}

.notice-text {
    font-size: 0.95rem;
}

/* Animation Keyframes */
@keyframes marquee-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Badge Glow Effect */
.bg-danger {
    background-color: #d81b60 !important;
    box-shadow: 0 0 10px rgba(216, 27, 96, 0.2);
}

/* Button hover tweak */
.btn-outline-danger:hover {
    background-color: #d81b60;
    color: white;
}


/* Page Header Parallax Styling */
.page-header-parallax {
    position: relative;
    /* Use a high-quality atmospheric image of Narengi or a Bihu landscape */
    background-image: url('../images/label.jpg'); 
    background-attachment: fixed; /* The Parallax Magic */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.parallax-overlay-header {
    background: rgba(0, 0, 0, 0.6); /* Tint to make white text pop */
    width: 100%;
    padding: 100px 0;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.5); /* Modern divider color */
}

.breadcrumb-item a {
    color: #d81b60; /* Using your theme red */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Tracking for Titles */
.tracking-wider {
    letter-spacing: 5px;
}

/* Mobile Fix: Parallax can be jittery on mobile, so we disable it */
@media (max-width: 991px) {
    .page-header-parallax {
        background-attachment: scroll;
        min-height: 250px;
    }
}

/* Contact Form Customization */
.custom-input {
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: #fff;
    border-color: #d81b60;
    box-shadow: 0 0 0 0.25rem rgba(216, 27, 96, 0.1);
}

/* Creative Right Side Styling */
/* Creative Right Side: Bihu Theme */
.creative-contact-bg {
    /* A warm, sunset-red gradient reflecting the festive colors of the Gamusa */
    background: linear-gradient(145deg, #8b0000 0%, #d81b60 100%);
    position: relative;
    overflow: hidden;
}

/* Add a subtle "Jaapi" or "Bihu" inspired background texture */
.bihu-pattern-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.05;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 20px 20px;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.cultural-icon-box i {
    font-size: 1.5rem;
}

.small-xs {
    font-size: 0.75rem;
}

/* Custom Animation for the Flower/Star icon */
.kopou-flower {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.jubilee-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.jubilee-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffc107;
}

/* Ensure the tracking looks professional */
.tracking-widest {
    letter-spacing: 2px;
}