/* index.css */
:root {
    --bg-color: #ffffff;
    /* Fresh White */
    --text-color: #0c60a2;
    /* Deep Brand Blue */
    --text-muted: #6688a2;
    /* Lighter Blue-Gray */
    --border-color: rgba(12, 96, 162, 0.15);
    /* Soft blue border */

    --brand-yellow: #f5c91f;
    /* Golden Yellow from Sidebar */
    --brand-blue: #0c60a2;
    /* Deep Blue from Banners */
    --brand-red: #ea2027;
    /* Accent Red */

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 4rem;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
}

.nav-logo {
    height: 120px;
    /* Extra large for maximum eye-catching presence */
    width: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: gentlePulse 3s infinite alternate ease-in-out;
}

.nav-logo:hover {
    transform: scale(1.15) rotate(-8deg);
    animation-play-state: paused;
}

@keyframes gentlePulse {
    0% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 4px 15px rgba(245, 201, 31, 0.3));
    }

    100% {
        transform: scale(1.05) translateY(-5px);
        filter: drop-shadow(0 15px 30px rgba(245, 201, 31, 0.6));
    }
}

.logo-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-brand {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-blue);
}

@keyframes breatheSpacing {
    0% {
        letter-spacing: 3px;
        opacity: 0.7;
    }

    100% {
        letter-spacing: 6px;
        opacity: 1;
        text-shadow: 0 0 10px rgba(12, 96, 162, 0.4);
    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s;
    font-weight: 600;
}

.nav-links a:hover {
    opacity: 0.6;
    color: var(--brand-yellow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* Background Aesthetic Motion Graphics */
.hero::before {
    content: '';
    position: absolute;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(245, 201, 31, 0.15) 0%, transparent 60%);
    top: -20vw;
    right: -20vw;
    border-radius: 50%;
    z-index: -1;
    animation: drift 15s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.hero::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(12, 96, 162, 0.08) 0%, transparent 60%);
    bottom: -10vw;
    left: -10vw;
    border-radius: 50%;
    z-index: -1;
    animation: drift 20s infinite alternate-reverse cubic-bezier(0.45, 0, 0.55, 1);
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 80px) scale(1.05);
    }
}

.hero-inner {
    width: 60%;
    margin-top: 5rem;
    animation: fadeIn 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
}

.hero-visual {
    width: 40%;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: fadeInSlide 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 0;
}

/* Wavy golden aura of motion graphics behind the image holder */
.hero-visual::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -50%;
    width: 200%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(245, 201, 31, 0.35) 0%, transparent 60%);
    opacity: 0.8;
    animation: wavyLight 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes wavyLight {
    0% {
        transform: scale(1) translate(-20%, -10%) skewX(-15deg);
        filter: blur(50px);
    }

    50% {
        transform: scale(1.3) translate(15%, 10%) skewX(10deg);
        filter: blur(70px);
    }

    100% {
        transform: scale(0.9) translate(5%, -15%) skewX(-5deg);
        filter: blur(40px);
    }
}

.arch-image {
    width: 320px;
    height: 480px;
    border-radius: 200px 200px 8px 8px;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    /* Keep top */
}

.arch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 8px 8px;
    border: 3px solid var(--brand-yellow);
}

/* Cinematic sweeping light directly overlaying the surface of the picture */
.arch-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    animation: lightSweep 4s infinite cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
    pointer-events: none;
    border-radius: 200px 200px 8px 8px;
    /* Confines light within the arch shape */
}

@keyframes lightSweep {
    0% {
        left: -150%;
    }

    40% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.accent-badge {
    position: absolute;
    bottom: -35px;
    left: -15px;
    width: 130px;
    height: 130px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(245, 201, 31, 0.4);
    animation: spinSlow 15s linear infinite;
    z-index: 3;
}

.accent-badge svg text {
    fill: var(--brand-blue);
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: 2.5px;
}

@keyframes spinSlow {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 10vw;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 1rem;
    color: var(--brand-blue);
    perspective: 1000px;
}

/* 3D Falling Word Animation */
.hero-title .fall-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(-80px) rotateX(90deg) scale(0.9);
    animation: fallTogether 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fallTogether {
    0% {
        opacity: 0;
        transform: translateY(-80px) rotateX(90deg) scale(0.9);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0) scale(1);
        filter: blur(0);
    }
}

.hero-title i {
    font-style: italic;
    color: var(--brand-yellow);
    font-weight: 400;
}

