:root {
    --color-primary: #0078ff;
    --color-dark: #222;
    --color-light: #F9F9F9;
    --color-text-main: #333;
    --color-text-secondary: #555;
    --color-accent-login: #58a6ad;
    --font-stack: "Poppins", sans-serif;

     --font-stack: "Poppins", sans-serif;

    --container-width: 1200px;
    --header-height: 80px; 


    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 15px;
    --radius-pill: 25px;
    --radius-circle: 50%;

    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08); 
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1); 
    --shadow-xl: 0 10px 25px rgba(0, 0, 0, 0.4); 
    --shadow-neon: 0 4px 12px rgba(52, 152, 219, 0.3);

  
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: cubic-bezier(0.25, 0.46, 0.45, 0.94);

    
    --z-negative: -1;
    --z-normal: 1;
    --z-fab: 20;
    --z-dropdown: 100;
    --z-navbar: 1000;
    --z-overlay: 2000;
    --z-modal: 3000;


    --img-home: url('images/restaurant.png')
   
}


html {
   
    scrollbar-gutter: stable;
}

body {
    width: 100%;
    overflow-x: hidden;
    color: var(--color-dark);
    background: var(--color-light);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-stack);
}

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

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 19px;
    background: var(--color-light);
     z-index: var(--z-navbar);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    
}


.search-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--color-dark); 
    font-size: 1.2rem;
    transition: transform 0.2s ease;
    margin-left: auto; 
    margin-right: 20px;
}
.search-overlay.active {
    display: flex;
}


    
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: none; 
    justify-content: center;
    padding-top: 15vh;
}



.search-container {
    width: 80%;
    max-width: 800px;
    position: relative;
    text-align: center;
}

#searchInput {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
    padding: 10px 0;
    letter-spacing: 1px;
}

.search-bar-line {
    height: 1px;
    width: 0; 
    background: linear-gradient(to right, transparent, #fff, transparent);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-bar-line {
    width: 100%;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.search-close:hover { opacity: 1; }
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    padding-left: 15px;
 
    margin-top: 0; 
}

#searchResultsPage {
    display: none; 
    width: 100%;
    min-height: 100vh;
    background: #fdfdfd; 
    padding: 120px 5% 60px 5%;
    flex-direction: column;
    align-items: center;
}

#searchResultsPage.active {
    display: flex;
}


.search-results-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
}

.mega-menu-content {
    margin-top: 50px;
    width: 100%;
    animation: fadeIn 0.6s ease forwards;
}


.mega-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.mega-item {
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.mega-item:hover {
    transform: translateY(-10px);
}

.mega-item img {
    width: 100%;
    max-width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.mega-item h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}


.mega-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    margin: 20px 0;
}


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


#searchInput {
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}


#pizzasGrid {
    display: grid;
    width: 100%;
    max-width: 1200px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}




.search-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.search-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}


.search-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    
    text-align: left; 
    
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.search-card h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: left;
}

.search-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    height: 60px; 
    overflow: hidden;
    text-align: left;
}


.search-card .order-btn {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
}

.reservation-hero {
    width: 100%;
    min-height: 100vh; 
    display: flex;
    align-items: center; 
    
    
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                var(--img-home) no-repeat center center;
    background-size: cover;
    background-attachment: fixed; 
    
    padding-top: 100px; 
}

.hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        var(--img-home) no-repeat center/cover;
    color: var(--color-light);
    text-align: center;
    padding: 120px 20px;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    padding-top: 150px;
}


.full-height {
    display: flex;
    justify-content: flex-start; 
    width: 100%;
}


