* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #e85596;
    --dusty-pink: #c18d87;
    --dark-blue: #1d334f;
    --light-blue: #38a6d8;
    --text-dark: #333333;
    --text-light: #777777;
    --bg-light: #f7f9fa;
    --bg-lighter: #f8f8f8;

    --font-sans: 'Roboto', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
    --font-script-bold: 'Pacifico', cursive;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
    text-align: left;
}

.top-info {
    font-size: 14px;
    color: #555;
    letter-spacing: 0.5px;
    font-weight: bold;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 48px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
}

.riman-nav-logo {
    height: 20px;
    width: auto;
    min-width: 80px;
}

/* Hero Section */
.hero {
    height: 60vh;
    min-height: 500px;
    background-image: url('img/main-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0) 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 600px;
    margin-left: 10%;
    text-align: left;
}

.hero-content h1 {
    font-family: var(--font-script-bold);
    font-size: 72px;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-left: 5px;
}

/* Glow Section */
.glow-section {
    background-color: var(--bg-lighter);
    text-align: center;
    padding: 50px 0;
}

.glow-section h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    color: #222;
    margin-bottom: 5px;
    font-weight: 700;
}

.riman-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.riman-logo img {
    height: 50px;
    width: auto;
    min-width: 200px;
}

.glow-section p {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.btn-shop {
    display: inline-block;
    background: linear-gradient(to right, #72a88f, #3c544b);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-shop:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Separators */
.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    color: var(--dusty-pink);
}

.separator::before,
.separator::after {
    content: '';
    height: 1px;
    width: 30px;
    background-color: var(--dusty-pink);
    margin: 0 15px;
}

.separator i {
    font-size: 14px;
}

.separator-white {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    color: #fff;
}

.separator-white::before,
.separator-white::after {
    content: '';
    height: 1px;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 15px;
}

.separator-white i {
    font-size: 14px;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
}

.intro-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 30px;
}

.intro-box {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-box {
    padding: 50px 40px;
    text-align: center;
}

.text-box .dusty-pink-text {
    color: var(--dusty-pink);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 34px;
    font-weight: 400;
}

.text-box p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.image-box {
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.hours-box {
    background-color: var(--dusty-pink);
    color: #fff;
    padding: 60px 40px;
    text-align: center;
}

.hours-box h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
}

.hours-info {
    font-size: 18px;
    line-height: 1.6;
}

.hours-info strong {
    font-weight: 600;
    letter-spacing: 1px;
}

.hours-info span {
    font-weight: 400;
    font-size: 16px;
}

.small-italic {
    font-size: 17px;
    font-style: italic;
    font-weight: bold;
    margin-top: 15px;
}

/* Services Section */
.services-section {
    padding: 90px 0;
    position: relative;
    background-color: var(--bg-light);
    background-image: url('https://via.placeholder.com/1920x800/fafafa/dddddd.png?text=Services+Background');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
}

.script-text {
    font-family: var(--font-script);
    font-weight: 400;
    font-style: normal;
    font-size: 56px;
    vertical-align: middle;
}

.text-pink {
    color: var(--dusty-pink);
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    background-size: cover;
    background-position: center;
    padding: 15px;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card-inner {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px 20px;
    height: 100%;
}

.service-card h3 {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}



.service-card ul {
    list-style: none;
}

.service-card li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dotted #e0e0e0;
    font-size: 14px;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li span {
    color: #666;
}

.service-card li strong {
    color: #222;
    font-weight: 600;
}

/* Testimonial Section */
.testimonial-section {
    padding: 120px 0;
    text-align: center;
    background-image: url('img/subbanner2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    background-attachment: fixed;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.testimonial-section h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
}

.quote-icon {
    font-size: 32px;
    margin: 30px 0 20px 0;
    opacity: 0.9;
}

.testimonial-section p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Wedding Section */
.wedding-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.wedding-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

.wedding-text {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

.wedding-text h2 {
    font-family: var(--font-serif);
    font-size: 34px;
    color: #222;
}

.wedding-text p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.wedding-image {
    flex: 1.2;
    min-width: 320px;
}

.wedding-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Footer Section */
footer {
    background-color: #fff;
    padding: 70px 0 50px 0;
    color: var(--text-light);
    font-size: 13px;
    border-top: 1px solid #f5f5f5;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
}

.footer-logo-col {
    flex: 1.5;
    min-width: 200px;
    padding-right: 40px;
    border-right: 2px solid var(--dusty-pink);
}

.footer-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
}

.footer-col {
    flex: 2;
    min-width: 200px;
    padding: 0 40px;
    border-right: 2px solid var(--dusty-pink);
}

.contact-col {
    flex: 1.5;
    border-right: none;
    padding-right: 0;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col p {
    line-height: 1.8;
    color: #666;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #666;
}

.footer-col ul li i {
    margin-top: 3px;
    font-size: 13px;
    color: var(--dusty-pink);
    width: 15px;
    text-align: center;
}

.offset-top {
    margin-top: 5px;
}

.mobile-only {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .wedding-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .top-info {
        font-size: 13px;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .intro-container {
        flex-direction: column;
    }

    .image-box {
        min-height: 300px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
    }

    .wedding-container {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-col {
        padding: 0;
        border: none;
    }

    .footer-col ul li {
        justify-content: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 0;
        justify-content: center;
    }
}

/* --- Riman Page Styles --- */

/* Page Banner */
.page-banner {
    background-color: var(--dusty-pink);
    background-image: url('img/riman-31.webp');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(193, 141, 135, 0.75);
    /* var(--dusty-pink) overlay */
    z-index: 0;
}

.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.breadcrumbs {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs a {
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumbs .current {
    font-weight: 700;
    color: #fff;
}

/* Riman Main Logo */
.riman-main-logo {
    padding: 70px 0 50px;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.riman-main-logo .large-logo {
    height: 45px;
    width: auto;
}

/* Botalab Banner 1 (Split) */
.botalab-banner {
    background-color: #fff;
    padding: 0 0 50px 0;
}

.banner-inner-split {
    display: flex;
    gap: 15px;
    /* Adds a bit of space between the two images, adjust as needed */
    align-items: stretch;
}

.banner-half {
    flex: 1;
    display: flex;
}

.split-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    /* Provides a taller base height */
    max-height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

/* Planner Section */
.planner-section {
    padding: 40px 0 70px;
    text-align: center;
    background-color: #fff;
}

.planner-section h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
}

.btn-signup {
    display: inline-block;
    background-color: #279eeb;
    /* Bright blue from screenshot */
    color: #fff;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background-color: #1a8ad4;
    color: #fff;
    transform: translateY(-2px);
}

/* Premier Brands Banner */
.premier-brands-banner {
    padding: 0 0 80px 0;
    background-color: #fff;
}

.premier-brands-banner .pb-inner {
    background-color: #d8e0da;
    /* Subtle green/grey fallback */
    display: flex;
    min-height: 450px;
    padding: 0;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.pb-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pb-left h3 {
    font-size: 22px;
    /* Increased from 17px */
    font-weight: 800;
    /* Increased weight */
    color: #111;
    /* Darker color */
    margin-bottom: 35px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pb-logo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.pb-logo span {
    font-size: 38px;
    /* Increased from 30px */
    font-weight: 800;
    color: #222;
    /* Darker color */
    margin-left: 10px;
    letter-spacing: -0.5px;
}

.pb-left p {
    font-size: 18px;
    /* Increased from 14px */
    line-height: 1.6;
    color: #333;
    /* Darker color */
    margin-bottom: 40px;
    font-weight: 600;
    /* Increased weight */
}

.btn-learn-more {
    display: inline-block;
    background-color: var(--dark-blue);
    color: #fff;
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-learn-more:hover {
    background-color: #112233;
    color: #fff;
    transform: translateY(-2px);
}

.pagination {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
}

.pagination .line {
    width: 60px;
    height: 1px;
    background-color: #111;
    margin-right: 15px;
}

.pagination .arrows {
    margin-left: 15px;
    font-size: 13px;
    letter-spacing: 4px;
    cursor: pointer;
}

.pb-right {
    flex: 1.2;
    background-image: url('img/riman-2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    /* Ensure it takes up roughly 1.2 flex fraction visually */
}

/* Responsive updates for new Riman page sections */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .botalab-banner .banner-inner {
        padding: 40px 20px;
        text-align: center;
        background-position: center;
    }

    .botalab-content {
        margin: 0 auto;
    }

    .planner-section h2 {
        font-size: 26px;
    }

    .premier-brands-banner .pb-inner {
        flex-direction: column;
    }

    .pb-left {
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }

    .pb-right {
        min-height: 300px;
        position: relative;
        width: 100%;
    }
}

/* Back to Top Button */
#backToTopBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: var(--dusty-pink);
    /* Set a background color */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 15px;
    /* Some padding */
    border-radius: 50%;
    /* Rounded corners */
    font-size: 18px;
    /* Increase font size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    width: 50px;
    height: 50px;
}

#backToTopBtn:hover {
    background-color: var(--primary-pink);
    /* Add a dark-grey background on hover */
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

.masonry-gallery {
    column-count: 5;
    column-gap: 15px;
    margin-top: 40px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 15px;
}

.masonry-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
}

.masonry-item img:hover {
    transform: scale(1.03);
}

@media (max-width: 1200px) {
    .masonry-gallery {
        column-count: 4;
    }
}

@media (max-width: 900px) {
    .masonry-gallery {
        column-count: 3;
    }
}

@media (max-width: 600px) {
    .masonry-gallery {
        column-count: 2;
    }
}

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