/* ==========================================================================
   CONFIGURABLE VARIABLES
   ========================================================================== */
:root {
    --primary-color: #E33E2B;    
    --bg-color: #F9F9F9;         
    --text-color: #1A1A1A;       
    --card-bg: #FFFFFF;          
    --border-style: 1px solid var(--primary-color); 
    --font-main: 'Space Grotesk', sans-serif;
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.4;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- HEADER & NAVIGATION --- */
header {
    border-bottom: var(--border-style);
    position: sticky;
    top: 0;
    background-color: var(--bg-color);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--primary-color);
}
/* ==========================================================================
   HEADER IMAGE LOGO STYLES (BRKLYN ROAST)
   ========================================================================== */
/*.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.logo-img {
  height: 40px; 
  width: auto;  
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.03);
}/*

/* Responsive για κινητά */
/*@media (max-width: 768px) {
  .logo-img {
    height: 32px;
  }
}*/

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

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

.burger-toggle {
    display: none;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.burger-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-color);
    margin-bottom: 6px;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-toggle span:last-child {
    margin-bottom: 0;
}

.burger-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 900px) {
    .nav-container {
        position: relative;
    }

    .burger-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        right: 40px;
        top: 70px;
        background: var(--bg-color);
        border: var(--border-style);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.35s ease;
        width: calc(100% - 80px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .nav-links.active {
        max-height: 280px;
    }

    .nav-links a {
        padding: 18px 30px;
        border-bottom: var(--border-style);
        width: 100%;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

/* --- HERO SECTION --- */
.hero {
    padding: 60px 0;
    border-bottom: var(--border-style);
}

.hero-title {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 700;
    line-height: 0.85;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: -4px;
    margin-bottom: 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
}

.hero-description {
    font-size: 20px;
    max-width: 500px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-image-wrapper img {
    border-radius: 24px;
    height: 450px;
}

/* --- SECTION GENERIC HEADERS --- */
.section-title {
    font-size: 14px;
    text-transform: uppercase;
    padding: 20px 0;
    border-bottom: var(--border-style);
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================================================
   NEW: ABOUT US SECTION STYLES
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: var(--border-style);
}

.about-text {
    padding: 60px 60px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.about-text h2 {
    font-size: 48px;
    text-transform: uppercase;
    color: var(--primary-color);
    line-height: 1;
}

.about-text p {
    font-size: 16px;
    color: rgba(26, 26, 26, 0.8);
}

.about-image {
    border-left: var(--border-style);
    padding: 40px;
}

.about-image img {
    border-radius: 24px;
    height: 450px;
}

/* ==========================================================================
   NEW: THE CULTURE & ORIGIN SECTION STYLES
   ========================================================================== */
.culture-section {
    border-bottom: var(--border-style);
    padding-top: 60px;
}

.culture-top-text h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--primary-color);
    max-width: 900px;
    margin-bottom: 40px;
}

.culture-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.culture-block h4 {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.culture-block p {
    font-size: 16px;
    color: rgba(26, 26, 26, 0.8);
}

.culture-full-image {
    padding-bottom: 60px;
}

.culture-full-image img {
    border-radius: 24px;
    height: 500px;
}

/* --- MENU HIGHLIGHTS SECTION --- */
.menu-section {
    padding-bottom: 60px;
    border-bottom: var(--border-style);
}

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

.menu-card {
    background: var(--card-bg);
    border: var(--border-style);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.card-img-wrapper {
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.menu-card img {
    border-radius: 12px;
}


.menu-card h4 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.menu-card p {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

/* --- CONTACT FORM & INFO --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: var(--border-style);
}

.contact-info {
    padding: 60px 40px 60px 0;
    border-right: var(--border-style);
}

.contact-info h3 {
    font-size: 48px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 20px;
}

.info-block h5 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.contact-form-container {
    padding: 60px 0 60px 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: var(--border-style);
    padding: 15px 5px;
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text-color);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus, .form-group textarea:focus {
    border-bottom: 2px solid var(--primary-color);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(26, 26, 26, 0.4);
    text-transform: uppercase;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-family: var(--font-main);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    align-self: flex-start;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn:active {
    transform: scale(0.98);
}

/* ==========================================================================
   NEW: MEGA FOOTER STYLES
   ========================================================================== */
footer {
    padding: 60px 0 30px 0;
    background-color: var(--bg-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: var(--border-style);
}

.footer-logo {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(26, 26, 26, 0.7);
    max-width: 400px;
}

footer h5 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(26, 26, 26, 0.5);
}
/* ==========================================================================
   FOOTER IMAGE LOGO STYLES (BRKLYN ROAST) gia otan xreiastei logo image
   ========================================================================== */
/*.footer-logo {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.footer-logo-img {
  height: 42px; 
  width: auto;  
  display: block;
  transition: opacity 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  opacity: 0.85;
}*/

/* Responsive για κινητά */
/*@media (max-width: 768px) {
  .footer-logo-img {
    height: 34px;
  }
}

/* --- RESPONSIVE DESIGN (MEDIA QUERIES) --- */
@media (max-width: 968px) {
    .hero-grid, .about-grid, .culture-split-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        border-left: none;
        border-top: var(--border-style);
        padding: 40px 0;
    }
    .about-text {
        padding: 40px 0;
    }
    .contact-info {
        border-right: none;
        border-bottom: var(--border-style);
    }
    .contact-form-container {
        padding: 40px 0;
    }
    .footer-grid {
        gap: 30px;
    }
    .container {
        padding: 0 20px;
    }
}