/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
.nav-logo-text, .main-title {
    font-family: 'Playfair Display', serif;
}

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

/* Layout */
.hero-section {
    position: relative;
    width: 100vw;
    height: 95vh;
    background-image: url('img/IMG_0121.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Overlay to darken background and fade edges */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.2) 25%, rgba(26, 26, 26, 0.2) 75%, rgba(26, 26, 26, 0.8) 100%),
                rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Ensure content stays above overlay */
.navbar, .main-content {
    position: relative;
    z-index: 2;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    position: relative;
    z-index: 99999;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: relative;
    z-index: 999999;
}

.hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 36px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-signin {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 24px;
    border: 1.5px solid #ffffff;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-signin:hover {
    background-color: #ffffff;
    color: #000000;
}

.lang-selector {
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow-down {
    font-size: 0.55rem;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-bottom: 50px;
}

.main-logo-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 12px;
}

.btn-book {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 48px;
    border: 1.5px solid #ffffff;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
}

.btn-book:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Reviews Section */
.reviews-section {
    background-color: #ffffff;
    color: #000000;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

.separator-line {
    width: 80%;
    max-width: 800px;
    height: 1px;
    background-color: #eaeaea;
    margin: 0 auto;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 32px;
}

.stars {
    color: #fdb913; /* Golden yellow */
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.small-stars {
    font-size: 1rem;
    margin: 8px 0 16px;
}

.rating-text {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.carousel-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    color: #333;
}

.prev-btn {
    margin-right: 20px;
}

.next-btn {
    margin-left: 20px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

.review-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.reviewer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    max-width: 500px;
    margin-bottom: 16px;
}

.review-date {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

/* Carousel Navigation Dots */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicator.current-indicator {
    background-color: #555;
    transform: scale(1.3);
}

/* Outlined Button */
.button-container {
    margin: 16px 0 32px;
}

.btn-outline-dark {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 32px;
    border: 1.5px solid #111;
    border-radius: 24px;
    color: #111;
    background-color: transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-dark:hover {
    background-color: #111;
    color: #fff;
}

/* About Section */
.about-section {
    background-color: #fafafa;
    padding: 100px 40px;
    color: #111;
    font-family: 'Inter', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 80px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content .section-title {
    margin-bottom: 12px;
}

.about-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* CMS-injected About body: match original paragraph look; lists if used in editor */
#home-about-body,
.about-body-from-db {
    margin: 0;
    padding: 0;
}

.about-body-from-db ul,
.about-body-from-db ol {
    margin: 0 0 20px;
    padding-left: 1.25rem;
}

.about-body-from-db li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

/* Quill sometimes leaves alignment / size classes on saved HTML */
#home-about-body .ql-align-center,
.about-body-from-db .ql-align-center {
    text-align: center;
}

.about-btn {
    margin-top: 16px;
}

/* Unique 4-Image Collage */
.about-collage {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 140px;
    gap: 16px;
    position: relative;
}

.collage-img {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.collage-img:hover {
    transform: translateY(-8px);
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: 120px 12px 12px 12px; /* Arch shape */
}

.img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    border-radius: 12px 120px 12px 12px;
}

.img-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    border-radius: 12px 12px 120px 12px;
}

.img-4 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    border-radius: 12px 12px 12px 120px;
}

/* Policy Section */
.policy-section {
    background-color: #ffffff;
    padding: 80px 20px;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.policy-container {
    max-width: 1100px;
    width: 100%;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.policy-card {
    background-color: #fafafa;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.policy-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.policy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #111;
}

.policy-card ul {
    list-style: none;
    padding: 0;
}

.policy-card ul li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.policy-card ul li::before {
    content: "•";
    color: #fdb913;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: -2px;
}

.policy-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.show-more-link {
    color: #fdb913;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-container {
    max-width: 800px;
    width: 100%;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #ffffff;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid #eaeaea;

}

.contact-item:hover {
    transform: translateY(-3px);
    background-color: #111;
    color: #fff;
}

.contact-item:hover .contact-text {
    color: #fff;
}

.contact-item:hover .contact-icon {
    color: #fff;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #333;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.contact-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

/* Footer */
.footer {
    background-color: #111;
    text-align: center;
    padding: 40px 20px 30px;
    font-size: 0.9rem;
    color: #aaa;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fdb913;
}

.footer-separator {
    color: #555;
}

@media (max-width: 600px) {
    .footer {
        padding: 28px 16px 24px;
        gap: 14px;
    }

    .footer-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        max-width: 22rem;
        margin: 0 auto;
    }

    .footer-separator {
        display: none;
    }

    .footer-links a {
        font-size: 0.9rem;
        padding: 12px 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .footer-links a:active {
        background-color: rgba(253, 185, 19, 0.12);
    }

    .footer > p {
        font-size: 0.8rem;
        line-height: 1.45;
        padding: 0 12px;
        max-width: 100%;
    }
}

/* Hours Section */
.hours-section {
    background-color: #fafafa;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hours-container {
    max-width: 600px;
    width: 100%;
    margin: 40px auto 0;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #eaeaea;
}

.hours-row {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: #333;
}

.hours-row:last-child {
    margin-bottom: 0;
}

.day {
    font-weight: 500;
    white-space: nowrap;
}

.dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ddd;
    margin: 0 16px;
    position: relative;
    top: -4px;
}

.time {
    font-weight: 600;
    white-space: nowrap;
    color: #111;
}

/* Portfolio Section */
.portfolio-section {
    background-color: #ffffff;
    padding: 80px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 40px 0 40px;
    flex-wrap: wrap;
    max-width: 1200px;
}

.portfolio-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Services Section */
.services-section {
    background-color: #fafafa;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1100px;
    margin-top: 40px;
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.service-info {
    flex: 1;
}

.service-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.service-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    display: inline-block;
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 6px;
}

.btn-book-service {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-book-service:hover {
    background-color: #333;
    transform: scale(1.05);
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    /* Navbar / Hero */
    .navbar {
        padding: 16px 24px;
        background-color: transparent;
        position: relative;
        z-index: 99999; /* keep menu above hero */
    }
    
    .hamburger {
        display: flex;
        order: 1;
    }
    
    .logo-container {
        display: none; /* Hide logo on mobile navbar to make space for hamburger and actions */
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        transform: translate3d(-100%, 0, 1px);
        flex-direction: column;
        justify-content: flex-start;
        background-color: rgba(17, 17, 17, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: transform 0.4s ease-in-out;
        z-index: 99999; /* ensure above hero/overlays */
        padding-top: 100px;
        gap: 40px;
        margin-left: 0;
        pointer-events: none; /* prevent hidden menu blocking taps */
        isolation: isolate; /* new stacking context so children stay on top */
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translate3d(0, 0, 1px);
        pointer-events: auto;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 30px;
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
        padding: 0 24px;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        padding: 14px 0;
        position: relative;
        z-index: 10000;
    }
    
    .nav-actions {
        flex-direction: row;
        gap: 16px;
        order: 2;
    }
    
    .btn-signin {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .main-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .main-logo-img {
        width: 100px;
        height: 100px;
    }

    /* General padding reductions */
    .about-section, .services-section, .reviews-section, .portfolio-section, .hours-section, .policy-section, .contact-section {
        padding: 60px 20px;
    }

    /* About Section */
    .about-collage {
        grid-template-rows: 140px 140px 100px;
        gap: 8px;
    }

    .about-container {
        gap: 40px;
    }

    /* Services Card */
    .service-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px;
    }
    
    .btn-book-service {
        width: 100%;
        text-align: center;
    }

    /* Portfolio Section */
    .portfolio-img {
        width: 45%;
        height: auto;
        aspect-ratio: 1;
    }
    
    .portfolio-grid {
        gap: 12px;
    }

    /* Reviews Section */
    .review-card {
        padding: 0 10px;
    }

    .review-text {
        font-size: 0.95rem;
    }

    /* Hours Section */
    .hours-container {
        padding: 24px 16px;
    }

    .hours-row {
        font-size: 0.95rem;
    }

    .dots {
        margin: 0 8px;
    }

    /* Policy Section */
    .policy-container {
        grid-template-columns: 1fr;
    }
    
    .policy-card {
        padding: 24px 20px;
    }

    /* Contact Section */
    .contact-item {
        padding: 16px 24px;
        width: 100%;
        justify-content: center;
    }

    .contact-text {
        font-size: 0.95rem;
    }
}

/* New Hero Section */
.new-hero-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: radial-gradient(circle at 70% 50%, #2a161a 0%, #111111 70%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.new-hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    transition: opacity 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .new-hero-content {
    opacity: 0 !important;
    pointer-events: none !important;
}

.hero-text-side {
    max-width: 500px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #fdb913);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-book-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fdb913;
    color: #111;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(253, 185, 19, 0.3);
}

.btn-book-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253, 185, 19, 0.4);
    background-color: #ffd052;
}

.hero-collage-side {
    position: relative;
    width: 500px;
    height: 600px;
}

.love-text-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    font-weight: 700;
    font-style: italic;
    color: rgba(253, 185, 19, 0.05);
    z-index: 0;
    pointer-events: none;
    letter-spacing: -10px;
}

.love-collage {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hc-img {
    position: absolute;
    width: 240px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 4px solid rgba(255,255,255,0.1);
    transition: all 0.5s ease;
}

.hc-1 { top: 40px; left: 0; transform: rotate(-8deg); z-index: 2; }
.hc-2 { top: 0; right: 20px; transform: rotate(12deg); z-index: 1; width: 220px; height: 280px; }
.hc-3 { bottom: 40px; right: 0; transform: rotate(-5deg); z-index: 3; }
.hc-4 { bottom: 0; left: 40px; transform: rotate(15deg); z-index: 1; width: 200px; height: 260px; }

.hc-img:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
    border-color: #fdb913;
}

@media (max-width: 1024px) {
    .new-hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }
    .hero-collage-side {
        margin-top: 60px;
        transform: scale(0.8);
    }
}
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-collage-side { transform: scale(0.6); margin-top: 0px; }
    .love-text-bg { font-size: 12rem; }
}
