body {
    margin: 0;
    background-color: white;
}
.navbar {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background-color: #E2341C;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 2; /* Bring the navigation bar to first and always appear on the screen */
}
.navbar .logo{
    display: flex;
    align-items: center;
    padding: 8px 24px;
}
.navbar .logo img {
    height: 40px;
    margin-right: 10px;
}
.navbar .logo span {
    margin-right: 50px;
    padding-top: 1%;
}
.navbar .name {
    font-family: "Luckiest Guy", cursive;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 1.2em;
}
.navbar nav {
    font-family: "Luckiest Guy", cursive;
    letter-spacing: 1.6px;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    padding-right: 30px;
}
.navbar nav a {
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    font-size: 1em;
}

.Hero {
    width: 100%;
    height: 100vh; /* full-screen hero section */
    overflow: hidden;
    color: white;
}
.Hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.Hero-content {
    position: relative;
    z-index: 1; /* ensure content is above the img */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
}
.Hero-content h1 {
    font-family: "Luckiest Guy", cursive;
    color: rgb(217, 250, 0);
    text-shadow: 5px 5px 10px violet;
    font-size: 900%;
    margin-right: 50px;
    margin-left: 50px;
    margin-bottom: 0;
    margin-top: 0;
}
.Hero-content h3 {
    font-family: "Aclonica", sans-serif;
    font-size: 250%;
    margin-top: 0;
    font-weight: lighter;
}
.Hero-content h3:before {
    content: "\2603";
}
.Hero-content h3:after {
    content: "\2746"
}
.button {
    display: inline-block;
    margin: 20px auto 0;
    width: 15%;
    background-color:  #E2341C;   /* Button background */
    color: white;            /* Text color (optional) */
    font-weight: 500;
    padding: 10px 20px;      /* Size of the button */
    border: none;            /* Remove default border */
    border-radius: 20px;      /* Rounded corners — increase value for more rounding */
    cursor: pointer;     
}
a.button:hover {
    animation: wiggle 200ms linear infinite alternate;
}


/* MENU */
.about-menu h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: xx-large;
    font-weight: bolder;
}
/* Row 1 */
.row1-container {
    justify-content: center;
    text-align: center;
    background-color: rgb(195, 220, 242);
}
.row1-container h4 {
    font-family: "Calistoga", serif;
    font-size: 30px;
    margin-bottom: 0;
}
.row1-container h3 {
    margin-top: 0;
    font-family: "Francois One", sans-serif;
    font-size: 45px;
}
.row1 {
    background-color: rgb(195, 220, 242); 
    display: flex;
    gap: 30px;
    padding: 30px 0;
    perspective: 1200px;
    justify-content: center;
    text-align: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
    width: 23%;
    height: 420px;
    background-color: peachpuff;
    border: 3.8px pink solid;
    border-radius: 20px;
    transition: all 0.5s;
}

.card:hover{
    transform: scaleY(1.1);
    .card-img img {
        transform: scale(1.1);
    }
}
.card-img{
    height: 170px;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.5s;
}
.card-content{
    font-size: 20px;
    padding: 20px;
}
.card-content h2{
    color: purple;
    margin-top: 0;
    font-size: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.card-content p{
    font-size: 17px;
    margin-top: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: rgba(255, 255, 255, 0.6);
  transition: all 150ms;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ffffff;
}

.swiper-pagination-bullet {
  border: 2px solid transparent;
}

.swiper-pagination-bullet-active {
  background-color: black;
  border: 2px solid #ffffff;
  opacity: 1;
}

.menu {
    border-radius: 5px;
    padding: 0.4em;
    background-color: brown;
    color: white;
    text-decoration: none;
    display: inline-block;
}
button.menu {
    cursor: pointer;
}
button.menu:hover {
    animation: wiggle 200ms linear infinite alternate;
}

/* Row 2 */
.row2-container {
    justify-content: center;
    text-align: center;
    background-color: rgb(195, 220, 242);
}
.row2-container h4 {
    font-family: "Calistoga", serif;
    font-size: 30px;
    margin-bottom: 0;
}
.row2-container h3 {
    margin-top: 0;
    font-family: "Francois One", sans-serif;
    font-size: 45px;
}
.row2{
    display: flex;
    gap: 30px;
    perspective: 1200px;
    justify-content: center;
    text-align: center;
}

@keyframes wiggle {
    0% {transform: rotate(3deg)}
    100% {transform: rotate(-3deg)}
}

@media screen and (max-width: 900px) {
    body {
        margin-left: 5vw;
        margin-right: 5vw;
    }
    .row {
        display: block;
    }
    .card {
        width: auto;
        margin-bottom: 10px;
    }
}