/*=========================================
    GOOGLE FONT
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/*=========================================
    VARIABLES
=========================================*/

:root{
    --red:#C41230;
    --gold:#C8973A;
    --dark:#1A1008;
    --gray:#5C5147;
    --light:#F5EDE0;
    --cream:#FDF8F2;
    --white:#FFFFFF;
}

/*=========================================
    RESET
=========================================*/

*:root {
  --red:    #C41230;
  --red-dark: #9E0E26;
  --dark:   #1A1008;
  --gold:   #C8973A;
  --white:  #FFFFFF;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 3px solid var(--red);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

nav a {
  text-decoration: none;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: color .2s;
}

nav a:hover {
  color: var(--white);
  text-decoration: none;
}

/* PHONE */
.header-phone {
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.header-phone span {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  display: block;
  text-align: right;
  font-weight: 400;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-outline {   text-decoration: none;
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {   text-decoration: none;
  background: var(--white);
  color: var(--dark);
}

.btn-primary {   text-decoration: none;
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
    text-decoration: none;
  background: var(--red-dark);
  border-color: var(--red-dark);
}

/* CTA WRAPPER */
.header-ctas {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* RESPONSIVE HEADER */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .header-phone span {
    display: none;
  }
}
/*=========================================
    SECTION
=========================================*/

.section{
    padding:80px 20px;
}

.section-inner{
    max-width:1200px;
    margin:auto;
}

/*=========================================
    TITULOS
=========================================*/

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-label{
    color:var(--red);
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-title{
    font-family:'Playfair Display',serif;
    font-size:48px;
    color:var(--dark);
    margin-bottom:15px;
}

.section-sub{
    color:var(--gray);
    font-size:17px;
    max-width:650px;
    margin:auto;
    line-height:1.7;
}

/*=========================================
    GRID
=========================================*/

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

/*=========================================
    CARDS
=========================================*/

.menu-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.menu-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.menu-card img{
    width:100%;
    height:220px;
    object-fit:contain;
    padding:15px;
    background:#fff;
    transition:.4s;
}

.menu-card:hover img{
    transform:scale(1.05);
}

.menu-card-content{
    padding:22px;
}

.menu-card-content h3{
    text-align:center;
    font-size:22px;
    color:var(--dark);
    margin-bottom:8px;
}

.pizza-description{
    text-align:center;
    color:#666;
    font-size:14px;
    line-height:1.6;
    min-height:50px;
    margin-bottom:18px;
}

/*=========================================
    PRECIOS
=========================================*/

.pizza-sizes{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
}

.pizza-sizes span{
    background:#f6f6f6;
    border-radius:8px;
    padding:10px;
    text-align:center;
    font-size:13px;
    font-weight:700;
    color:var(--dark);
    transition:.3s;
    cursor:pointer;
}

.pizza-sizes span:hover{
    background:var(--red);
    color:#fff;
}

/*=========================================
    TOPPINGS
=========================================*/

.toppings-box{
    margin:70px auto 0;
    max-width:900px;
    background:var(--dark);
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.toppings-title{
    font-family:'Playfair Display',serif;
    color:var(--gold);
    text-align:center;
    font-size:30px;
    margin-bottom:30px;
}

.toppings-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin-bottom:30px;
}

.topping-tag{
    padding:8px 18px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:13px;
    transition:.3s;
}

.topping-tag:hover{
    background:var(--red);
    transform:translateY(-2px);
}

.toppings-prices{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    overflow:hidden;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.12);
}

.price-card{
    padding:22px;
    text-align:center;
    background:rgba(255,255,255,.05);
}

.price-card.active{
    background:rgba(196,18,48,.35);
}

.price-card div:first-child{
    color:rgba(255,255,255,.6);
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:1px;
}

.price-card div:last-child{
    margin-top:8px;
    font-size:26px;
    color:#fff;
    font-weight:700;
}
.toppings-prices{
    display:flex;
    justify-content:center;
}

.toppings-prices .price-card{
    max-width:280px;
    width:100%;
}
/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:900px){

    .menu-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .section-title{
        font-size:38px;
    }

    .section-sub{
        font-size:15px;
    }

}

@media(max-width:600px){

    .menu-grid{
        grid-template-columns:1fr;
    }

    .menu-card img{
        height:200px;
    }

    .toppings-prices{
        grid-template-columns:1fr;
    }

    .price-card{
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .price-card:last-child{
        border-bottom:none;
    }

}