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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
    background-image: url('images.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 240px;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;

}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    height: 200px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgb(118, 33, 2);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF7F50, #FFB380);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #c23d0c;
    border-bottom: 3px solid #FF7F50;
}

.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF7F50 0%, #FFB380 100%);
    color: black;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
    
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.8s ease-out 0.25s;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.8s ease-in 0.2s;
}

@keyframes ease-in {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ease-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Video Section */
.video-section {
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.7);
}

.video-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #f58d67;
    border-bottom: 3px solid #ff875b;
    padding-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    aspect-ratio: 16 / 9;
}

.video-container:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.video-container iframe {
    border-radius: 12px;
    width: 100%;
    height: 100%;
}

/* Featured Section */
.featured {
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.7);
}

.featured h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #FF7F50;
    border-bottom: 3px solid #FF7F50;
    padding-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 4px solid #FF7F50;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-top-color: #FFB380;
}

.feature-card h3 {
    color: #FF7F50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: black;
    line-height: 1.7;
}

/* Gallery Section */
.gallery {
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.7);
}

.gallery h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #FF7F50;
    border-bottom: 3px solid #FF7F50;
    padding-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(1deg);
}

/* About Images */
.about-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.about-image-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.about-image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-card:hover img {
    transform: scale(1.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #FF7F50 0%, #FFB380 100%);
    color: black;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.content {
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.95);
}

.content h2 {
    color: #FF7F50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 3px solid #FF7F50;
    padding-bottom: 0.5rem;
}

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

.content ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
    list-style-type: disc;
}

.content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: rgb(13, 2, 0);
}

.content ul li::marker {
    color: #14100f;
    font-weight: bold;
}

.content ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
    list-style-type: decimal;
}

.content ol li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: rgb(16, 13, 13);
}

.content ol li::marker {
    color: #110e0d;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Menu Section */
.menu-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream-bg) 100%);
    padding: 1.75rem;
    border-radius: 10px;
    border-left: 5px solid #FF7F50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-left-color: #FFB380;
}

.menu-item h3 {
    color: #FF7F50;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.menu-item p {
    color: rgb(16, 13, 13);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.price {
    font-weight: bold;
    color: #FF7F50;
    font-size: 1.2rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f8f8f8;
    border-radius: 5px;
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #FF7F50;
    font-weight: bold;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid black;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF7F50;
    box-shadow: 0 0 8px #FF7F50;
    background-color: #faf5f0;
}

.submit-button {
    background: linear-gradient(135deg, #FF7F50 0%, #FFB380 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px coral;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px #FF7F50;
}

.submit-button:active {
    transform: translateY(-1px);
}

/* Table Styles */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(212, 135, 106, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.styled-table thead {
    background: linear-gradient(135deg, #FF7F50 0%, #FFB380 100%);
    color: white;
}

.styled-table thead tr {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.styled-table th,
.styled-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid coral;
}

.styled-table tfoot tr {
    background-color: #f8f8f8;
    font-weight: bold;
}

.styled-table tbody tr {
    transition: all 0.3s ease;
}

.styled-table tbody tr:hover {
    background-color: #faf5f0;
    transform: scale(1.01);
    box-shadow: inset 0 2px 4px rgba(212, 135, 106, 0.1);
}

.styled-table tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

.styled-table tbody tr:nth-child(even):hover {
    background-color: #faf5f0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 4px solid #FF7F50;
    transition: all 0.3s ease;
}

footer:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

footer p {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Contact Info Styles */
.contact-info {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 5px solid #FF7F50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    margin-top: 0;
    color: #FF7F50;
    border-bottom: 3px solid #FF7F50;
    padding-bottom: 1rem;
}

.info-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-section:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(212, 135, 106, 0.15);
}

.info-section h3 {
    color: #FF7F50;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.info-section p {
    margin: 0;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-grid,
    .menu-section,
    .gallery-grid,
    .about-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }

    .nav-links {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
 
     .page-header {
        padding: 3rem 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .feature-grid,
    .menu-section,
    .gallery-grid,
    .about-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content {
        padding: 2rem 1rem;
    }

    .featured {
        padding: 2rem 1rem;
    }

    .gallery {
        padding: 2rem 1rem;
    }

    .video-section {
        padding: 2rem 1rem;
    }

    .styled-table {
        font-size: 0.9rem;
    }

    .styled-table th,
    .styled-table td {
        padding: 0.75rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .video-container {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1rem;
    }

    .logo {
        height: 70px;
    }

    .nav-links {
        gap: 0.25rem;
    }

    .nav-links a {
        padding: 0.4rem 0.5rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 1.4rem;
    }

    .featured h2,
    .gallery h2,
    .video-section h2 {
        font-size: 1.5rem;
    }

    .content h2 {
        font-size: 1.4rem;
    }

    .feature-card,
    .menu-item {
        padding: 1.5rem 1rem;
    }

    .contact-form {
        max-width: 100%;
    }

    .styled-table {
        font-size: 0.8rem;
    }

    .styled-table th,
    .styled-table td {
        padding: 0.5rem;
    }
}