.reservation-card-left {
    flex: 0 0 450px; 
    background: #ffffff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}


.reservation-card-left .form-row-grid {
    display: flex; 
    flex-direction: column;
    gap: 0; 
}

.reservation-card-left .input-group {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.reservation-card-left .send-btn-green {
    display: inline-block;    
    width: auto;           
    min-width: 200px;       
    padding: 14px 40px;      
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    
    margin-top: 25px;       
    margin-left: 0;          
    text-align: center;
}


/* Hover & Focus για τα boxes */
.reservation-card-left .main-contact-form input:focus,
.reservation-card-left .main-contact-form .booking-select:focus {
    outline: none;
    border-color: var(--color-primary); 
    box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1); 
}

.reservation-card-left .input-icon {
    left: 15px;
}




.send-btn-green {
    width: 100%;
    padding: 14px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    margin-top: 15px;
}

.send-btn-green:hover {
    background-color: #005fcc;
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}


::placeholder {
    color: #999;
    font-size: 0.9rem;
}


.reservation-flex-container {
    display: flex;
    align-items: center;    
    justify-content: flex-start; 
    gap: 120px;                  
    max-width: 1300px;          
    margin: 0 auto;
    padding: 20px;
}

.reservation-card-left {
    flex: 0 0 450px; 
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}


.reservation-info-aside {
    background: rgba(34, 34, 34, 0.8); 
    backdrop-filter: blur(12px); 
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-title {
    color: #00e5ff; 
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border-left: 4px solid #0078ff;
    padding-left: 15px;
}


.info-items-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}


.icon-box {
    background: #0078ff;
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 120, 255, 0.4);
}

.info-text h4 {
    margin: 0;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
}

.info-text p {
    margin: 3px 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}


.reservation-card-left .main-contact-form input, 
.reservation-card-left .main-contact-form .booking-select {
    display: block;
    width: 100%; 
    padding: 14px 15px;
    margin-bottom: 20px; 
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
}


.reservation-card-left .form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.reservation-card-left .form-row-grid input {
    margin-bottom: 0;
}


.reservation-card-left .send-btn-green {
    display: table;        
    width: auto;            
    min-width: 180px;        
    padding: 14px 35px;
    margin-top: 10px;       
    margin-left: 0;         
    margin-right: auto;      
    
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover εφέ */
.reservation-card-left .send-btn-green:hover {
    background-color: #005fcc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.phone-cta {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.phone-cta span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    display: block;
}

.phone-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number:hover {
    color: #0078ff;
}

@media (max-width: 992px) {
    .reservation-flex-container {
        flex-direction: column;
        gap: 30px;
    }
    .reservation-card-left, 
    .reservation-info-aside {
        flex: 1 1 auto;
        width: 100%;
        max-width: 450px;
    }
}
.order-btn-back {
    display: inline-block;
    background: #2d3436;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
}


.nav-links {
    display: flex;
    text-align: center;
    gap: 30px;
  
    margin-top: 10px; 
}

.nav-links a {
    text-decoration: none;
  
    color: var(--color-dark);
    font-weight: 500;
    transition: color var(--transition-normal);
}

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

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    margin-top: 10px;
}


.menu-overlay {
    display: none;
}


.nav-footer {
    display: none;
}

#page-content-wrapper {
    width: 100%;
    display: block; 
}


.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}


.hero p {
    max-width: 600px;
    margin: 0 auto 26px;
}

.btn {
    background: var(--color-primary);
    color: var(--color-light);
    padding: 10px 25px;
    border-radius: var(--radius-pill);
    transition: var(--transition-normal);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    white-space: nowrap;
}

.btn:hover {
    background: #005fcc;
}



.login-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: var(--z-overlay);
}

.login-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-light);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-modal);
    padding: 30px;
    max-width: 360px;
    width: 80%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
   
}

.login-popup h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.login-popup .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    color: #777;
    color: var(--color-text-muted);
}

.login-popup .close:hover {
    color: var( --color-primary);
}

.login-popup input {
    width: 100%;
    display: block;
    margin: 10px 0;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    font-size: 1rem;
}

.login-popup button {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-light);
    border: none;
    padding: 12px 0;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color var(--transition-normal);
}

.login-popup button:hover {
    background-color: #005fcc;
}

.social-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin: 30px 0 12px 0;
}

.social-icons-modal {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #888;
    border-radius: var(--radius-circle);
    color: var(--color-light);
    font-size: 18px;
    text-decoration: none;
    transition: background-color var(--transition-normal);
}

.social-icon:hover {
    background-color: var(--color-primary);
}

.register-link {
    font-size: 0.9rem;
    color: #777;
}

.register-link a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
    color: var(--color-text-muted);
}

.register-link a:hover {
    color: var(--color-secondary);
}

.remember-me-container {
    display: flex;
    align-items: center;
    margin: 12px 0;
    margin-left:3px;
}

.remember-me-container input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