.hero-meta {
    margin-top: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline:hover {
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: var(--brand-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 201, 31, 0.3);
}

/* Makhan Toast Special Section */
.makhan-section {
    padding: 4.5rem 4rem;
    background: var(--brand-blue);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Section animated background */
.makhan-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: scrollBg 30s linear infinite;
    z-index: 0;
}

@keyframes scrollBg {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 400px 400px;
    }
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.editorial-text h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: var(--brand-yellow);
}

.sub-heading {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

.desc {
    font-size: 1.1rem;
    max-width: 400px;
    color: rgba(255, 255, 255, 0.8);
}

.editorial-visual {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--brand-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Placeholder pure CSS animation for toast */
.minimal-toast-art {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.line {
    width: 250px;
    height: 2px;
    background: var(--brand-blue);
    transform-origin: center;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.editorial-visual:hover .line:nth-child(1) {
    transform: rotate(-8deg) translateY(-10px);
    background: #ffffff;
}

.editorial-visual:hover .line:nth-child(2) {
    transform: rotate(5deg) scaleX(1.1);
    background: #ffffff;
}

.editorial-visual:hover .line:nth-child(3) {
    transform: rotate(-6deg) translateY(10px);
    background: #ffffff;
}

.line:nth-child(1) {
    transform: rotate(-5deg);
}

.line:nth-child(2) {
    transform: rotate(2deg);
    width: 220px;
    margin-left: 15px;
}

.line:nth-child(3) {
    transform: rotate(-3deg);
    width: 280px;
    margin-left: -15px;
}

.art-caption {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-blue);
    font-weight: 700;
}

/* Index Collections List */
.index-section {
    padding: 10rem 4rem;
    position: relative;
}

.section-header {
    margin-bottom: 8rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-header h2 {
    font-size: 5rem;
    letter-spacing: -2px;
}

.section-header p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-bottom: 1rem;
    font-weight: 700;
}

.collection-list {
    border-top: 1px solid var(--border-color);
}

.list-item {
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    gap: 2.5rem;
    border-radius: 12px;
    margin: 0.5rem 0;

    /* Reveal Animation Logic */
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.list-item:nth-child(1) {
    animation-delay: 0.1s;
}

.list-item:nth-child(2) {
    animation-delay: 0.2s;
}

.list-item:nth-child(3) {
    animation-delay: 0.3s;
}

.list-item:nth-child(4) {
    animation-delay: 0.4s;
}

.list-item:nth-child(5) {
    animation-delay: 0.5s;
}

.list-item:nth-child(6) {
    animation-delay: 0.6s;
}

.list-item:nth-child(7) {
    animation-delay: 0.7s;
}

.list-item:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.list-item:hover {
    background-color: var(--brand-yellow);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 201, 31, 0.25);
    border-color: transparent;
    z-index: 10;
    position: relative;
}

.list-item:hover .item-meta,
.list-item:hover .item-title h3,
.list-item:hover .item-title p,
.list-item:hover .item-desc {
    color: var(--brand-blue);
}

.item-meta {
    flex: 0 0 5%;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.4s;
}

.item-image {
    flex: 0 0 12%;
    height: 120px;
    background: #e2e0da;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.list-item:hover .collection-img {
    transform: scale(1.1) rotate(2deg);
}

.item-title {
    flex: 0 0 35%;
}

.item-title h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--brand-blue);
    transition: color 0.4s;
}

.item-title p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: color 0.4s;
    font-weight: 600;
}

.item-desc {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    transition: color 0.4s;
}

/* Footer Editorial */
.footer-editorial {
    padding: 8rem 4rem 3rem;
    background: var(--brand-blue);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
}

.footer-col h4 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--brand-yellow);
}

.footer-col p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-col.right {
    text-align: right;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 3rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .list-item {
        gap: 1.5rem;
    }

    .item-image {
        flex: 0 0 20%;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 2rem;
    }

    .hero {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 15vw;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .makhan-section {
        padding: 4rem 2rem;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .editorial-text h2 {
        font-size: 4rem;
    }

    .index-section {
        padding: 6rem 2rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 3.5rem;
    }

    .list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 3rem 1rem;
    }

    .item-image {
        width: 100%;
        height: 200px;
    }

    .item-desc {
        padding-left: 0;
    }

    .footer-editorial {
        padding: 6rem 2rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-col.right {
        text-align: left;
    }

    .nav-brand,
    .nav-links {
        display: none;
    }
}