/* ==========================
   Reset & Basic
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

/* ==========================
   Utility Classes
========================== */
.primary-text,
.text-primary {
    color: #e1be74;
}
.text-secondary {
    color: #555;
}
.text-center {
    text-align: center;
}

/* ==========================
   Buttons
========================== */
.btn {
    display: inline-block;
    margin: 15px 5px;
    font-weight: 600;
    border-radius: 25px;
    padding: 12px 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    color: #fff;
    background: #e1be74;
}
.btn:hover {
    background: #d4a94f;
    transform: scale(1.05);
}

/* Modifier Buttons */
.btn.contact-btn {
    background: #E63946;
}
.btn.contact-btn:hover {
    background: #b4161b;
}

/* ==========================
   Section Titles
========================== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 38px;
    font-family: 'Lobster', cursive;
    color: #e1be74;
    margin-bottom: 10px;
}
.section-title p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

/* ==========================
   Rounded Images
========================== */
.img-rounded {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.img-rounded:hover {
    transform: scale(1.05);
}

/* ==========================
   Header
========================== */
header {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url(./images/home.png) center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
header * {
    z-index: 10;
}
header .content h1 {
    font-family: 'Lobster', cursive;
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.7);
}
header .content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

/* ==========================
   Navbar
========================== */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
#navbar.scrolled {
    background: rgba(12, 5, 6, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
#navbar img {
    width: 45px;
    height: auto;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
#navbar ul {
    display: flex;
    gap: 30px;
    align-items: center;
}
#navbar ul li a {
    color: #fff;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}
#navbar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #e1be74;
    transition: 0.3s ease;
}
#navbar ul li a:hover::after {
    width: 100%;
}
#navbar ul li a:hover {
    color: #e1be74;
}
#hamburger {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}
#hamburger:hover {
    color: #e1be74;
}

/* ==========================
   About Section
========================== */
#about {
    padding: 5rem 0;
    background: #f9f9f9;
}
#about .about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
#about .about-content div {
    flex: 1 1 400px;
}
#about .about-content img {
    width: 450px;
    max-width: 100%;
    border-radius: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
#about .about-content img:hover {
    transform: scale(1.05);
}
#about .about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* ==========================
   Offers Section
========================== */
#offers {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.65)), url(./images/offer.jpg) center/cover fixed;
    color: #fff;
    padding: 6rem 0;
}
#offers .offers-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
#offers .offers-items div {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#offers .offers-items div:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.6);
}
#offers .offers-items img {
    width: 100%;
    max-width: 250px;
    height: 160px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
#offers .offers-items img:hover {
    transform: scale(1.05);
}
#offers .offers-items h3 {
    color: #E63946;
    font-size: 20px;
    margin-bottom: 10px;
}
#offers .offers-items p {
    font-size: 14px;
    color: #fff;
}
#offers .offers-items span {
    color: #e1be74;
    font-weight: 600;
}

/* ==========================
   Menu Section
========================== */
#menu {
    background: #f4f4f4;
    padding: 6rem 0;
}
.menu-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.menu-item {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.menu-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.menu-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.menu-item img:hover {
    transform: scale(1.05);
}
.menu-item h3 {
    color: #E63946;
    font-size: 20px;
    margin-bottom: 10px;
}
.menu-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}
.menu-item span {
    color: #e1be74;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-top: 10px;
}

/* ==========================
   Daytime Section
========================== */
#daytime {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url(./images/daytime.jpg) center/cover fixed no-repeat;
    color: #fff;
    text-align: center;
    padding: 6rem 0;
}
.daytime-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.daytime-item {
    flex: 1 1 200px;
    max-width: 220px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.daytime-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.daytime-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #e1be74;
}
.daytime-item h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #e1be74;
    font-family: 'Lobster', cursive;
}
.daytime-item p {
    font-size: 14px;
    color: #fff;
}

/* ==========================
   Gallery Section
========================== */
#gallery {
    padding: 6rem 0;
    background: #f9f9f9;
}
.img-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    perspective: 1000px;
}
.img-gallery img {
    width: 280px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
    opacity: 0.95;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.img-gallery img:hover {
    opacity: 1;
    transform: rotateY(10deg) scale(1.08);
    box-shadow: 0 20px 35px rgba(0,0,0,0.4);
}

/* ==========================
   Contact Section
========================== */
#contact {
    padding: 6rem 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(./images/contact-bg.jpg) center/cover no-repeat;
    color: #fff;
}
#contact .contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}
#contact .contact-info {
    flex: 1 1 350px;
}
#contact .contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #e1be74;
    border-bottom: 2px solid #e1be74;
    display: inline-block;
    padding-bottom: 5px;
}
#contact .contact-info p {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
#contact .contact-info i {
    color: #e1be74;
    font-size: 18px;
}
#contact .contact-info div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}
#contact .contact-info div:last-child a {
    font-size: 24px;
    color: #E63946;
    margin: 0 5px; 
    transition: transform 0.3s, color 0.3s;
}
#contact .contact-info div:last-child a:hover {
    color: #FFD700;
    transform: scale(1.2);
}
#contact form {
    flex: 1 1 400px;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}
#contact form input,
#contact form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 15px;
    border: 1px solid #fff;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}
#contact form input::placeholder,
#contact form textarea::placeholder {
    color: #fff;
}
#contact form input:focus,
#contact form textarea:focus {
    outline: none;
    border-color: #e1be74;
    box-shadow: 0 0 15px rgba(255,215,0,0.4);
}
#contact form button {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s, transform 0.3s;
}

/* ==========================
   Footer
========================== */
#footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 35px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}
#footer a {
    color: #e1be74;
    margin: 0 5px;
    font-weight: 600;
    transition: 0.3s;
}
#footer a:hover {
    color: #E63946;
}