@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;500&display=swap');
:root {
  
    --primary-color: #E67E22; 
    --primary-dark: #D35400; 
    --primary-light: #F39C12; 
    
    --secondary-color: #F1C40F; 
    --secondary-dark: #F39C12; 
    --secondary-light: #F9E79F;
    
    --text-color: #2C3E50; 
    --text-light: #7F8C8D;
    --bg-color: #FFFFFF; 
    --card-bg: #F9F9F9; 
    --border-color: #ECF0F1;
    
    
    --success-color: #27AE60; 
    --error-color: #E74C3C; 
    --warning-color: #F39C12; 
    --info-color: #3498DB; 
    
    --gold-primary: #FFD700;   
    --spice-secondary: #FF7F50; 
    --text-dark: #2A2A2A; 

    --button-bg: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --nav-bg: rgba(255, 255, 255, 0.97);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition-timing: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --nav-height: 80px;
}

.dark-theme {
  
    --text-color: #ECF0F1;
    --text-light: #BDC3C7; 
    --bg-color: #2C3E50; 
    --card-bg: #34495E; 
    --border-color: #3D566E; 
        
    --nav-bg: rgba(44, 62, 80, 0.97);
    --button-bg: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}


.theme-toggle:hover::after {
    content: 'Toggle Theme';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
    z-index: 1001;
}

.dark-theme .theme-toggle:hover::after {
    background: rgba(255, 255, 255, 0.9);
    color:black;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: var(--nav-height);
    max-width: 1400px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    margin-right: 20px;
    background-color: rgba(26, 26, 26, 0.97);
   
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    height: var(--nav-height);
    
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    max-width: 1500px;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}



 


.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 1.5rem);
    color: var(--text-dark);
    letter-spacing: 3px;
    margin: 0;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--gold-primary), var(--spice-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.brand-name:hover {
    transform: scale(1.02);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.15);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .brand-name {
        letter-spacing: 1px;
        font-size: 1.5rem;
    }
    .hamburger{
        margin-right: 2.5rem;
    }
    
}

/* book styling  */


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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-timing);
}


.nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: all var(--transition-timing);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::before {
    width: 100%;
    left: 0;
}

.login-btn {
    background: var(--button-bg);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
    background-color: var(--spice-secondary);
}

.theme-toggle:hover {
    /* background: rgba(0, 0, 0, 0.05); */
    background-color: var(--bg-color);
}

.theme-toggle img {
    height: 26px;
    width: 26px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}



.theme-toggle:hover::after {
    content: 'Toggle Theme';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

.hamburger {
    display: none;
    background-color: #fff;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.hamburger i {
    font-size: 2rem;
    background: none;
    color: #FFF;
    transition: transform 0.3s ease;
}
/* responsives  */

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        flex-direction: column;
        background:  rgba(26, 26, 26, 0.97);
        width: 70%;
        height: calc(100vh - var(--nav-height));
        padding: 2rem;
        gap: 2rem;
        transition: right 0.4s ease-out;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
       background-color:white;
       color: #fff;
       background: transparent;
    }

    .hamburger.active i {
        transform: rotate(45deg);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}


/* Home Section */
.grid {
    margin: 0 5vw;
    padding: 20px 0;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 80px 0;
    align-items: center;
}

.content-left {
    width: 100%;
}

.content-left .info {
    max-width: 100%;
}

.content-left .info h2 {
    display: inline-block;
    min-height: 60px;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: bold;
    color: var(--primary-dark);
    margin: 30px 0 20px;
    line-height: 1.3;
    overflow: hidden;
}

.content-left .info p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    margin-bottom: 30px;
}

.content-left button {
    padding: 12px 24px;
    background-color: var(--spice-secondary);
    color: #fff;
    border-radius: 25px;
    border: none;
    font-size: clamp(14px, 1.5vw, 16px);
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.content-left button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.content-right {
    position: relative;
    width: 100%;
    text-align: center;
}

.content-right img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50%;
    user-select: none;
    animation: rotate 50s linear infinite;
}

.hidden-content {
    display: none;
    margin: 15px 0;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.6;
}

.button-container {
    display: flex;
    gap: 10px;
}



