html, body {
   margin: 0;
   padding: 0;
}
html {
    background-image: url("../img/background.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-color: #000;
    font-size: 24px;
}
#menu {
    
    border-bottom: 0.125rem solid #18d625;
    text-align: center;
}

#menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#menu li {
    display: inline;
}

#menu a {
    
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 0.4167rem 0.8333rem;
}

#menu a:hover {
    background-color: #555;
    border-radius: 0.5rem;
}
#menu ul li a.active {
    background-color: green;
    /* buton activ */
    font-weight: bold;
    border-radius: 0.5rem;
}
.content {
    color: white;
    margin: 1rem;
    font-size: 1.2rem;
    
}
#green {
    color: green;
}
#red {
    color: red;
}
/* container general */
.vip-card, .pryce {
    
    color: #fff;
    padding: 1rem 1.5rem;
    max-width: 60rem;
    font-family: "Times New Roman", Georgia, serif;
    font-style: italic;
    font-size: 1.6rem;
    
    /* 24px */
    line-height: 1.4;
}


/* coloana stânga */
.vip-left {
    float: left;
    width: 46%;
    
}

/* coloana dreaptă */
.vip-right {
    float: right;
    width: 48%;
}

/* curățare float */
.clear {
    clear: both;
    text-align: center;
    font-size: 2rem;
}

/* lista */
.vip-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* fiecare linie */
.vip-list li {
    position: relative;
    padding-left: 1.0rem;
    /* spațiu pentru steluță (~30px) */
    margin-bottom: 0.5rem;
}

/* steluta verde oldschool */
.vip-list li::before {
    
    content: "*";
    position: absolute;
    left: 0;
    top: 0;
    color: #00ff00;
    font-weight: bold;
}


/* prețurile */
.price-block::before,
.super-offer::before {
    content: "";
}

.price-block {
    margin-top: 1rem;
    font-style: normal;
    font-weight: bold;
}

.price-block .price-line {
    display: block;
    line-height: 1.3;
}

/* super oferta */
.super-offer {
    margin-top: 1rem;
    color: #ff0000;
    font-weight: bold;
    font-style: normal;
    font-size: 1.1rem;
}
.title {
    text-align: center;
}

/* contact info jos */
.contact-block {
    margin-left: 3rem;
    clear: both;
    margin-top: 1.5rem;
    font-size: 1.8rem;
}
.contact-block li::before{
    color: red;
}
.sub-title {
    margin-left:3rem;
}
.contact-block ul {
    margin-left: 8rem;
    color: white;
    
}

/* culori */
.green {
    color: #00ff00;
}

.red {
    color: #ff0000;
}

.white {
    color: #ffffff;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}
/* noul card de preț din dreapta */
.vip-price {
  float: right;
  width: 12rem;                 /* ~288px (la 1rem=24px) */
  background: #111;             /* ușor mai deschis decât fundalul */
  border: 2px solid #00ff00;    /* verde */
  border-radius: 1rem;          /* colțuri rotunjite */
  padding: 1rem;
  margin: 0 0 1rem 1rem;        /* spațiu față de restul conținutului */
  text-align: center;
  font-style: normal;
  line-height: 1.3;
  box-shadow: 0 0 0.5rem #0f0;  /* glow verde subtil */
}

/* textul din card */
.vip-price .title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.vip-price .super {
  margin-top: 0.8rem;
  font-size: 1.1rem;
}
/* ===== Responsive scaling by changing REM base ===== */

/* Implicit (desktop mare) — deja setat din browser sau manual */


/* Laptopuri și tablete landscape (max 1200px) */
@media screen and (max-width: 1200px) {
    html {
        font-size: 22px;
        /* 1rem = 22px */
    }
}

/* Tablete (max 992px) */
@media screen and (max-width: 992px) {
    html {
        font-size: 20px;
        /* 1rem = 20px */
    }
}

/* Telefoane mari (max 768px) */
@media screen and (max-width: 768px) {
    html {
        font-size: 17px;
        /* 1rem = 18px */
    }
}
@media screen and (max-width: 668px) {
    html {
        font-size: 13px;
        /* 1rem = 18px */
    }
}


/* Telefoane mici (max 576px) */
@media screen and (max-width: 500px) {
    html {
        font-size: 10px;
        /* 1rem = 16px */
    }
}

/* Foarte mici / vechi (max 400px) */
@media screen and (max-width: 400px) {
    html {
        font-size: 14px;
        /* 1rem = 14px */
    }
}