/* ==============================
   🌟 Global Reset & Base Styles
============================== */
* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}

body {
     font-family: 'Poppins', sans-serif;
     background-color: #111;
     color: #fff;
     line-height: 1.6;
     scroll-behavior: smooth;
}

/* ==============================
   🌟 Header
============================== */
header {
     background: rgba(0, 0, 0, 0.8);
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 60px;
     position: sticky;
     top: 0;
     z-index: 100;
}

.logo {
     display: flex;
     align-items: center;
}

/* h1:hover {
     color: #ffb300;
} */

.logo img {
     width: 100px;
     height: 80px;
     margin-right: 10px;
     border-radius: 50%;
}

nav ul {
     display: flex;
     list-style: none;
}

nav ul li {
     margin-left: 25px;
}

nav a {
     background: transparent;
     color: #ffb300;
     /* border: 2px solid #ffb300; */
     padding: 10px 15px;
     text-decoration: none;
     border-radius: 25px;
     font-weight: 800;
     transition: 0.3s ease;
}

nav a:hover {
     background: transparent;
     color: #ffb300;
     border: 2px solid #ffb300;
}

/* ==============================
   🌟 Hero Section
============================== */
.hero {
     background: url('assets/Gaming.png') center/cover no-repeat;
     height: 110vh;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     /* margin: 10px; */
     border-radius: 15px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-text h2 {
     font-size: 2.5rem;
     color: #ffb300;
}

.hero-text p {
     font-size: 1.2rem;
     margin: 15px 0;
}

.btn {
     background: #ffb300;
     color: #000;
     padding: 10px 25px;
     text-decoration: none;
     border-radius: 25px;
     font-weight: 600;
     transition: 0.3s ease;
}

.btn:hover {
     background: transparent;
     color: #ffb300;
     border: 2px solid #ffb300;
}

/* ==============================
   🌟 Section Base
============================== */
section {
     padding: 60px 100px;
     text-align: center;
}

h2 {
     color: #ffb300;
     margin-bottom: 20px;
     font-size: 2rem;
}

/* ==============================
   🌟 Menu & Gaming Cards
============================== */
.menu-items,
.gaming-services {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 25px;
}

/* Reusable Card Layout */
.card {
     color: #ffb300;
     padding: 20px;
     border-radius: 15px;
     width: 250px;
     transition: transform 0.3s ease;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
}

/* Café Cards */
.menu .card:nth-child(1) {
     background-image: url('assets/Coffee 1.jpg');
}

.menu .card:nth-child(2) {
     background-image: url('assets/coffee 2.avif');
}

.menu .card:nth-child(3) {
     background-image: url('assets/Dosa.jpg');
}

/* Gaming Cards */
.gaming .card:nth-child(1) {
     background-image: url('assets/c1.jpg');
}

.gaming .card:nth-child(2) {
     background-image: url('assets/c2.png');
}

.gaming .card:nth-child(3) {
     background-image: url('assets/c3.jpg');
}

/* Hover Effect for Cards */
.card:hover {
     transform: scale(1.05);
}

/* ==============================
   🌟 Buttons (Order/Book)
============================== */
.btn1,
.btn2 {
     background: #ffb300;
     color: #000;
     padding: 10px 15px;
     text-decoration: none;
     border-radius: 25px;
     font-weight: 600;
     transition: 0.3s ease;

}

.btn1:hover,
.btn2:hover {
     /* background-color: #ffca28; */
     background: transparent;
     color: #ffb300;
     border: 2px solid #ffb300;
}

/* ==============================
   🌟 About Section
============================== */
.about {
     text-align: center;
     padding: 60px 20px;
     background-color: whitesmoke;
     color: #333;
}

.about h2 {
     color: #ffb300;
}

.about p {
     font-size: 1rem;
     color: black;
     max-width: 600px;
     margin: 0 auto;
}

/* ==============================
   🌟 Services Slider
============================== */
.services {
     text-align: center;
     padding: 60px 20px;
}

.services h2 {
     font-size: 2rem;
     margin-bottom: 25px;
     color: white;
}

.slider {
     position: relative;
     width: 300px;
     margin: 0 auto;
     overflow: hidden;
}

.slides {
     display: flex;
     transition: transform 0.5s ease-in-out;
     width: calc(300px * 4);
     /* total width = single slide width * number of slides */
}

.slider .run {
     min-width: 300px;
     /* keep each slide width fixed */
     flex-shrink: 0;
     /* prevents slides from shrinking */
     color: white;
     padding: 40px 0;
     border-radius: 10px;
     text-align: center;
}


.slider .run img {
     width: 50px;
     margin-bottom: 10px;
}

/* Slider Controls */
.prev,
.next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background-color: #444;
     border: none;
     color: white;
     padding: 8px 12px;
     cursor: pointer;
     border-radius: 4px;
     font-size: 18px;
     transition: 0.3s;
}

.prev:hover,
.next:hover {
     background-color: #ffb300;
     color: #111;
}

.prev {
     left: -40px;
}

.next {
     right: -40px;
}

/* Dots Navigation */
.dots {
     text-align: center;
     margin-top: 15px;
}

.dot {
     height: 10px;
     width: 10px;
     margin: 0 5px;
     background-color: #bbb;
     border-radius: 50%;
     display: inline-block;
     cursor: pointer;
     transition: background 0.3s;
}

.dot.active {
     background-color: #ffb300;
}

/* ==============================
   🌟 Contact & Footer
============================== */
.contact {
     text-align: center;
     padding: 50px 20px;
     background: whitesmoke;
}

.contact h2 {
     color: #ffb300;
     margin-bottom: 10px;
}

.contact p {
     font-size: 1rem;
     color: black;
}

.social-icons {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-top: 15px;
}

.social-icons a img {
     width: 45px;
     height: 45px;
     border-radius: 12px;
     transition: transform 0.3s, box-shadow 0.3s;
}

.social-icons a img:hover {
     transform: scale(1.1);
     box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

footer {
     text-align: center;
     background: #ffb300;
     padding: 15px;
     font-size: 0.9rem;
     color: black;
}