/* ============================================================
   KRUM Halva — Global Stylesheet
   Structure:
   1. Global / Reset
   2. Navigation & Mega Menu  (shared across all pages)
   3. Αρχική                  (home.html)
   4. Τα Προϊόντα Μας         (products.html + product pages)
   5. Συνταγές                (recipes.html)
   6. Η Εταιρεία              (ourcompany.html)
   7. Επικοινωνία             (contact.html)
   8. Footer                  (shared across all pages)
   ============================================================ */


/* ── 1. GLOBAL / RESET ── */

::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}

body {
    margin: 0;
    background-color: #e1d9cc;
    font-family: sans-serif;
}

input {
    display: none;
}


/* ── 2. NAVIGATION & MEGA MENU ── */

.navigationgroup {
    display: flex;
    width: 100%;
    background-color: #d9cfba;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    box-sizing: border-box;
    position: relative;
    z-index: 1000;
    overflow: visible;
}

#logo {
    max-width: 130px;
}

.navlinks {
    display: flex;
    gap: 30px;
}

a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.dropdown {
    position: static;
    display: inline-block;
}

.dropbtn { cursor: pointer; }

.mega-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dropdown:hover .mega-menu {
    visibility: visible;
    opacity: 1;
}

.mega-menu-inner {
    display: flex;
    min-height: 320px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 50px;
    gap: 0;
}

/* Left column */
.mega-left {
    min-width: 240px;
    flex-shrink: 0;
    padding-right: 40px;
    border-right: 1px solid #e0e0e0;
}

.mega-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #222;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.see-all {
    display: inline-block;
    color: black;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-decoration: none;
}
.see-all:hover { text-decoration: underline; }

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-link {
    display: block;
    padding: 10px 14px;
    color: #333;
    font-weight: normal;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: default;
    transition: background 0.15s, color 0.15s;
}

.category-list li:hover .category-link {
    background-color: #f0f0f0;
    color: #000000;
    font-weight: bold;
}

/* Right area */
.mega-right {
    flex: 1;
    position: relative;
}

/* All panels hidden by default */
.product-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: absolute;
    top: 0;
    left: 50px;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.15s ease, visibility 0.15s ease;
}

/* Show panel-boxes by default when menu opens */
.dropdown:hover .panel-boxes {
    visibility: visible;
    opacity: 1;
}