.remember-me-container label {
    cursor: pointer;
}


.todays-specials {
    width: 100%;
    margin: 60px 0;
    text-align: center;
 
    overflow: visible; 
}

.todays-specials h2 {
    font-size: 2.2rem;
    margin-bottom: 4px;
    display: block;
    width: 100%;
    color: #333;
}


.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-container {
    width: 85%;
    max-width: 1150px;
    margin: 0 auto;
    
    overflow-x: hidden; 
    position: relative;
    padding-top: 50px;
    padding-bottom: 30px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 10px;
    transition: transform 0.5s ease; 
    overflow: visible;
    visibility: hidden;
    opacity: 0;
}

.carousel-card {
    position: relative;
    text-align: left;
   
    flex: 0 0 300px; 
   
   
    max-width: calc(100vw - 60px); 
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 12px;
    box-sizing: border-box;
}


.carousel-card:hover {
    z-index: 999; 
}



.carousel-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute; 
    top: -10px; 
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: var(--z-navbar);
    box-shadow: var(--shadow-xl);
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    width: 260px;
    transition: all 0.3s ease;
}


.carousel-tooltip b {
    display: block; 
    color: var(--color-primary);
    margin-bottom: 8px;
   
    font-size: 0.9rem;
    letter-spacing: 1px;
}


.carousel-tooltip p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    font-weight: normal;
    margin: 0;
}

.carousel-card:hover .carousel-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.carousel-tooltip::after {
    content: "";
    position: absolute;
    top: 100%; 
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px; 
    border-style: solid;
    border-color: white transparent transparent transparent; 
}



.carousel-dots {
    display: flex;
    justify-content: center; 
    gap: 12px;
    margin-top: 5px; 
}

.dot {
    width: 10px; 
    height: 10px;
    background-color: #ddd;
    border-radius: var(--radius-circle);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color:var(--color-primary);
    transform: scale(1.2);
}



.modal.active {
    visibility: visible;
    opacity: 1;
}



.modal {
    position: fixed;
    z-index: var(--z-navbar); 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;   
    align-items: center;       
    visibility: hidden; 
    opacity: 0;
    transition: opacity 0.2s ease; 
}

.modal-content {
    background-color: #fff;
    padding: 25px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 450px;
    position: relative;
    text-align: center;
    margin: 0; 
    transform: none; 
    
  
}


.modal.show {
    visibility: visible;
    opacity: 1;
}
@keyframes tooltipShow {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.order-btn.success {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    animation: successPulse 0.5s ease;
}

.modal-content h2 {
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;

    padding: 0 5%; 
  
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 1.6rem;
    font-weight: 600;
}

.modal-content img {
    width: 80%;
    max-height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
}

.modal-content p {
    text-align: center;
    
    padding: 0 10px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.modal .close {
    position: absolute;
    top: 10px;    
    right: 15px;  
    color: var(--color-text-main);
    font-size: 24px; 
    line-height: 1;  
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    z-index: 1002; 
}

.modal .close:hover {
    color: var( --color-primary);
}

.item {
    position: relative;
    overflow: hidden;
}

.items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 30px 20px;
    gap: 30px;
}

.items > h2 {
    text-align: center;
    grid-column: 1 / -1;
    font-size: 2.5rem;
    margin: 30px 0 40px 0;
    width: 100%;
}

.item {
    text-align: center;
}

.item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform; 
    transform: translateZ(0); 
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent; 
}

.item img:hover {

    transform: scale(1.03) translateZ(0);
    
}
.item h4 {
    margin-top: 10px;
    font-size: 1.2em;
    color: var(--color-text-main);
}

.info-btn {
    position: absolute;
    bottom: 55px; 
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-circle);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}


.info-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}



.item {
    position: relative; 
    padding-top: 50px;  
}


.fab-wrapper {
    position: absolute;
    top: 10px;    
    left: 10px;   
    z-index: var(--z-fab); 
}

