/* ═══════════════════════════════════════════════════════════════
   stores.css — Butcher's Burger & Steak House
   Σελίδα-specific styles — HTML & CSS από τον πελάτη
   DynaWasp © 2026
═══════════════════════════════════════════════════════════════ */

.stores-page{
    background:var(--color-primary);
    color:var(--color-white);
}

.stores-hero{
	position:relative;
    min-height:620px;
    background:var(--color-white);
    color:var(--color-secondary);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px var(--container-pad) 70px;
    overflow:hidden;
}

.stores-hero-arrow {
    position:absolute;
    height:auto;
    top:66%;
    pointer-events:none;
}

.stores-hero-arrow--left {
    left:23%;
}

.stores-hero-arrow--right {
    right:23%;
}

.stores-hero h1 {
    margin:0;
    font-family:var(--font-display);
    font-size:clamp(64px,6.6vw,118px);
    line-height:.9;
    font-weight:400;
    color:var(--color-secondary);
}

.stores-note{
    margin:55px 0 0;
    font-family:var(--font-mono);
    font-size:clamp(18px,1.45vw,24px);
    line-height:1.2;
    font-weight:400;
    color:var(--color-secondary);
}

.stores-map-section{
    position:relative;
    background:var(--color-primary);
}

.stores-grid{
    width:100%;
    max-width:var(--container-max);
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(5,1fr);

    gap:0;
}

.store-item {
    position:relative;
    min-height:clamp(260px,28vw,390px);
    display:flex;
    align-items: center;
    justify-content:center;
    overflow:hidden;
    font-family:var(--font-mono);
    font-weight:700;
    font-size:clamp(24px,2.5vw,42px);
    line-height:1;
    color:var(--color-white);
    text-decoration:none;
    text-align:center;
    background:var(--color-primary);
    transition:background 220ms ease;
}

.store-name{
    transition:opacity 180ms ease;
    z-index:2;
}

.store-hover{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    padding:clamp(22px,2vw,34px);

    background:var(--color-secondary);
    color:var(--color-white);

    opacity:0;
    transition:opacity 180ms ease;

    text-align:left;
}

.store-address,
.store-phone,
.store-hours{
    font-family:var(--font-mono);
    font-size:clamp(17px,1.5vw,26px);
    line-height:1.15;
    font-weight:400;
}

.store-hours{
    margin-top:auto;
}

.store-item:hover .store-hover{
    opacity:1;
}

.store-item:hover .store-name{
    opacity:0;
}

.stores-menu-cta{
    background:var(--color-white);
    color:var(--color-secondary);
    padding:clamp(70px,8vw,120px) var(--container-pad) clamp(80px,9vw,130px);
    text-align:center;
}

.stores-menu-cta__burger{
    display:block;
    width:clamp(90px,9vw,145px);
    height:auto;
    margin:0 auto clamp(42px,5vw,70px);
}

.stores-menu-cta__link{
    display:inline-block;
    font-family:var(--font-display);
    font-size:clamp(54px,7vw,118px);
    line-height:1;
    font-weight:400;
    color:var(--color-secondary);
    text-decoration:none;
}

.stores-menu-cta__link:hover{
    background-color: var(--color-primary);
}

@media(max-width:1024px){
    .stores-grid{
        grid-template-columns:repeat(3,1fr);
        grid-template-rows:auto;
    }
	
	.stores-hero-arrow--left {
		left: 13%;
	}
	
	.stores-hero-arrow--right {
		right: 13%;
	}
}

@media(max-width:768px){
	.stores-hero-arrow {
		top: 80%;
		width: 26px;
	}
	
	
    .stores-grid{
        grid-template-columns:1fr 1fr;
    }

    .store-hover{
        width: 100%;
    }
}

@media(max-width:520px){
    .stores-grid{
        grid-template-columns:1fr;
    }
}
