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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-image: url(images/creamcolour.png);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Menu Card Section */
.menu-card-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px 0;
    flex: 0 0 auto;
    position: relative;
    z-index: 10;
    margin-bottom: -70px;
}

.menu-card {
    background: #1a3a5c;
    border: 3px solid #fff;
    border-radius: 30px;
    width: max-content;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    height: 300px;
}

.menu-card-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    text-align: center;
    padding: 20px;
    text-transform: uppercase;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Navigation Arrows */
.nav-arrow {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    flex-shrink: 0;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.nav-arrow:active {
    transform: scale(0.95);
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

/* Content Section */
.content-section {
    background: linear-gradient(180deg, #1a3a5c 0%, #0f2847 100%);
    border-radius: 30px 30px 0 0;
    padding: 80px 30px 40px !important;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.subtitle {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.title {
    color: #000;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.description {
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.menu-button {
    background: #fff;
    color: #1a3a5c;
    padding: 18px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 1px;
}

.menu-button:hover {
    background: #dedede;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 58, 92, 0.4);
}

/* Instagram Section */
.instagram-section {
    background: #0f2847; 
    padding: 30px;
    text-align: center;
}

.instagram-link {
    color: #2c4a6b;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #1a3a5c;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .menu-card-section {
        gap: 15px;
        padding: 30px 10px 0;
        margin-bottom: -30px;
    }

    .menu-card {
        max-width: 300px;
        border-radius: 25px;
    }

    .menu-label {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .nav-arrow {
        width: 50px;
        height: 50px;
    }

    .nav-arrow svg {
        width: 20px;
        height: 20px;
    }

    .content-section {
        padding: 60px 20px 30px;
        border-radius: 25px 25px 0 0;
    }

    .subtitle {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .title {
        font-size: 42px;
    }

    .description {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .menu-button {
        padding: 15px 50px;
        font-size: 16px;
    }

    .instagram-section {
        padding: 25px 20px;
    }

    .instagram-link {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .menu-card-section {
        gap: 10px;
    }

    .menu-card {
        max-width: 250px;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
    }

    .title {
        font-size: 36px;
    }

    .description {
        font-size: 16px;
    }

    .title img{
        width: 40%!important;
        height: 30%;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .menu-card {
        max-width: 450px;
    }

    .nav-arrow {
        width: 70px;
        height: 70px;
    }

    .content-section {
        padding: 60px 40px 50px;
    }

    .title {
        font-size: 64px;
    }

    .description {
        font-size: 22px;
    }
}


/* From Uiverse.io by firemonste_8052 */ 
ul {
  list-style: none;
}

.example-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder; /* Made bolder */
  border-radius: 30px; /* Added border-radius to make the container rounded */
  padding: 20px; /* Added padding for better appearance */
  height: 70px;
  width: 300px;
}

.example-1 .icon-content {
  margin: 0 10px;
  position: relative;
  font-weight: bolder; /* Made bolder */
}

.example-1 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent; /* White background */
  color: #fff; /* Black text */
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: bolder; /* Made bolder */
}

.example-1 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

.example-1 .icon-content .link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff; /* White icons */
  background-color: transparent; /* Black background */
  transition: all 0.3s ease-in-out;
  font-weight: bolder; /* Made bolder */
}

.example-1 .icon-content .link:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.example-1 .icon-content .link svg {
  width: 30px;
  height: 30px;/* White icons */
}

.example-1 .icon-content .link[data-social="spotify"]:hover {
  color: #00a2ff;
}

.example-1 .icon-content .link[data-social="pinterest"]:hover {
  color: #ff009d;
}

.example-1 .icon-content .link[data-social="dribbble"]:hover {
  color: #686868;
}

.example-1 .icon-content .link[data-social="telegram"]:hover {
  color: #23b100;
}
