@font-face {
    font-family: 'General Sans';
    src: url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500&display=swap');
}

:root {
    --color-primary: #ff9f1c;
    --color-text-dark: #111111;
    --color-text-medium: #444444;
    --color-bg-light: #f5ecee;
    --color-bg-dark: #202020;
    --font-heading: 'Maitree', serif;
    --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.5;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease forwards;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
}

/* Navigation */
.navbar {
    background-color: white;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    height: 80px;
}

.navbar .container-fluid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    height: 100%;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-logo {
    height: 50px;
    width: auto;
}

.navbar-nav {
    gap: 20px;
}

.nav-link {
    color: var(--color-text-dark) !important;
    font-size: 18px;
    font-weight: 400;
    padding: 0 !important;
}

.nav-link:hover {
    color: var(--color-primary) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    position: relative;
    width: 28px;
    height: 2px;
    background-image: none;
    background-color: var(--color-text-dark);
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    width: 962px;
    height: 962px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.1) 0%, transparent 70%);
    top: -510px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content > * {
    max-width: 842px;
    margin-left: auto;
    margin-right: auto;
}

.hero-lantern {
    position: absolute;
    width: 320px;
    height: auto;
    z-index: 2;
    top: 0;
    animation: swing 3.5s ease-in-out infinite;
    transform-origin: top center;
}

.hero-lantern-left {
    left: 0;
}

.hero-lantern-right {
    right: 0;
}

@keyframes swing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(15deg);
    }
    75% {
        transform: rotate(-15deg);
    }
}

.hero h1 {
    font-size: 48px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero p {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.8;
}

/* Video Section */
.video-section {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
    overflow: hidden;
}

.full-width-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -400px;
    right: -400px;
    width: 1000px;
    height: 1000px;
    background-image: url('Images/Gradient.png');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}

.about-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px 60px;
    display: flex;
    gap: 140px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
    width: 50%;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 30px;
}

.about-image-container {
    flex: 1;
    width: 50%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.about-image {
    width: 495px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    display: block;
}

.about-flower {
    position: absolute;
    bottom: -80px;
    left: 40px;
    width: 200px;
    height: auto;
    z-index: 1;
}

.about-image-mobile {
    display: none;
}

.about-flower-mobile {
    display: none;
    width: 120px;
    height: auto;
    margin: 20px auto 0;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 0 32px;
    height: 56px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #e68d0f;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    background-color: var(--color-bg-dark);
    position: relative;
    overflow: visible;
}

.services-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px 60px;
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.services-heading {
    flex: 1;
    width: 50%;
    position: sticky;
    top: 120px;
    height: fit-content;
    align-self: flex-start;
    z-index: 1;
}

.services-heading::before {
    content: '';
    position: absolute;
    top: -400px;
    left: -400px;
    width: 1000px;
    height: 1000px;
    background-image: url('Images/Gradient.png');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1;
}

.services-heading h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    color: white;
    margin-bottom: 12px;
}

.services-heading p {
    font-size: 20px;
    line-height: 1.5;
    color: white;
    opacity: 0.8;
}

.services-grid {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background-color: var(--color-bg-light);
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 8px;
    padding: 20px;
}

.service-card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text-medium);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-text-medium);
    opacity: 0.8;
}

/* Chaat Corner Section */
.chaat-corner {
    background-color: white;
    overflow: hidden;
}

.chaat-corner > div {
    max-width: 1600px;
    margin: 0 auto;
}

.chaat-corner-content {
    padding: 120px 60px 60px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
}

.chaat-text {
    width: 50%;
}

.chaat-text h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-medium);
    margin-bottom: 12px;
}

.chaat-text p {
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-text-medium);
    opacity: 0.8;
}

.chaat-corner .btn-primary {
    flex-shrink: 0;
}

.chaat-gallery {
    display: flex;
    gap: 20px;
    animation: scroll-desktop 30s linear infinite;
    width: max-content;
    padding-bottom: 120px;
}

.chaat-gallery:hover {
    animation-play-state: paused;
}

@keyframes scroll-desktop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * (478px * 5))); /* slide width (458) + gap (20) */
    }
}

.chaat-img-wrapper {
    flex-shrink: 0;
    width: 458px;
    height: 344px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.chaat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chaat-img-wrapper:hover img {
    transform: scale(1.1);
}

/* Gallery Section */
.gallery {
    background-color: var(--color-bg-dark);
}

.gallery > div {
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px 60px;
}

.gallery-heading {
    max-width: 591px;
    margin-bottom: 60px;
}

.gallery-heading h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    color: white;
    margin-bottom: 12px;
}

.gallery-heading p {
    font-size: 20px;
    line-height: 1.5;
    color: white;
    opacity: 0.8;
}

