@charset "UTF-8";
/*
 * Estrel Tower — Buttons
 * Primary (filled), Secondary (outline), Nav Pill, Booking CTA
 */

/* ============================
   BASE BUTTON
   ============================ */

.estrel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.75em 2em;
    font-family: var(--font-soehne);
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        background var(--hover-transition),
        color var(--hover-transition),
        border-color var(--hover-transition),
        opacity var(--hover-transition);
}


/* ============================
   PRIMARY BUTTON (Filled)
   e.g. "Tisch reservieren"
   ============================ */

.estrel-btn--primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border-color: var(--btn-primary-bg);
}

.estrel-btn--primary:hover {
    background: var(--color-butter-yellow);
    color: var(--color-deep-sea);
    border-color: var(--color-butter-yellow);
    text-decoration: none;
}


/* ============================
   SECONDARY BUTTON (Outline)
   e.g. "Mehr erfahren"
   ============================ */

.estrel-btn--secondary {
    background: transparent;
    color: var(--btn-secondary-text);
    border-color: var(--btn-secondary-border);
}

.estrel-btn--secondary:hover {
    background: var(--color-butter-yellow);
    color: var(--color-deep-sea);
    border-color: var(--color-butter-yellow);
    text-decoration: none;
}


/* ============================
   NAV PILL
   Rounded pill buttons in the navbar
   ============================ */

/* MENU Pill — exact Figma spec (Rectangle 175)
   Width 105 × Height 28, border-radius 41.5, fill+border #FED3CD */
.estrel-pill {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: 105px;
    height: 28px;
    padding: 0 14px 0 16px;
    box-sizing: border-box;
    border-radius: 41.5px;
    border: 1px solid #FED3CD;
    background: #FED3CD;
    color: #14172D;
    font-family: var(--font-alpina);
    font-style: italic;
    font-weight: 250;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    transition: opacity var(--hover-transition);
}

.estrel-pill:hover {
    opacity: 0.9;
    text-decoration: none;
}

/* Hamburger — 3 horizontal lines, MIDDLE LINE IS SHORTER (13px vs 16px) */
.estrel-hamburger {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 16px;
    height: 12px;
    flex: 0 0 auto;
}

.estrel-hamburger span {
    display: block;
    height: 1px;
    background: #14172D;
}

.estrel-hamburger span:nth-child(1) { width: 16px; }
.estrel-hamburger span:nth-child(2) { width: 13px; }
.estrel-hamburger span:nth-child(3) { width: 16px; }


/* ============================
   BOOKING BUTTON (Sticky right side, rotated)
   ============================ */

.estrel-booking-btn {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 1500;
    background: var(--color-watermelon);
    color: var(--color-deep-sea);
    border-radius: 25px 25px 0 0;
    padding: 0.6em 1.5em;
    font-family: var(--font-soehne);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateY(-50%);
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
    transition: background var(--hover-transition), box-shadow var(--hover-transition);
}

.estrel-booking-btn:hover {
    background: var(--color-deep-sea);
    color: var(--color-butter-yellow);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    text-decoration: none;
}

@media (max-width: 767px) {
    .estrel-booking-btn {
        right: -1rem;
        font-size: 0.6875rem;
        padding: 0.5em 1.2em;
    }
}
