/* Place your CSS styles in this file */

:root {
    /* Primary Colors */
    --gp-fire-red: #d63a2f; /* Fire Red - Warm, energetic, evokes the oven heat.*/
    --gp-charred-black: #1a1a1a; /* Charred Black - Warm, energetic, evokes the oven heat.*/
    --gp-creamy-mozz: #f7eedb; /* Creamy Mozz - Warm, energetic, evokes the oven heat.*/

    /* Secondary Colors */
    --gp-basil-green: #3E7A4A; /* Basil Green - Fresh, natural accent. */
    --gp-hothoney-gold: #f2a900; /* Hot Honey Gold - A pop of sweetness and heat. */
    --gp-brickoven-orange: #e05c2b; /* Brick Oven Orange - Adds warmth and vibrancy. */

    /* Font Sizing */
    --fs--2: clamp(.7387rem, .7987rem + -.0775vw, .7813rem);
    --fs--1: clamp(.9375rem, .9182rem + .0857vw, .9846rem);
    --fs-0: clamp(1.125rem, 1.0483rem + .3409vw, 1.3125rem);
    --fs-1: clamp(1.35rem, 1.1865rem + .7265vw, 1.7496rem);
    --fs-2: clamp(1.62rem, 1.3287rem + 1.2948vw, 2.3322rem);
    --fs-3: clamp(1.944rem, 1.4675rem + 2.1178vw, 3.1088rem);
    --fs-4: clamp(2.3328rem, 1.5919rem + 3.2931vw, 4.144rem);
    --fs-5: clamp(2.7994rem, 1.6848rem + 4.9538vw, 5.524rem);
}
* {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
}

body {
    background-color: var(--gp-creamy-mozz);
}

.nav-bg{
    background-color: var(--gp-charred-black);
}

.nav-link {
    font-weight: bold;
    color: var(--gp-creamy-mozz);
}



.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./assets/pizza-hero-image.webp);
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-content {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center children vertically */
    /* Keep the existing absolute positioning styles if they are needed for the container itself */
      position: absolute;
      top: 50%; /* Or your desired top value */
      left: 0; /* Or your desired left value */
      transform: translate(0, -50%); /* Or your desired transform */
      width: 100%; /* Ensure it takes full width if needed */
      height: 100%; /* Ensure it takes full height if needed to center children within it */
}
.hero-title {
  color: var(--gp-creamy-mozz);
}

h1, h2 {
    font-size: var(--fs-3);
}
h2 ~ p {
    font-size: var(--fs-1);
}
h4~p{
    font-size: var(--fs-0);
}

.gp-btn {
    padding: .75rem 1rem;
    border-style: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: var(--fs-0);
}
.gp-btn:hover, .btn-gp:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.btn-gp-primary:hover {
    color: var(--gp-fire-red);
    background: transparent;
    border-color: var(--gp-fire-red);
}
.btn-gp-secondary:hover {
    color: var(--gp-charred-black);
    background-color: var(--gp-hothoney-gold);
}


.btn-gp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.7rem 1.4rem;
      border-radius: 999px;
      font-size: var(--fs-0);
      font-weight: 700;
      border: 2px solid transparent;
      cursor: pointer;
      transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
    }
.btn-gp a, .gp-btn a, .btn-gp, .gp-btn{
    text-decoration: none;
    color: inherit;
    font-weight: 700;
}


    .btn-gp-primary {
      background: var(--gp-fire-red);
      color: var(--black);
    }
    .btn-gp-primary-outline{
        background: transparent;
        color: var(--gp-fire-red);
        border-color: var(--gp-fire-red);
    }
    
    .btn-gp-secondary {
      background: transparent;
      color: var(--gp-hothoney-gold);
      border-color: var(--gp-hothoney-gold);
    }
    .btn-gp-tertiary {
        background: transparent;
        color:var(--gp-charred-black); 
        border-color: var(--gp-charred-black);
    }
    .btn-gp-tertiary:hover {
        color: var(--gp-creamy-mozz);
        background-color: var(--gp-charred-black);
    }
    .btn-gp-tertiary a {
        text-decoration: none;
        color: inherit;
    }

    .btn-group .btn-gp-tertiary:hover{
        background-color: var(--gp-charred-black);
        color: var(--gp-creamy-mozz);
        border-color: transparent;
    }

.gp-btn-outline-primary {
    padding: .75rem 1rem;
    border-style: solid;
    border-width: 5px;
    border-radius: 50px;
    font-weight: 700;
    font-size: var(--fs-0);
}
.fire-red {
    background-color: var(--gp-fire-red);
    color: var(--gp-charred-black);
}
.brickoven-orange {
    background-color: var(--gp-brickoven-orange);
    color: var(--gp-charred-black);
}
.hothoney-gold {
    background-color: var(--gp-hothoney-gold);
    color: var(--gp-charred-black);
}
.basil-green {
    background-color: var(--gp-basil-green);
    color: var(--gp-creamy-mozz);
}
.img-thumb {
    object-fit: cover;
    width: 100%;
    height: 175px;
}
.gp-card {
    background-color: inherit;
    border-left: 4px solid var(--gp-fire-red);
}
.gp-card-border {
    border-left: 4px solid var(--gp-fire-red);

}
.social-icons{
    display: flex;
    justify-content: center;
    
}
.social-icons a {
    color: var(--gp-creamy-mozz);
    font-size: var(--fs-2);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.nav-link:hover, .social-icons a:hover {
    color: var(--gp-basil-green);
    /*background-color: var(--gp-creamy-mozz);*/
}

.gp-active {
    color: var(--gp-brickoven-orange);
}

.gallery-strip {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(160px, 1fr);
      gap: 0.75rem;
      overflow-x: auto;
      padding-bottom: 0.5rem;
    }

    .gallery-item {
      border-radius: 0.75rem;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: rgba(0, 0, 0, 0.7);
          background-position: center;
          background-size: cover;
    }

    .bg-chalkart{
    position: relative;
    overflow: hidden;
    }
    .bg-chalkart::after {
        background-image: linear-gradient(rgb(0 0 0 / .5)), url(./assets/digital-dense-bakcground-image.png);
        filter: blur(2.5px);
        background-position: center;
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        z-index: -10;
        transform: scale(1.1);
    }