.gallery-masonry {
    column-count: 4;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #111;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer Section */
footer {
    background-color: #242424;
    padding: 60px;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 48px;
}

.footer-contact-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-contact-right {
    display: flex;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--color-primary);
}

.footer-contact-item svg {
    flex-shrink: 0;
}

.footer-contact-right a {
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.footer-contact-right a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    body {
        padding: 0 20px;
    }

    .navbar {
        height: 60px;
        margin: 0 -20px;
        position: sticky;
        top: 0;
        z-index: 1002;
        background-color: white;
    }

    .navbar-overlay {
        display: block;
    }

    .navbar .container-fluid {
        padding: 0 20px;
    }

    .navbar-logo {
        height: 28px;
    }

    .navbar-toggler {
        position: relative;
        z-index: 1001;
        width: 32px;
        height: 32px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-collapse {
        position: fixed;
        top: 60px;
        right: 0;
        height: calc(100vh - 60px);
        width: 50%;
        background-color: white;
        padding: 40px 30px 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-nav {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        text-align: left;
    }

    .hero,
    .about,
    .services,
    .chaat-corner,
    .gallery,
    footer {
        margin-left: -20px;
        margin-right: -20px;
    }

    .hero-content {
        padding: 40px 40px;
    }

    .hero-lantern {
        width: 140px;
    }

    .video-section {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        max-width: 100%;
        height: 48px;
    }

    .about {
        padding: 40px 20px;
    }

    .services {
        padding: 40px 20px;
        overflow: visible;
    }

    .chaat-corner {
        padding: 40px 20px;
    }

    .gallery {
        padding: 40px 20px;
    }

    .about-content,
    .services-content,
    .gallery > div,
    .footer-content {
        padding-left: 0;
        padding-right: 0;
    }

    .gallery > div {
        padding-top: 0;
        padding-bottom: 0;
    }

    .services-content {
        padding: 0;
    }

    .chaat-corner-content {
        padding: 0;
    }

    footer {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .about-text {
        width: 100%;
        max-width: 100%;
    }

    .about-image-container {
        display: none;
    }

    .about-image-mobile {
        display: block;
        width: 100%;
        margin-top: 20px;
        position: relative;
    }

    .about-image-mobile .about-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        display: block;
    }

    .about-flower-mobile {
        display: block;
        position: absolute;
        left: 0;
        bottom: -40px;
        margin: 0;
    }

    .about::before {
        display: none;
    }

    .chaat-corner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 40px;
    }

    .chaat-text {
        width: 100%;
        max-width: 100%;
    }

    .chaat-gallery {
        gap: 30px;
        padding-bottom: 0;
        animation: scroll-mobile 30s linear infinite;
    }

    .chaat-img-wrapper {
        width: 300px;
        height: 220px;
    }

    @keyframes scroll-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-1 * (330px * 5))); /* slide width (300) + gap (30) */
        }
    }

    .services-content {
        flex-direction: column;
        gap: 24px;
    }

    .services-heading {
        position: static;
        top: auto;
        z-index: auto;
        flex: 1;
        width: 100%;
        max-width: 100%;
        background: inherit;
    }

    .services-heading::before {
        position: absolute;
        top: -150px;
        left: -100px;
        display: block;
        margin-bottom: 20px;
        width: 100%;
        height: 400px;
        background-image: url('Images/Gradient.png');
        background-size: cover;
        background-position: center;
    }

    .services-grid {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-title {
        font-size: 40px;
    }

    footer {
        padding: 60px 0 20px 0;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-left {
        align-items: center;
    }

    .footer-contact-right {
        margin-top: 20px;
        justify-content: center;
    }

    .gallery-masonry {
        column-count: 2;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card .icon {
        width: 32px;
        height: 32px;
    }

    .service-card .icon img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    p {
        font-size: 16px !important;
        opacity: 0.8;
    }

    .hero h1 {
        font-size: 24px;
    }

    .about-text h2,
    .services-heading h2,
    .gallery-heading h2,
    .chaat-text h2 {
        font-size: 24px;
    }

    .about-text p,
    .services-heading p,
    .gallery-heading p,
    .service-card p,
    .chaat-text p {
        font-size: 16px;
    }

    .about-image {
        width: 100%;
        height: 400px;
    }

    .chaat-img-wrapper {
        width: 300px;
        height: 225px;
    }

    .gallery-masonry {
        column-count: 2;
    }

    /* Move about gradient to top-right on mobile */
    .about::before {
        top: 0;
        right: 0;
        left: auto;
        bottom: auto;
        width: 250px;
        height: 250px;
        background-size: contain;
        background-position: top right;
    }
}
.navbar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.navbar-overlay.show {
    opacity: 1;
    visibility: visible;
}
