
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    background: #fff;
}


header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e67e22;
}

.btn-reserve {
    background: #e67e22;
    color: white ;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.btn-reserve:hover {
    background: #d35400;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #000;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #f8f8f8;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons {
    position: relative;
}

.search-checkbox {
    display: none;
}

.search-label {
    color: #000;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-label:hover {
    color: #e67e22;
}

.search-container {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.search-checkbox:checked ~ .search-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    width: 200px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #e67e22;
}

.search-submit {
    background: #e67e22;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: #d35400;
}


.featured {
    padding: 5rem 0;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.feature-box {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.feature-box i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.menu {
    padding: 5rem 0;
    background: #fff;
}

.menu h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #e67e22;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.menu-category h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #e67e22;
    margin: 0.5rem auto;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.menu-item-image {
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    overflow: hidden;
    height: 200px;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.item-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #e67e22;
    font-size: 1.1rem;
}

.menu-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.menu-item:hover img {
    transform: scale(1.05);
}

.menu-item h3 {
    margin: 1rem 0 0.5rem;
    font-family: 'Playfair Display', serif;
}

.about {
    position: relative;
    color: white;
    overflow: hidden;
    padding: 80px 20px;
}

.about .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.about .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.about .about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


.contact {
    padding: 5rem 0;
    background: #f9f9f9;
}

.contact h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    margin: 1.5rem 0 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}


footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-links {
    margin: 1rem 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #e67e22;
}