/* Το κουμπί (FAB) */
.modal-fab {
    background: #3498db;
    color: white;
    border: none;
    width: 45px;  
    height: 45px;
    border-radius: var(--radius-circle);
    box-shadow: var(--shadow-neon);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.order-panel {
    position: absolute;
    top: 55px;   
    left: 0;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 15px;
    width: 200px;
    display: none;
    z-index: 100;
    transform-origin: top left;
}

.order-panel.active {
    display: block;
    animation: tooltipShow 0.3s ease-out;
}


.panel-title {
    font-size: 0.8rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    color: #555;
}

.qty-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f4f7f9;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.qty-btn {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.add-to-cart-confirm {
    width: 100%;
    background: #2ecc71;
    color: white;
    border: none;
    padding: 10px;
    border-radius: var(--radius-md);
    font-weight: bold;
    cursor: pointer;
}

/* Animation */
@keyframes tooltipShow {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.reveal {
    opacity: 0;
    will-change: transform, opacity;
}


.testimonial-card.reveal {
    transform: translateY(50px) rotateX(-15deg) scale(0.9);
    transform-origin: top; 
    transition: 
        opacity 0.9s ease-out, 
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}


.testimonial-card.reveal.active {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
}


.item.reveal, .gallery .box.reveal {
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.item.reveal.active, .gallery .box.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* --- Testimonials --- */
.testimonials-section {
    background-color: var(--color-light);
    padding: 15px;
    margin: 60px auto;
    max-width: 1300px;
    width: 90%;
    padding: 15px 20px;
}

.testimonials-section h2 {
    font-size: 2rem;
    text-align: center;
    width: 100%;
    margin: 0 auto 50px;
    display: block;
}

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

.testimonial-card {
    background: var(--color-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-circle);
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--color-primary);
}

.client-details h4 {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin: 0;
}

.client-details span {
    display: block;
    font-size: 0.9rem;
    color: #777;
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-secondary);
    margin: 0 0 15px 0;
    line-height: 1.6;
    flex-grow: 1;
    text-align: justify;
}

.rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid #eee;
    align-self: flex-start;
}


.gallery h2 {
    font-size: 2rem;
    text-align: center;
    margin: 26px 0 0;
    transform: translateY(15px);
}



.gallery .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 60px 5%;
    margin-top: 15px;
  
    width: 100%;
    box-sizing: border-box; 
}


.gallery .gallery-container .box {
    aspect-ratio: 4 / 3;
    width: 100%; 
    height: auto;
    position: relative;
    overflow: hidden;
}

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

.gallery .gallery-container .box .icon {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.gallery .gallery-container .box .icon i {
    color: var(--color-light);
    font-size: 5rem;
}

.gallery .gallery-container .box:hover .icon {
    display: flex;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 20px auto 20px auto;
}


.row .content {
    flex: 1  400px;
    margin-top: 12px;
}

.row .image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.row .image img {
    margin-top: 30px;
    max-width: 100%;
    border-radius: 10px;
    height: auto;
    max-height: 350px;
    object-fit: cover;
}


.row .content h2 {
    font-size: 2rem;
    margin:2px;
}

.row .content p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    margin-top: 8px;     
}