/* Panel switching logic */
.mega-menu-inner:has(#cat-bowls:hover, .panel-bowls:hover) .panel-boxes { visibility: hidden; opacity: 0; }
.mega-menu-inner:has(#cat-bowls:hover, .panel-bowls:hover) .panel-bowls { visibility: visible; opacity: 1; }

.mega-menu-inner:has(#cat-otg:hover, .panel-otg:hover) .panel-boxes { visibility: hidden; opacity: 0; }
.mega-menu-inner:has(#cat-otg:hover, .panel-otg:hover) .panel-otg { visibility: visible; opacity: 1; }

.mega-menu-inner:has(#cat-otg:hover, .panel-otg:hover) .panel-bowls { visibility: hidden; opacity: 0; }
.mega-menu-inner:has(#cat-bowls:hover, .panel-bowls:hover) .panel-otg { visibility: hidden; opacity: 0; }

/* Mega menu product cards */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: white;
    text-decoration: none;
    color: #333;
    font-weight: normal;
    font-size: 0.88rem;
    text-align: center;
    gap: 10px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.product-img-wrap {
    width: 120px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.product-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* ── 3. ΑΡΧΙΚΗ (home.html) ── */

/* Carousel */
.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: -140px;
}

.slides {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#s1:checked ~ .slides { transform: translateX(0%); }
#s2:checked ~ .slides { transform: translateX(-33.33%); }
#s3:checked ~ .slides { transform: translateX(-66.66%); }

.arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    padding: 20px;
    cursor: pointer;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

#s1:checked ~ .nav-arrows .arrow-s1,
#s2:checked ~ .nav-arrows .arrow-s2,
#s3:checked ~ .nav-arrows .arrow-s3 {
    display: block;
}

.arrow:hover { background: rgba(0,0,0,0.6); }

#otg_centerscr {
    align-self: center;
    max-width: 350px;
}

/* Flip cards */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 50px 20px;
    flex-wrap: wrap;
    background-color: #e1d9cc;
}

.card {
    background-color: transparent;
    width: 350px;
    height: 400px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.card-front {
    background-color: #fff;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-back {
    background-color: #d9cfba;
    color: #4a4a4a;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    font-size: 1.1rem;
    line-height: 1.5;
}

.capsule {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(166, 152, 128, 0.9);
    color: white;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: bold;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Products banner & CTA */
#GoToProductsBanner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.button-container {
    text-align: center;
    padding: 20px 0 50px 0;
    margin-top: -130px;
    margin-left: 435px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #635a46;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s;
}

.cta-button:hover {
    background-color: #4a4235;
    transform: scale(1.05);
}


/* ── 4. ΤΑ ΠΡΟΪΟΝΤΑ ΜΑΣ (products.html + product pages) ── */

/* Product catalogue page */
.product-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    color: #635a46;
    margin-bottom: 30px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 { color: #4a4a4a; margin: 10px 0; }

/* Individual product page */
.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.nutrition-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    color: #444;
}

.nutrition-table tr:nth-child(even) {
    background-color: #f9f9f9;
}


/* ── 5. ΣΥΝΤΑΓΕΣ (recipes.html) ── */

.recipes-hero {
    background-color: #2e2a22;
    padding: 90px 60px 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.recipes-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(99,90,70,0.35) 0%, transparent 65%),
                radial-gradient(ellipse at 20% 80%, rgba(99,90,70,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.recipes-hero .label {
    display: inline-block;
    background-color: #635a46;
    color: #e1d9cc;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.recipes-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    font-weight: 900;
    color: #e1d9cc;
    margin: 0 0 16px 0;
    line-height: 1.15;
    position: relative;
}

.recipes-hero h1 em {
    font-style: italic;
    color: #c5b89a;
}

.recipes-hero p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #b5aa97;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

.filter-bar {
    background-color: #d9cfba;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 22px 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 9px 24px;
    border-radius: 30px;
    border: 2px solid #635a46;
    background: transparent;
    color: #635a46;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #635a46;
    color: white;
    transform: translateY(-2px);
}

.recipes-section {
    background-color: #e1d9cc;
    padding: 60px 50px 80px 50px;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.recipe-card.featured {
    grid-column: span 2;
}

.recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.recipe-img-wrap {
    position: relative;
    overflow: hidden;
}

.recipe-card:not(.featured) .recipe-img-wrap {
    height: 210px;
}

.recipe-card.featured .recipe-img-wrap {
    height: 300px;
}

.recipe-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-img-wrap img {
    transform: scale(1.05);
}

.recipe-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: rgba(99,90,70,0.9);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.recipe-badge.new {
    background-color: rgba(180, 100, 60, 0.92);
}

.recipe-info {
    padding: 24px 26px 28px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.recipe-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 12px;
}

.recipe-meta span {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    color: #9a8e7a;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}

.recipe-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2e2a22;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.recipe-card.featured .recipe-info h3 {
    font-size: 1.6rem;
}

.recipe-info p {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    color: #6a6255;
    line-height: 1.65;
    font-weight: 300;
    margin: 0 0 20px 0;
    flex: 1;
}

.recipe-product-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f0ece4;
    color: #635a46;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    align-self: flex-start;
    margin-top: auto;
}

/* Recipe modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 26, 20, 0.75);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 30px;
    backdrop-filter: blur(4px);
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: white;
    border-radius: 24px;
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.modal-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}

.modal-body {
    padding: 36px 40px 44px 40px;
}

.modal-body .recipe-meta {
    margin-bottom: 16px;
}

.modal-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2e2a22;
    margin: 0 0 14px 0;
}

.modal-body .intro {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #6a6255;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.modal-body h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #635a46;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 14px 0;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredients-list li {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #444;
    padding: 7px 0;
    border-bottom: 1px solid #f0ece4;
    display: flex;
    justify-content: space-between;
}

.ingredients-list li:last-child {
    border-bottom: none;
}

.ingredients-list li .qty {
    font-weight: 700;
    color: #635a46;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: steps;
}

.steps-list li {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    padding: 10px 0 10px 44px;
    border-bottom: 1px solid #f0ece4;
    position: relative;
    counter-increment: steps;
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 10px;
    width: 28px;
    height: 28px;
    background-color: #635a46;
    color: white;
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-list li:last-child {
    border-bottom: none;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.close-btn:hover {
    background: #e1d9cc;
}

.recipes-cta {
    background-color: #635a46;
    padding: 70px 60px;
    text-align: center;
}

.recipes-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #e1d9cc;
    margin: 0 0 12px 0;
}

.recipes-cta p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #c5b89a;
    font-weight: 300;
    margin: 0 0 30px 0;
}

.recipes-cta .cta-button {
    background-color: #e1d9cc;
    color: #2e2a22;
}

.recipes-cta .cta-button:hover {
    background-color: #f0ece4;
}


/* ── 6. Η ΕΤΑΙΡΕΙΑ (ourcompany.html) ── */

.company-hero {
    background-color: #d9cfba;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px 80px 60px;
    gap: 80px;
    flex-wrap: wrap;
}

.company-hero-text {
    max-width: 560px;
}

.company-hero-text .label {
    display: inline-block;
    background-color: #635a46;
    color: white;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.company-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: #2e2a22;
    margin: 0 0 20px 0;
    line-height: 1.15;
}

.company-hero-text p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #5a5244;
    line-height: 1.8;
    font-weight: 300;
}

.company-hero-img {
    width: 420px;
    height: 380px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    flex-shrink: 0;
}

/* Timeline */
.story-section {
    background-color: #e1d9cc;
    padding: 90px 60px;
    text-align: center;
}

.story-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #2e2a22;
    margin-bottom: 60px;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #c5b99a;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    padding: 0 10px;
    position: relative;
}

.timeline-dot {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #635a46;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(99,90,70,0.35);
    flex-shrink: 0;
}

.timeline-item h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #2e2a22;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-item p {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    color: #6a6255;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* Team */
.team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
}

.team-win {
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.team-win img {
    width: 100px;
    height: 100px;
    justify-content: center;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px;
}

/* Stats */
.stats-section {
    background-color: #635a46;
    padding: 70px 60px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #e1d9cc;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #c5b89a;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Partner/certificate banner */
.partner-banner {
    opacity: 50%;
    overflow: hidden;
    white-space: nowrap;
    padding: 15px;
}

.banner-track {
    display: inline-block;
}

.banner-track img {
    height: 200px;
    margin: 0 85px;
    vertical-align: middle;
}


/* ── 7. ΕΠΙΚΟΙΝΩΝΙΑ (contact.html) ── */

.contact-hero {
    background-color: #2e2a22;
    padding: 90px 60px 80px 60px;
    text-align: center;
}

.contact-hero .label {
    display: inline-block;
    background-color: #635a46;
    color: #e1d9cc;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: #e1d9cc;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.contact-hero p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #b5aa97;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Info strip */
.info-strip {
    background-color: #635a46;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 36px 50px;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: background 0.3s;
}

.info-card a {
    text-decoration: none;
    color: white;
}

.info-card:last-child { border-right: none; }

.info-card:hover { background-color: rgba(0,0,0,0.12); }

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #c5b89a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 4px 0;
}

.info-text p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #e1d9cc;
    margin: 0;
    font-weight: 400;
}

/* Contact body */
.contact-body {
    background-color: #e1d9cc;
    padding: 80px 60px;
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* Contact form */
.contact-form-wrap {
    background: white;
    border-radius: 24px;
    padding: 50px 45px;
    width: 500px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
    flex-shrink: 0;
}

.contact-form-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: #2e2a22;
    margin: 0 0 8px 0;
}

.contact-form-wrap .form-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #8a7f6e;
    margin: 0 0 35px 0;
    font-weight: 300;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #635a46;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

/* Override global input { display: none } which is used by the carousel */
.form-group input {
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #b8aa94;
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #333;
    background-color: #f0ece4;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #635a46;
    box-shadow: 0 0 0 3px rgba(99,90,70,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #635a46;
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #4a4235;
    transform: translateY(-2px);
}

/* Contact sidebar */
.contact-sidebar {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.sidebar-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #2e2a22;
    margin: 0 0 14px 0;
}

.sidebar-card p, .sidebar-card a {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #6a6255;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
    text-decoration: none;
}

.sidebar-card a:hover { color: #635a46; text-decoration: underline; }

.hours-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
}

.hours-grid .day {
    color: #6a6255;
    font-weight: 300;
}

.hours-grid .time {
    color: #2e2a22;
    font-weight: 700;
    text-align: right;
}

.hours-grid .closed {
    color: #b5aa97;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    background-color: #e1d9cc;
    color: #635a46;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
}

.social-btn:hover {
    background-color: #635a46;
    color: white;
    transform: translateY(-2px);
}

.contact-map-section {
    background-color: #d9cfba;
    padding: 0;
    overflow: hidden;
}

.contact-map-section iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
    filter: sepia(20%) contrast(0.95);
}

/* Success message */
.success-msg {
    display: none;
    text-align: center;
    padding: 30px;
    background: #f0ede8;
    border-radius: 12px;
    margin-top: 20px;
}

.success-msg .check {
    font-size: 3rem;
    margin-bottom: 10px;
}

.success-msg h3 {
    font-family: 'Playfair Display', serif;
    color: #2e2a22;
    margin: 0 0 8px 0;
}

.success-msg p {
    font-family: 'Lato', sans-serif;
    color: #6a6255;
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
}


/* ── 8. FOOTER (shared) ── */

footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 10px;
    padding-left: 10px;
    gap: 20px;
    flex-wrap: wrap;
    background-color: #d9cfba;
}

#logo-footer {
    display: flex;
    flex-direction: column;
}

footer img {
    max-width: 275px;
    height: auto;
    margin-left: 21px;
}

#footer-info {
    padding-left: 40px;
    margin-top: 25px;
}

#map {
    margin-top: 20px;
    width: 400px;
    height: 280px;
}

#map iframe {
    width: 95%;
    height: 95%;
    border: 0;
    border-radius: 12px;
}