/* General body styles */
@font-face {
    font-family: 'Satoshi';
    src: url('Satoshi-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.2);
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.274);
  border-radius: 12px;
  padding: 16px;
  width: 200px;
  height: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.logo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4); /* Adjust alpha (0.1–0.5) for transparency level */
    z-index: -1;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url('Clouds001.jpg');
    background-size: cover;
    image-rendering: auto;
    overflow-x: hidden;
    font-family: 'Satoshi';
}

/* Header styles */
header {
    background-image: linear-gradient(#ce70a7, rgb(239, 239, 222));
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 0 0 10px white;
    box-shadow: 110px 190px 190px 20px rgba(119, 250, 255, 1.53);
    font-family: 'Satoshi';
}

/* Sandwich menu icon */
.menu-icon {
    font-size: 2.5rem;
    cursor: pointer;
    color: white;
    position: absolute; /* Positioning */
    top: 1rem;         /* Distance from the top */
    right: 1rem;       /* Distance from the right */
    font-family: 'Satoshi';
}

/* Navigation menu */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Main content container */
.container {
    flex: 1;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Button styles */
#buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

/* General button styles */
.app-button {
    width: 256px;
    height: 147px;
    border: none;
    padding: 0;
    text-align: center;
    font-size: 4.5rem;
    cursor: pointer;
    border-radius: 12px;
    color: transparent;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none;
}




/* Button hover effect */
.app-button:hover {
    box-shadow: inset 0 6px 10px rgba(0, 0, 0, 0.4);
    transform: scale(0.98);
}

/* Individual button background images */
.wellness-button {
    background-image: url('wellness.png');
}

.order-button {
    background-image: url('order.png');
}

.sponsor-button {
    background-image: url('sponsor.png');
}

.feedback-button {
    background-image: url('feedback.png');
}

.about-button {
    background-image: url('about.png');
}

/* Footer styles */
footer {
    background-image: linear-gradient(#ce70a7, rgb(239, 239, 222));
    color: white;
    text-align: center;
    padding: 1rem;
}


/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    nav ul li {
        text-align: center;
        padding: 0.5rem 0;
        border-top: 1px solid #444;
    }
    nav ul li a {
        padding: 1rem;
        display: block;
        width: 100%;
    }
}