.footer {
    background-color: #000;
    color: var(--color-light);
    margin-top: 40px;
    padding: 3px 0px;
    font-family: var(--font-stack);
    font-size: 14px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    padding: 35px 30px 30px 30px;
    text-align: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-col h3 {
    margin-bottom: 7px;
    font-size: 14px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons a {
    color: #ccc;
    font-size: 16px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--color-primary);
}

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

.footer-col ul li {
    margin-bottom: 2px;
    text-align: center;
}


.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 13px;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.footer-right p {
    margin: 3px 0;
    font-size: 13px;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    margin-top: 15px;
    padding: 15px 0;
    border-top: 1px solid #222;
    font-size: 12px;
    color: #aaa;
}



.services-section {
  padding: 80px 20px 40px 20px;
}

.services-container {
    max-width: 1100px; 
    width: 100%;
    margin: 0 auto; 
}

.section-heading {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 2.2rem;
}


.services-grid {
    display: grid;
  
    grid-template-columns: repeat(3, 1fr); 
    gap:30px;
}


.service-card {
    background-color: var(--card-bg);
    padding: 40px 20px;
     border-radius: var(--radius-lg);
    text-align: center; 
    
  
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
    
    
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


.icon-style {
    color: var(--color-primary); 
    font-size: 3rem; 
    margin-bottom: 20px;
}


.card-title {
    font-size: 1.5rem;
    color: #222;
    margin-top: 15px;
}

.card-description {
    margin-top:12px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}


.service-card i{
    color: #0078ff;
    font-size:2rem;
   
}


.form-section-clean {
  
    min-height: auto; 
 
    display: flex;
    flex-direction: column;   
    justify-content: center; 
    align-items: center;    
    
    padding: 50px 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden; 
}


.contact-form-container.form-center {
    width: 100%;
    max-width: 500px;
    
    position: relative;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    display: block;
}


.form-image-side {
    display: none ;
    position: absolute; 
}

.contact-card.form-card-style {
    padding: 30px; 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.main-contact-form input {
     background-color: var(--color-light);
    width: 100%;
    border: none; 
    border-bottom: 3px solid #e0e0e0; 
    padding: 20px 0 10px 0; 
    margin-bottom: 30px; 
    font-size: 1.1rem;
    box-sizing: border-box;
    outline: none;
    transition: border-bottom-color 0.3s, box-shadow 0.3s; 
}


.main-contact-form input:focus {
    border-bottom-color: var(--color-primary); 
    box-shadow: 0 1px 0 0 var(--color-primary); 
}

 
    .contact-form-container.form-center {
 
        position: static ;
        transform: none ;
        top: auto ;
        left: auto;
        
     
        margin-left: auto ;
        margin-right: auto;
        
    
        max-width: 450px;
        flex-basis: auto;
    }


  .contact-card.form-card-style h3{
         color:var(--color-primary);
        font-size:2rem;
}


.send-btn-green {
    width: 100%; 
    display: block;
    margin: 25px auto 0 auto; 
    text-align: center;
    background-color:var(--color-primary );
    padding: 14px 20px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.send-btn-green:hover {
   background: #005fcc;
}



.menu-section {
    padding: 60px 20px;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 25px;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--color-primary);
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item {
    background: white;
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    transition: transform 0.3s;
}

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

.menu-item-info h3 {
    font-size: 1.2rem;
    color: var(--color-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.menu-item-info p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
    line-height: 1.4;
}


#searchResultsPage {
    background-color: var(--color-light); 
}


.pizzas-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px 0;
}


.pizza-result-card {
    background: #ffffff; 
    padding: 30px;
    position: relative; 
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03); 
}

.pizza-result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


.pizza-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px; 
    height: 100%;
    background: var(--color-primary); 
}


.pizza-result-card img {
    width: 100%;
    height: 220px;
    object-fit: contain; 
    margin-bottom: 20px;
    filter: drop-shadow(0 12px 15px rgba(0,0,0,0.15)); 
    transition: transform 0.4s ease;
}

.pizza-result-card:hover img {
    transform: scale(1.05) rotate(2deg);
}


.pizza-result-card h3 {
    font-size: 1.6rem;
    color: var(--color-dark);
    margin-bottom: 12px;
    text-align: left;
    font-weight: 700;
}


.pizza-result-card p {
    font-size: 1rem;    color: var(--color-text-secondary);
    line-height: 1.6;
    text-align: left;
    margin-bottom: 25px;
    flex-grow: 1; 
}


.recipe-trigger-btn {
    align-self: flex-start; 
    background: var(--color-primary);
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-family: var(--font-stack);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recipe-trigger-btn:hover {
    background: #005fcc; 
    box-shadow: 0 5px 15px rgba(0, 120, 255, 0.3);
    transform: translateX(5px); 
}


.main-landing {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?q=80&w=2000') no-repeat center center/cover;
    position: relative;
}

.landing-overlay {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.landing-content {
   
    max-width: 500px;
    line-height: 1.3;
    color: white;
}

.landing-content h1 {
    font-size: 3.5rem;
    white-space: nowrap;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: bold;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    margin-top:15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
}


.events-section {
    padding: 80px 5%; 
    background-color: #f4f7f6;
}

.container-flex {
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    gap: 0; 
    position: relative;
}


.info-modal-card {
    flex: 0 0 400px; 
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    z-index: 2; 
    margin-right: -50px; 
    opacity: 0;
    transform: translateY(100px); 
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.info-modal-card.active {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 25px;
    border-left: 5px solid #007bff;
    padding-left: 15px;
}

.event-entry { margin-bottom: 20px; }
.event-entry strong { color: #007bff; display: block; font-size: 1.1rem; }
.event-entry p { color: #666; font-size: 0.95rem; margin-top: 5px; }


.event-visual {
    flex: 1; 
    max-width: 70%; 
}

.event-visual img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

.event-spaces-section {
    padding: 100px 8%;
    background-color: #fff;
    text-align: center;
}

.spaces-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #222;
    font-weight: 800;
}

.spaces-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


.space-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    
  
    opacity: 0;
    transform: translateY(-100px); 
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.space-item.active {
    opacity: 1;
    transform: translateY(0);
}


.space-item:nth-child(2) { transition-delay: 0.2s; }
.space-item:nth-child(3) { transition-delay: 0.4s; }

.space-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.space-desc {
    text-align: left; 
    padding: 25px 5px;
}

.space-desc h3 {
    font-size: 1.6rem;
    color: #007bff; 
    margin: 0 0 12px 0;
}

.space-desc p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 1085px) {
    .items {
       
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        padding: 20px 10px;
    }

  
    .form-section-clean {
        background-color: #ffffff;
        

        padding: 60px 20px; 
  
        min-height: auto; 
        
    }
}

@media (max-width: 1024px) {
    .container-flex { 
        flex-direction: column-reverse; 
        padding: 0 20px;
    }
    .info-modal-card {
        margin-right: 0;
        margin-top: -60px; 
        width: 90%;
        flex: none;
    }
    .event-visual { max-width: 100%; }
}

@media (max-width: 900px) {
    .spaces-grid {
        flex-direction: column;
        align-items: center;
    }
    .space-item {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
   .menu-icon {
        display: block;
        z-index: 1005;
        cursor: pointer;
        
     
        margin-top: 15px; 
        
      
    }
    .menu-overlay {
        display: block; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease-in-out, visibility 0.5s;
    }

    #menu-toggle:checked ~ .menu-overlay {
        opacity: 1;
        visibility: visible;
    }

   .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
   
    height: 100dvh; 
    width: 75%;
    max-width: 300px;
    background: var(--color-light);
    z-index: 1000;
    transition: right 0.5s ease-in-out; 
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; 
    
    
    padding: 60px 20px 80px 30px; 
    margin: 0;
    
    overflow-y: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    -webkit-overflow-scrolling: touch; 
}

.nav-links::-webkit-scrollbar {
    display: none;
}
    #menu-toggle:checked ~ .nav-links {
        right: 0;
    }

  
    .nav-links a {
        display: block;
        width: 100%;
        font-size: 20px;
        text-align: left;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        text-decoration: none;
        color: #333;
    }



.nav-links .nav-footer {
    display: flex;
    flex-direction: column;

    margin-top: -10px; 
    padding-top: 15px; 
    padding-left: 0;
    padding-right: 0;
}


.nav-links .nav-footer .social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px; 
}

.nav-links .nav-footer .social-row a {
    width: auto;
    display: inline-flex;
    padding: 0;
    margin: 0;
    line-height: 1;
    font-size: 1.6rem;
    color: #333;
}


.nav-links .nav-footer .order-btn {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    min-width: 190px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    border: none;
    margin-bottom: 30px;
    transition: transform 0.2s ease;
}


.nav-links .nav-footer .contact-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links .nav-footer .contact-box p, 
.nav-links .nav-footer .contact-box a {
    font-size: 0.95rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin: 0;
    font-weight: 500;
}

.nav-links .nav-footer .contact-box i {
    font-size: 1.1rem;
    color: #555;
}


    .container {
        max-width: 100%; 
        width: 100%;
        margin: 0 auto;
        padding: 0 1rem; 
        box-sizing: border-box; 
    }
  

    .row .image, 
    .row .content {
        flex: 1 1 100%; 
        max-width: 100%;
        text-align: center; 
    }

.row .image img {
    
    width: 97%;
    max-width: 97%;
    
   
    display: block;
    margin: 10px auto;

    
    aspect-ratio: 16 / 5; 

    
    border-radius: 4px; 
}
 

    .row {
        flex-direction: column; 
        align-items: center; 
        gap: 5px;          
        margin: 10px 0;    
        height: auto; 
    }

    .row .content h2 {
        margin-top: 0; 
        margin-left: 0;
        text-align: center; 
        font-size: 2rem;
    }
    
    .row .content p {
        margin-top: 8px;   
        margin-bottom: 30px; 
        text-align: justify; 
        line-height: 1.6;
    }
    
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-section h2 {
        font-size: 2rem;
    }

   
    .footer {
        margin-top: 1.2rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px 10px 10px 10px;
    }

    #links { order: 1; }
    #follow-us { order: 2; }
    #info { order: 3; }
    #contact { order: 4; }

    .row .image img {
        max-height: 250px; 
    }
    
    .navbar {
        padding: 10px 15px;
    }

    .logo {
        margin-left: 10px;
    }

    .modal-arrow {
        font-size: 2.5rem;
    }

    .modal-content {
        width:90%;
        max-width: calc(100% - 40px);
        padding: 20px 15px;
        
    }

    .modal-content img {
        width: 100%;
        max-height: 250px;
    }

    .modal-content p {
        padding: 0;
        text-align: left;
    }


    .row .image img {
        max-height: 250px; 
    }


    .modal-content {
        position: relative;
        padding-top: 35px; 
        padding-bottom: 20px;
    }

    #recipeClose, .close-btn {
        position: absolute;
        top: 8px;   
        right: 12px; 
        font-size: 26px;
        z-index: 1010;
        line-height: 1;
        cursor: pointer;
        color: #333;
    }


 .modal-content h2 {
     
        margin-top: -10px ; 
        margin-bottom: 18px;
        padding: 0 30px; 
        min-height: 2.5rem; 
        
        font-size: 1.55rem; 
        line-height: 1.1;
        font-weight: 700;
        
   
        text-wrap: balance; 
        word-break: normal;
        overflow-wrap: break-word;
        white-space: normal;
        
        display: block;
        text-align: center;
        width: 100%;
        color: var(--color-primary);
    }

    
    #recipeClose, .close-btn {
        top: 5px;
        right: 10px;
        font-size: 24px; 
    }
 
    section.menu-section.container .menu-tabs {
        margin-top: 50px; 
        margin-bottom: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .search-trigger {
        margin-left: 0;
        margin-right: 0;
        margin-top: 40px; 
        margin-bottom: 5px; 
        align-self: flex-start;
    }

}


