/* General Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #2a9d8f;
    --accent-color: #e9c46a;
    --dark-color: #264653;
    --light-color: #f1faee;
    --gray-color: #f5f5f5;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--light-color);
}

.primary-btn:hover {
    background: #d32f2f;
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.secondary-btn {
    background: var(--secondary-color);
    color: var(--light-color);
}

.secondary-btn:hover {
    background: #218380;
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 6px 20px rgba(33, 131, 128, 0.4);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.underline {
    height: 4px;
    width: 80px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.underline:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--accent-color);
    top: 0;
    left: -50px;
}

.underline:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--secondary-color);
    top: 0;
    right: -50px;
}

/* 3D Background Animation */
.bg-animation {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.cube {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(230, 57, 70, 0.05);
    transform-style: preserve-3d;
    animation: cubeRotate 20s linear infinite;
}

.cube:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cube:nth-child(2) {
    top: 70%;
    left: 30%;
    animation-delay: -5s;
    width: 120px;
    height: 120px;
}

.cube:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: -10s;
}

.cube:nth-child(4) {
    top: 80%;
    left: 60%;
    animation-delay: -15s;
    width: 100px;
    height: 100px;
}

.cube:nth-child(5) {
    top: 20%;
    left: 60%;
    animation-delay: -7s;
    width: 60px;
    height: 60px;
}

@keyframes cubeRotate {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

header .logo img {
    height: 60px;
    margin-right: 15px;
}

header .logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
}

header nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

header nav ul li a {
    padding: 10px 15px;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    position: relative;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

header nav ul li a:hover::after,
header nav ul li a.active::after {
    width: 100%;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/restaurant-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.7) 0%, rgba(42, 157, 143, 0.7) 100%);
    opacity: 0.6;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateZ(0);
    animation: float 6s ease-in-out infinite;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.animated-text {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient 5s linear infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
}

.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    box-shadow: var(--shadow);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(0deg);
}

.feature:hover {
    transform: perspective(1000px) rotateY(5deg) translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-icon:before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 24px;
}

.feature p {
    color: #666;
}

