:root {
    --color-cream: #FAF8F5;
    --color-coffee: #2d2d2d;
    --color-dark-coffee: #1a1a1a;
    --color-light-coffee: #1a1a1a;
    --color-accent: #2d2d2d;
    --color-white: #FFFFFF;
    --color-text: #2d2d2d;
    --color-text-light: #6b6b6b;
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Crimson Text', serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* added by me: */
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #20ba5a;
    /* --color-facebook: #0866ff;
    --color-instagram: #c91661; */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 100px;  /* Moved down below navbar */
    right: 20px;
    z-index: 998;  /* Below navbar (999) */
    background: var(--color-white);
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--color-coffee);
    color: var(--color-white);
}

.lang-btn:hover {
    background: var(--color-light-coffee);
    color: var(--color-white);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-georgian {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-coffee);
    line-height: 1.2;
}

.logo-english {
    font-size: 12px;
    color: var(--color-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 400;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-coffee);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-coffee);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-coffee);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(to bottom, #FAF8F5 0%, #FFFFFF 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-decoration {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(111, 78, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-50px, -50px) scale(1.1);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 700;
    color: var(--color-dark-coffee);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 32px);
    color: var(--color-coffee);
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 500;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: var(--color-coffee);
    color: var(--color-white);
    padding: 16px 48px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(111, 78, 55, 0.2);
}

.cta-button:hover {
    background: var(--color-dark-coffee);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(111, 78, 55, 0.3);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: var(--color-dark-coffee);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-accent);
}

/* Menu Section */
.menu-section {
    background: var(--color-white);
}

.menu-category {
    margin-bottom: 80px;
    /* background-image: url(images/yavissaxli.jpg); */
}

.menu-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-coffee);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    background: var(--color-cream);
    padding: 32px;
    border-radius: 0;
    transition: var(--transition);
    border: 1px solid #e5e5e5;
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.item-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark-coffee);
}

.item-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-coffee);
}

.item-description {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, var(--color-cream), var(--color-white));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 25px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.feature-icon {
    font-size: 40px;
}

.feature-item span:last-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-coffee);
}

.about-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/5;
    background: var(--color-accent);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background-image: url(images/about_img.JPEG);
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

/* Gallery Section */
.gallery-section {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0;
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.contact-section {
    background: var(--color-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-coffee);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p,
.info-item a {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.7;
}

.info-item a {
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--color-coffee);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-coffee);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-dark-coffee);
    transform: translateY(-2px);
}
/* .social-link:first-child{
    background: var(--color-facebook);
}
.social-link:nth-child(2){
    background: var(--color-instagram);
} */

/* Order Form */
.order-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height:fit-content; /* added to make whatsapp box fit its content */
}

.order-form h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--color-coffee);
    margin-bottom: 25px;
    font-weight: 600;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid var(--color-cream);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
    background: var(--color-cream);
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--color-coffee);
    background: var(--color-white);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--color-whatsapp);
    color: var(--color-white);
    border: none;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.submit-btn:hover {
    background: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(111, 78, 55, 0.2);
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: var(--color-text-light);
    font-size: 14px;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--color-dark-coffee);
    color: var(--color-white);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 15px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .language-toggle {
        top: 90px;  /* Adjust for mobile */
        right: 10px;
        transform: scale(0.9);  /* Make it slightly smaller on mobile */
    }

    .order-form {
        padding: 30px 20px;
    }
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Animation for elements on scroll */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item,
.gallery-item {
    animation: fadeIn 0.6s ease-out;
}