@media (max-width: 630px) {
    .item img {
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }


    .services-grid {
        grid-template-columns: 1fr; 
        padding: 0 20px; 
    }

    .service-card {
        height: auto; 
        min-height: 250px; 
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 1.4rem; 
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .gallery h1 {
        font-size: 3rem;
        padding: 0 15px;
    }


    .row {
        flex-direction: column; 
        text-align: center;
        gap: 15px; 
    }
    
    .row .image, .row .content {
        flex: 1 1 100%; 
        max-width: 100%;
        margin: 0 auto;
    }

    .items {
        grid-template-columns: 1fr; 
        padding: 20px 15px; 
        gap: 25px;
    }

    .item img {
        height: auto;
        aspect-ratio: 4 / 3;
    }
  
    
    .container {
        padding: 5px 10px; 
    }

    .row {
        margin: 0;
        gap: 10px;
    }


    .footer-container {
        padding: 20px 5px 8px 5px;
    }

    .items {
        padding: 20px 15px;
    }

    .gallery .gallery-container {
        padding: 30px 15px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-card.form-card-style h3 {
        font-size: 1rem ;
        margin-bottom: 15px;
    }

    .main-contact-form input {
        font-size: 0.95rem; 
        padding: 12px 5px 8px 5px; 
        margin-bottom: 20px; 
    }

    .contact-card.form-card-style {
        margin-left: 20px;
        margin-right: 20px;
        padding: 15px 15px 20px 15px;
    }

    .main-contact-form input::placeholder {
        font-size: 0.9rem;
    }

 
    .main-contact-form input,
    .form-group input, 
    .form-group textarea {
        width: 100%; 
        padding: 12px 8px;      
        font-size: 16px;        
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    
    .contact-card.form-card-style h3 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 25px;
    }

    .send-btn-green {
        width: 100%;          
        padding: 14px;
        margin-top: 10px;
    }

    .menu-grid {

        grid-template-columns: 1fr;

    }

}