/* Menu Section */
.menu-section {
    padding: 100px 20px;
    background: linear-gradient(to right, #f1faee, #ffffff);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category h3 {
    text-align: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.menu-category h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.menu-item {
    width: 45%;
    min-width: 300px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: perspective(1000px) rotateX(0deg);
}

.menu-item:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.menu-item-img {
    height: 250px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-info {
    padding: 20px;
}

.menu-item-info h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.menu-item-info .description {
    color: #666;
    margin-bottom: 15px;
}

.menu-item-info .price {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 22px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 30px;
}

/* Gallery Section */
.gallery {
    padding: 100px 20px;
    background: linear-gradient(to right, #ffffff, #f9f9f9);
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    flex: 1;
    min-width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(0deg);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.03);
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay span {
    font-size: 18px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(42, 157, 143, 0.05) 100%);
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.customer h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.stars {
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(to right, #f1faee, #ffffff);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-right: 20px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.hours {
    margin-top: 30px;
}

.hours h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 20px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    background: var(--primary-color);
    color: #fff;
    align-self: flex-start;
}

.contact-form button:hover {
    background: #d32f2f;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 50px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 50px;
    margin-right: 15px;
}

.footer-logo h3 {
    font-size: 20px;
    color: var(--light--)
}
/* General Styles */
:root {
    --primary-color: #ff5722;
    --secondary-color: #4caf50;
    --accent-color: #ffc107;
    --dark-color: #333;
    --light-color: #fff;
    --gray-color: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.cube {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 87, 34, 0.1);
    animation: cube 25s linear infinite;
    transform-style: preserve-3d;
}

.cube:nth-child(1) {
    top: 10%;
    left: 45%;
    animation-delay: 0s;
}

.cube:nth-child(2) {
    top: 70%;
    left: 25%;
    animation-delay: -5s;
    width: 60px;
    height: 60px;
}

.cube:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: -10s;
    width: 100px;
    height: 100px;
}

.cube:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: -15s;
    width: 120px;
    height: 120px;
}

.cube:nth-child(5) {
    top: 20%;
    left: 15%;
    animation-delay: -20s;
    width: 90px;
    height: 90px;
}

@keyframes cube {
    0% {
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: 1;
    }
    100% {
        transform: scale(1.3) rotate(360deg) translate(-50%, -50%);
        opacity: 0;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--light-color);
}

.primary-btn:hover {
    background: #e64a19;
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.secondary-btn {
    background: var(--accent-color);
    color: var(--dark-color);
}

.secondary-btn:hover {
    background: #ffb300;
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.underline {
    height: 4px;
    width: 80px;
    background: var(--accent-color);
    margin: 0 auto;
    position: relative;
}

.underline:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--primary-color);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

header .logo img {
    height: 60px;
    margin-right: 15px;
}

header .logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
}

header nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

header nav ul li a {
    padding: 10px 15px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

header nav ul li a:hover::after,
header nav ul li a.active::after {
    width: 100%;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/restaurant-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.7) 0%, rgba(76, 175, 80, 0.7) 100%);
    opacity: 0.6;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateZ(0);
    animation: float 6s ease-in-out infinite;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
}

.animated-text {
    background-image: linear-gradient(90deg, #ff5722, #ffc107, #4caf50, #ff5722);
    background-size: 300%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradient 8s linear infinite;
}

@keyframes gradient {
    0% { background-position: 0%; }
    100% { background-position: 300%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Menu Section */
.menu-section {
    padding: 100px 20px;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category h3 {
    text-align: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.menu-category h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.menu-item {
    width: 45%;
    min-width: 300px;
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(0deg);
}

.menu-item:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.menu-item-img {
    height: 250px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-info {
    padding: 20px;
}

.menu-item-info h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.menu-item-info .description {
    color: #666;
    margin-bottom: 15px;
}

.menu-item-info .price {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 20px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 30px;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.feature {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.feature:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature p {
    color: #666;
}

/* Gallery Section */
.gallery {
    padding: 100px 20px;
    background: var(--light-color);
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.gallery-item {
    flex: 1;
    min-width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: perspective(1000px) rotateY(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay span {
    font-size: 18px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f1f1f1 100%);
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
}

.customer h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.stars {
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-right: 20px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.hours {
    margin-top: 30px;
}

.hours h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 20px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.2);
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 50px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 50px;
    margin-right: 15px;
}

.footer-logo h3 {
    font-size: 20px;
    color: var(--light-color);
}

.social-links {
    display: flex;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height:20
}

/* General Styles */
:root {
    --primary-color: #ff5722;
    --secondary-color: #4caf50;
    --accent-color: #ffc107;
    --dark-color: #333;
    --light-color: #fff;
    --gray-color: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

/* 3D Background Animation */
.bg-animation {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    perspective: 1000px;
    overflow: hidden;
}

.cube {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 87, 34, 0.1);
    transform-style: preserve-3d;
    animation: cubeRotate 20s infinite linear;
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.2);
    border-radius: 10px;
}

.cube:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cube:nth-child(2) {
    top: 70%;
    left: 30%;
    animation-delay: -5s;
    background: rgba(76, 175, 80, 0.1);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.2);
}

.cube:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: -10s;
    background: rgba(255, 193, 7, 0.1);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.cube:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: -15s;
    background: rgba(33, 150, 243, 0.1);
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.2);
}

.cube:nth-child(5) {
    top: 20%;
    left: 50%;
    animation-delay: -7s;
    background: rgba(156, 39, 176, 0.1);
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.2);
}

@keyframes cubeRotate {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    backface-visibility: hidden;
    cursor: pointer;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--light-color);
}

.primary-btn:hover {
    background: #e64a19;
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.secondary-btn {
    background: var(--accent-color);
    color: var(--dark-color);
}

.secondary-btn:hover {
    background: #ffb300;
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.underline {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

header .logo img {
    height: 60px;
    margin-right: 15px;
}

header .logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
}

header nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

header nav ul li a {
    padding: 10px 15px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

header nav ul li a:hover::after,
header nav ul li a.active::after {
    width: 100%;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/restaurant-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.7) 0%, rgba(76, 175, 80, 0.7) 100%);
    opacity: 0.6;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateZ(0);
    animation: float 6s ease-in-out infinite;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
}

.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg);
}

.feature:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    top: 0;
    left: 0;
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 24px;
}

.feature p {
    color: #666;
}

/* Menu Section */
.menu-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category h3 {
    text-align: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.menu-item {
    width: 45%;
    min-width: 300px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(0deg);
}

.menu-item:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.menu-item-img {
    height: 200px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-info {
    padding: 20px;
}

.menu-item-info h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.menu-item-info .description {
    color: #666;
    margin-bottom: 15px;
}

.menu-item-info .price {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 20px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 30px;
}

/* Gallery Section */
.gallery {
    padding: 100px 20px;
    background: linear-gradient(to right, #ffffff, #f9f9f9);
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    flex: 1;
    min-width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(0deg);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: perspective(1000px) rotateY(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay span {
    font-size: 18px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
}

.customer h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.stars {
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-right: 20px;
    margin-bottom: 20px;
    transform: perspective(1000px) rotateY(0deg);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.hours {
    margin-top: 30px;
}

.hours h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateY(0deg);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 20px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.2);
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background: #e64a19;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 50px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 50px; margin-right: 15px;
}
.footer-logo h3 {
    font-size: 20px;
    color: var(--light-color);
}

.social-links {
    display: flex;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 10px;color: var(--light-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .menu-item {  width: 100%;
    }
    .about-content, .about-image 
    {
        flex: 100%;
        padding-right: 0;
    }

        .about-content {
        margin-bottom: 40px;
    }
     .about-image {
        height: 300px;
    }
    .contact-info, .contact-form {
        flex: 100%;
        margin-right: 0;
    } .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero h2 { font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    header nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}


