

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

body {
    margin: 0;
    background-color: #000;
    color: #eee;
    font-family: 'Cinzel', serif;
    font-size: 12px;
}

a {
    text-decoration: none;
}

/* ================= CAROUSEL ================= */
.carousel {
    height: 95vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

/* ================= LIST ITEM ================= */
.carousel .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= CONTENT (FIXED / NO ANIMATION) ================= */
.carousel .list .item .content {
    position: absolute;
    top: 26%;
    left: 8%;
    width: 1140px;
    max-width: 90%;
    box-sizing: border-box;
    color: #fff;
    z-index: 10;
    text-shadow: 0 5px 10px #0004;
}

/* 🚫 Disable ALL text animation & transition */
.carousel .list .item .content,
.carousel .list .item .content * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
}

/* Show text ONLY on active slide */
.carousel .list .item:not(:first-child) .content {
    display: none;
}

.carousel .list .item .author {
    font-weight: bold;
    letter-spacing: 4px;
    font-size: 14px;
    opacity: 0.9;
}

.carousel .list .item .title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: bold;
    line-height: 1.3em;
}

.carousel .list .item .buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

/* ================= BUTTONS ================= */
.carousel .buttons .btn {
    height: 45px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 30px;
}

.buttons .swiggy {
    background: linear-gradient(135deg, #fc8019, #ff9f45);
    color: #000;
}

.buttons .swiggy:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(252,128,25,0.6);
}

.buttons .zomato {
    background: transparent;
    color: #fff;
    border: 2px solid #e23744;
}

.buttons .zomato:hover {
    background: #e23744;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(226,55,68,0.6);
}

/* ================= THUMBNAILS ================= */
.thumbnail {
    position: absolute;
    bottom: 50px;
    right: 6%;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    position: relative;
    flex-shrink: 0;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .ratings {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
}

/* ================= ARROWS ================= */
.arrows {
    position: absolute;
    top: 82%;
    left: 40%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 10px;
}

.arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-weight: bold;
}

.arrows button:hover {
    background-color: #fff;
    color: #000;
}

/* ================= IMAGE ANIMATIONS (KEEP) ================= */
.carousel .list .item:nth-child(1) {
    z-index: 1;
}

.carousel.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.prev .list .item:nth-child(2) img {
    animation: outFrame .5s forwards;
}

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

/* ================= PROGRESS BAR ================= */
.carousel .time {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: #f1683a;
}

.carousel.next .time,
.carousel.prev .time {
    animation: runningTime 3s linear forwards;
}

@keyframes runningTime {
    from { width: 100%; }
    to { width: 0; }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .carousel {
        height: 90vh;
    }

    .carousel .list .item .content {
        top: 25%;
        left: 6%;
        max-width: 88%;
        text-align: left;
    }

    .carousel .list .item .buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .thumbnail {
        bottom: 20px;
        right: -64%;
        display: flex;
        gap: 12px;
        max-width: 140vw;
        overflow-x: auto;
        padding-left: 10px;
    }

    .thumbnail .item {
        width: 90px;
        height: 130px;
    }

    .arrows {
        top: 85%;
        left: 40%;
    }
}

#logo {
    image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 767px) {
    #logo {
        transform: none !important;
    }
}

.fixed-content {
    position: absolute;
    top: 26%;
    left: 8%;
    max-width: 520px;
    z-index: 20;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}

.fixed-content,
.fixed-content * {
    animation: none !important;
    transition: none !important;
}







.animated-badge {
  width: 96px;
  height: 96px;
  position: relative;
}

.badge-text {
  z-index: 2; /* keep text above SVG shapes */
}

svg#organic-blob {
  position: relative;
  z-index: 9999;
  isolation: isolate;
  overflow: visible;
}

.bubbles {
  pointer-events: none;
}

svg {
  pointer-events: none;
  user-select: none;
}