/* Animations */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .content {
        grid-template-columns: 1fr;
        margin: 60px 0;
    }
    
    .content-right {
        order: -1;
        margin-bottom: 40px;
    }
    
    .content-right img {
        max-width: 300px;
    }
    
    .content-left .info {
        text-align: center;
    }
    
    .button-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .grid {
        margin: 0 20px;
    }
    
    .content-left .info h2 {
        display: inline-block;
        min-height: 30px;
        font-size: clamp(20px, 3vw, 25px);
        font-weight: bold;
        color: var(--primary-dark);
        margin: 15px 0 10px;
        line-height: 1.3;
        overflow: hidden;
    }
    
    .content-left button {
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .content {
        margin: 40px 0;
    }
    
    .content-right img {
        max-width: 250px;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .content-left button {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        max-width: 200px;
    }
    
    .typed-cursor {
        font-size: 20px;
    }
}

/*  divider hrizontal line  */

.section-divider {
    position: relative;
    margin: 4rem 0;
    text-align: center;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 2px solid var(--primary-color);
    z-index: 1;
}

.divider-title {
    position: relative;
    display: inline-block;
    padding: 0 1.5rem;
    background-color: var(--bg-color);
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.divider-title:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(255, 127, 80, 0.3);
}

/* Optional animation */
@keyframes lineExpand {
    0% { width: 0% }
    100% { width: 100% }
}

.section-divider::before {
    animation: lineExpand 1s ease-out forwards;
}

/* About Section Styling */

.about-section {
    padding: 4rem 2rem;
    margin: 0;
    background: var(--bg-color);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    transform: translateX(-50px);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 2.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;

    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;

    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease 0.4s, opacity 0.6s ease 0.4s;
}

.highlight-text {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 500;

    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease 0.6s, opacity 0.6s ease 0.6s;

}
.animate-in .restaurant-image,
.animate-in .section-subtitle,
.animate-in .section-title,
.animate-in .highlight-text {
    transform: translate(0);
    opacity: 1;
}




.about-text{
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
   
}

.about-features {
    list-style: none;
    padding: 2rem 0;
    margin: 1rem 0;


    transform: translateY(-30px);
    opacity: 0;
    animation: dropDown 0.8s 1s forwards;
}

.about-features li {
    padding: 1rem 0;
    font-size: 1.25rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);


    transform: translateY(-30px);
    opacity: 0;
    animation: dropDown 0.8s 0.5s forwards;
}
@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.about-features li i {
    color: var(--primary-color);
    width: 25px;
}

.long-description {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.long-description.visible {
    display: block;
    opacity: 1;
}

.read-more-btn {
    background: var(--button-bg);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.4);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn.expanded i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}


/*  team counter  */
.achievement-counters {
    padding: 5rem 2rem;
    /* background: linear-gradient(45deg, #5a5653, #756e6a); */
    color: white;
    background-color: var(--bg-color);
    color: var(--primary-color);
}

.counter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.counter-card {
    text-align: center;
    padding: 2rem;
    background: rgba(102, 31, 31, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.counter-card:hover {
    transform: translateY(-10px);
}

.counter-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.counter {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin: 1rem 0;
    color: var(--secondary-color);
}

.counter-card span {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .counter-container {
        grid-template-columns: 1fr;
    }
    
    .counter {
        font-size: 2.5rem;
    }
}






/*  styling contact section  */
/* Modern Contact Section */


/* Contact Section Styles *//* Contact Section *//* Updated Contact Section Styles */
/* Contact Section Styles */
/* Updated Contact Section Styles */




/* FREQUENTLY ASKED QUESTION STYLING  */

/* FAQ Styles */
.faq-section {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,127,80,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 35px;
}

.faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--text-color);
    flex-grow: 1;
    margin: 0;
}

.toggle-icon {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

/* Active State */
.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust based on content */
    padding-top: 0.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .faq-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-question h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question i {
        font-size: 1.2rem;
    }
}





/* footer section  */
/* Footer Styles *//* Menu Footer Styles */
.menu-footer {
    background: rgba(26, 26, 26, 0.97);
    color: #fff;
    padding: 3rem 1rem;
    margin-top: 4rem;
    border-top: 3px solid var(--primary-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.footer-section {
    padding: 1rem;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--primary-color);
}

.hours-list span {
    display: inline-block;
    width: 80px;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    
}

.footer-social a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 3px solid var(--primary-color);
    
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    /* border-top: 1px solid var(--border-color); */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-list li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}






/*custom scrollbar */

::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: #aeb5bd;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(#642bff, #ff2be6);
    border-radius: 10px;
}