/* --- VÁLTOZÓK --- */
:root {
    --gold-primary: #c5a028;
    --gold-gradient-start: #fff0c7;
    --gold-gradient-end: #cca32a;
    --gold-light: #f9f3e0;
    --dark-bg: #111111;
    --sidebar-bg: #1e1e1e;
    --white: #ffffff;
    --text-dark: #000000;
    --text-grey: #666666;
    --price-color: #000000;
    --border-radius: 12px;
    --inner-border-radius: 8px;
    --warning-yellow: #fdd835;
}

/* --- ALAP BEÁLLÍTÁSOK --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* --- ELRENDEZÉS (ASZTALI) --- */
.container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 40px 20px;
    gap: 30px;
    align-items: flex-start;
}

/* --- OLDALSÁV (ASZTALI) --- */
aside {
    flex: 1;
    background-color: var(--gold-light);
    color: var(--text-dark);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    min-width: 280px;
}

.sidebar-inner {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--inner-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--gold-primary);
    padding-bottom: 10px;
    display: inline-block;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    color: var(--gold-primary);
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.info-block p {
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #444444;
    font-weight: 400;
}

.service-highlight p {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    border-left: 3px solid var(--gold-primary);
    padding-left: 10px;
}

.main-phone {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    letter-spacing: 0.5px;
}

.closed-day {
    color: #888 !important;
    font-style: italic;
}

/* --- FŐ TARTALOM PANEL (ASZTALI) --- */
main {
    flex: 2.5;
    background-color: var(--gold-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.inner-content-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--inner-border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-size: 32px;
    margin: 0;
    color: var(--dark-bg);
    font-weight: 700;
}

.subtitle {
    font-size: 16px;
    color: var(--text-grey);
    margin-top: 10px;
    font-weight: 400;
}

/* --- TÁBLÁZAT --- */
.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 20px;
}

.price-table th {
    text-align: center;
    padding: 18px;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    border-bottom: 2px solid var(--gold-primary);
    letter-spacing: 0.5px;
}

.col-icon { width: 20%; }
.col-market { width: 40%; }
.col-price { width: 40%; }

.price-table td {
    padding: 22px 18px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    vertical-align: middle;
    text-align: center;
    font-weight: 500;
}

.price-table tr:hover td {
    background-color: #fafafa;
}

/* --- ARANYTÖMB IKON --- */
.gold-bar {
    width: 60px;
    height: 34px;
    background: linear-gradient(180deg, var(--gold-gradient-start), var(--gold-gradient-end));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #5c4000;
    font-weight: 800;
    font-size: 14px;
    text-shadow: 0px 1px 0px rgba(255,255,255,0.4);
    box-shadow: 0 4px 5px rgba(0,0,0,0.15);
    border: 1px solid #b8860b;
}

.market-price {
    color: #000000;
    font-weight: 600;
}

.price-final {
    color: #000000;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.small-text {
    font-size: 14px;
    color: #000000;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-weight: 600;
}

/* --- SÁRGA DOBOZ --- */
.disclaimer-box {
    background-color: var(--warning-yellow);
    color: #000000;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 20px auto 0 auto;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 90%;
}

.disclaimer-box p {
    margin: 3px 0;
}

.disclaimer-phone {
    font-weight: 700;
    font-size: 15px;
    margin-top: 5px !important;
}

/* ========================================= */
/* --- MOBIL NÉZET OPTIMALIZÁLÁS --- */
/* ========================================= */
@media (max-width: 850px) {
    .container {
        display: flex;
        flex-direction: column;
        margin: 15px;
        width: auto;
        gap: 20px;
    }

    main { order: 1; }
    aside { order: 2; }

    aside, main {
        border-radius: 12px;
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .inner-content-box, .sidebar-inner {
        padding: 25px 20px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 8px;
    }

    .logo {
        display: block;
        text-align: center;
        font-size: 30px;
        margin-bottom: 25px;
        width: 100%;
        border-bottom-width: 3px;
    }

    h1 {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .subtitle {
        margin-bottom: 20px;
    }

    .price-table th, .price-table td {
        padding: 12px 5px;
        font-size: 13px;
    }

    .col-icon { width: 15%; }
    .col-market { width: 40%; }
    .col-price { width: 45%; }

    .gold-bar {
        width: 45px;
        height: 28px;
        font-size: 12px;
    }

    .price-final {
        font-size: 20px;
    }

    .service-highlight p {
        font-size: 16px;
        text-align: center;
        border-left: none;
        border-bottom: 2px solid var(--gold-primary);
        padding-bottom: 10px;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .contact-numbers, .info-block {
        text-align: center;
    }

    .main-phone {
        font-size: 22px !important;
    }

    .disclaimer-box {
        margin-top: 15px;
        font-size: 12px;
        padding: 10px;
    }
}

/* ========================================= */
/* --- TELEFONSZÁM JAVÍTÁSA (ATOMBIZTOS) --- */
/* ========================================= */

/* 1. Általános tiltás a kék színre */
a[href^="tel"] {
    color: #000000 !important; /* FEKETE */
    text-decoration: none !important;
}

/* 2. Az oldalsáv telefonszáma */
.main-phone a,
.main-phone a:link,
.main-phone a:visited,
.main-phone a:hover,
.main-phone a:active {
    color: #000000 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

/* 3. A sárga doboz telefonszáma */
.disclaimer-phone a,
.disclaimer-phone a:link,
.disclaimer-phone a:visited,
.disclaimer-phone a:hover,
.disclaimer-phone a:active {
    color: #000000 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

/* 4. A kényszerített osztály */
.forced-phone-link {
    color: #000000 !important;
    text-decoration: none !important;
    cursor: pointer;
}
