:root {
    --gold: #f7c948;
    --red: #ef4444
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Outfit, sans-serif;
    background: linear-gradient(#fffdf8, #fff6df)
}

.skip {
    position: absolute;
    left: -9999px
}

.skip:focus {
    left: 10px;
    top: 10px
}

nav {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08)
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Luckiest Guy';
    font-size: 1.4rem
}

.logo img {
    width: 42px
}

.links {
    display: flex;
    gap: 20px
}

.links a {
    text-decoration: none;
    color: #222;
    font-weight: 700
}

.book,
.btn {
    background: var(--gold);
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: #111;
    font-weight: 800
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    padding: 60px 5%;
    gap: 40px
}

.hero h1,
h2 {
    font-family: 'Luckiest Guy';
    color: var(--red);
    font-size: clamp(2rem, 5vw, 4rem)
}

.hero-image img,
.graphics-showcase img {
    width: 100%;
    height: auto
}

.hero-image img {
    /* filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .2)) */
}

.badge {
    display: inline-block;
    background: #fff3c4;
    padding: 8px 14px;
    border-radius: 999px
}

.graphics-showcase {
    padding: 20px 5%
}

.features,
.grid {
    display: grid;
    gap: 20px
}

.features {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    padding: 20px 5%
}

.features div,
.card,
.events,
.contact {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

#menu {
    padding: 40px 5%
}

.trust,
.cards,
.reviews {
    display: grid;
    gap: 20px
}

.cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))
}
.y {
    background: #ffe45d
}

.o {
    background: #ffbe5c
}

.r {
    background: #ff938a
}

.b {
    background: #9bdcff
}

.grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
}

.card:hover {
    transform: translateY(-8px)
}

.events,
.contact {
    text-align: center;
    margin: 30px 5%
}

.floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 999px
}

@media(max-width:768px) {
    .hero {
        grid-template-columns: 1fr
    }

    nav {
        flex-wrap: wrap
    }

    .links {
        order: 3;
        width: 100%;
        justify-content: center
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none;
        transition: none
    }
}

.image-container {
    position: relative;    /* Sets the coordinate boundary for the top image */
    display: inline-block; /* Forces the container to shrink to the image size */
  }
  
  .base-image {
    display: block;        /* Removes default whitespace gaps under the image */
    width: 100%;           /* Scale as needed */
    height: auto;
  }
  
  .overlay-image {
    position: none;    /* Removes it from the normal page flow */
    top: 10px;             /* Distance from the top edge of the container */
    left: 20px;            /* Distance from the left edge of the container */
    z-index: 10;           /* Higher number ensures it stays on top */
    width: 200px;  
    height: 200px;
   
  }
  .social-links {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: #f7c948;
    color: #111;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}