:root {
    --brown-font: #DFBCA6;
    --blue-start: #092529;
    --font: "Cormorant Garamond", serif;
    --bubble-bg: #2b5162;
    --bubble-bg-hover: #446b7c;
    --page-max: 1200px;
}

body {
    margin: 0;
    font-family: var(--font);
    background-color: var(--blue-start);
    color: var(--brown-font);
}

/* Layout der Startseite */
.home {
    display: grid;
    place-items: center;
    overflow: hidden;

}

.hero {
    position: relative;
}

.MapIndia {
    margin-top: -250px;
}

.map-large {
    display: block;
}

.map-small {
    display: none;
}

.title {
    position: absolute;
    right: 1%;
    top: 53%;
    text-align: center;
    letter-spacing: 5px;
    font-family: var(--font);
    color: var(--brown-font);
    font-weight: 500;
}

.title span {
    display: block;
    font-size: 70px;
}

.moving-tuktuk {
    position: absolute;
    bottom: 50%;
    right: -100%;
    animation: flyLeft 7s linear;
    pointer-events: none;
    z-index: 5;
}

.moving-tuktuk img {
    width: 800px;
    height: auto;
}

@keyframes flyLeft {
    0% {
        transform: translateX(0vw);
    }

    100% {
        transform: translateX(-160vw);
    }
}

/* ---------- City Buttons ---------- */

.city-btn {
    position: absolute;
    text-decoration: none;
    
    width: 200px;
    height: 80px;
}

.city-btn .bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--bubble-bg);
    transition: background-color .25s ease;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.25);
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

/* Stadtgrafik */
.city-btn img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 2px rgb(0 0 0 / .25));
    transition: opacity .25s ease;
    flex-shrink: 0;
}

/* Label ist zunächst unsichtbar */
.city-btn .label {
    font-family: var(--font);
    font-size: clamp(18px, 2.6vw, 28px);
    color: var(--brown-font);
    letter-spacing: .03em;
    opacity: 0;
    transform: translate(-50%, -50%) translateY(4px);
    transition: opacity .25s ease, transform .25s ease;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
}

/* Hover-Effekt: Bubble heller, Grafik fadet raus, Label erscheint */
.city-btn:hover .bubble {
    background: var(--bubble-bg-hover);
}

.city-btn:hover img {
    opacity: 0;
}

.city-btn:hover .label {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

/* ---------- Positionen (pro Stadt an Karte angepasst) ---------- */

.delhi {
    left: 30%;
    top: 18%;
}

.kolkata {
    left: 53%;
    top: 24%;
}

.mumbai {
    left: 18%;
    top: 42%;
}

.chennai {
    left: 44%;
    top: 80%;
}

.bangalore {
    left: 8%;
    top: 72%;
}

@media (max-width: 1024px) {
   .title {
        right: 15%;
    }

    .title span {
        font-size: 54px;

    }
  
}

@media (max-width: 930px) {
   .title {
        right: 28%;
        top: 60%;
    }

    .title span {
        font-size: 40px;

    }
  
}

@media (max-width: 768px) {
    .map-large {
        display: none;
    }
    
    .map-small {
        display: block;
        width: 700px;
        transform: translateX(-14%); 
        margin-top: 105px;
        padding-bottom: 50px;
        
    }

    /* Titel für Mobile anpassen */
    .title {
        right: 20%;
        top: 70%;
    }

    .title span {
        font-size: 40px;
        letter-spacing: 2px;
    }

    /* City-Buttons für Mobile-Karte neu positionieren */
    .delhi {
        left: 7%;
        top: 30%;
    }

    .kolkata {
        left: 40%;
        top: 38%;
    }

    .mumbai {
        left: 5%;
        top: 49%;
    }

    .chennai {
        left: 27%;
        top: 67%;
    }

    .bangalore {
        left: 2%;
        top: 83%;
    }

    /* Buttons kleiner machen */
    .city-btn {
        width: 150px;
        height: 60px;
    }

    .city-btn img {
        height: 50px;
    }

    /* MapIndia Container anpassen */
    .MapIndia {
        margin-top: -100px;
    }

    .moving-tuktuk {
        bottom: 60%;             
        right: -110%;             
        animation: flyLeftTab 6s linear;
    }

    .moving-tuktuk img {
        width: 550px;          
    }

    @keyframes flyLeftTab {
        0% {
            transform: translateX(0vw);
        }
        100% {
            transform: translateX(-350vw);
        }
    }
}

@media (max-width: 560px) {
    .title {
        right: 42%;
        top: 3%;
    }

    .title span {
        font-size: 32px;
    }

    .kolkata {
        left: 33%;
        top: 38%;
    }
}