* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   }

   html, body {
    height: 100%;
    font-size: 100%;
   }

   h1,
   h2,
   h3,
   h4,
   h5,
   h6,
   p {
  
    margin-bottom: 16px;
   }

   html:focus-within {
    scroll-behavior: smooth;
  } 

   input, button, textarea, select {
    font: inherit;
  }

   a {
    text-decoration: none;
    color: inherit;
  }

  /*///////////////////////// END BOILERPLATE ///////////////////////*/




  /*///////////////////////// FONTS ///////////////////////*/
@font-face {
    font-family: 'Kannada';
    src: url('/fonts/Kannada_MN/KannadaMN-01.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Josefin';
    src: url('/fonts/Josefin_Slab/JosefinSlab-VariableFont_wght.ttf'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bodoni';
    src: url('/fonts/Bodoni_Moda/BodoniModa-VariableFont_opsz\,wght.ttf');
    font-weight: normal;
    font-style: normal;
}

  /*///////////////////////// VARIABLES ///////////////////////*/

  :root {
 
    --rene-blue: #4e8bdb;
    --off-white: #FBF7EF;
    --brownie: #674B41;
    --secondary-brwn: #4f352b;
    --accent-yellow: #FFBD59;
    --text-dark: #3a2115;
    --text-light: #FBF7EF;
  }




    /*///////////////////////// BEGIN STYLING ///////////////////////*/

    body {
        background-color: var(--off-white);
    }

    /*/////////////// HEADER //////////////*/
    header {
        background-color: var(--rene-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        height: 200px;
     }

    header h4 {
        color: var(--text-light);
        margin-top: -40px;
        font-size: 11px;
        font-weight: 80;
    }

    .logo {
        height: auto;
        max-width: 220px;
        margin-bottom: -10px;
       
    }

    .hamburger {
        width: 36px;
        position: absolute;
        right: 4%;
        top: 10%;
    }

    h1 {
        font-family: 'Kannada';
        color: var(--brownie);
        text-align: center;
        font-weight: 100;
        
        
    }

    h2 {
        font-family: 'Josefin';
        color: var(--text-dark);
    }

    p {
        font-family: "Josefin";
    }

    .menu-items {
        font-family: 'Josefin';
        color: var(--brownie);
    }

    h4 {
        font-family: 'Bodoni';
        font-size: 10px;
        font-weight: 50;
        padding-bottom: 10px;
    }

    body {
        background-color: var(--off-white);
    }
  
/*/////////////// BEGIN HERO//////////////*/
    .hero {
        background-color: var(--off-white);
        height: 90vh;
        background-image: url('/images/renes-background-small.png');
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10vh;
        
    }

    .textbox {
        background-color: var(--off-white);
        height: 70vw;
        width: 80vw;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5%;
    }

    .hero p {
         font-family: 'Josefin';
         text-align: center;
         font-size: clamp(1rem, 2rem, 4rem); 
         color: var(--brownie);
    }

    /* BEGIN PASTRY SECTION */
 
    section {
        padding: 5%;
        background-color: var(--off-white);
    }
    
    .section-title {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 5%;
        padding-right: 5%;
        margin-bottom: 3vh;
    }

    hr {
        margin-top: -18px;
        margin-bottom: 27px;
        background-color: var(--brownie);
        border: none;
        height: 1px;
    }

    .section-title h1 {
        letter-spacing: 3.6px;
        font-size: 3rem;
    }

    .menu-items {
        margin-bottom: 36px;
    }
    .menu-item {
        margin-bottom: 1.25rem;
        display: flex;
    }

    .sub-header {
        margin-top: 12%;
    }

    .dots {
    flex-grow: 1;
    border-bottom: 1px dotted #999;
    margin: 0 5px;
    position: relative;
    bottom: 5px;
    }

    /* ANNA CAKES SECTION BEGIN */

    .cakes {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;

    }

   
    .cakes h1 {
     
        font-size: 3rem;
    }
    

    .cakes p {
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        color: var(--secondary-brwn);
        line-height: 1.5rem;
        width: 60vw;
    }

    .anna h1 {
        margin-top: 5%;
        font-size: 2.35rem;
        width: 500px;
    }

    


    h6 {
        font-size: 24px;
        font-family: 'Josefin';
        color: var(--secondary-brwn);
    }
      /* MOBILE FOOTER SECTION BEGIN */
    footer {
        background-color: var(--secondary-brwn);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 8%;
        padding-top: 15%;
        color: var(--off-white);
    }

    h5 {
        font-family: "Josefin";
        font-size: 28px;
        text-align: center;
        margin-bottom: 5vh;
    }

    .day {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 60vw;
        font-family: 'Josefin';
        font-size: 20px;
    }
    
    .hours {
        text-align: center;
        width: 100px;
    }

    .shop-hours {
        margin-bottom: 5vh;
        display: flex;
        flex-direction: column;
    }

    footer p {
        font-size: 20px;
        text-align: center;
    }

    .logo-footer {
        width: 50vw;
        /* min-width: 180px; */
        margin:  0 auto;
    }

    .phone {
        margin-bottom: 15vh;
    }

    .cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
   }

   .cta a {
    display: flex;
    align-items: center;
    font-family: 'Kannada';
    font-size: 1rem;
    color: #FFBD59;
   }

   .cta img {
    margin-left: 1rem;
    width: 24px;
   }


.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}









   /* ///LARGER SCREENS ////////////////////////////////////////////*/

   @media (min-width: 768px) {

     /* Show/hide elements based on screen size */
  
  
  .mobile-only {
    display: none;
  }

 
 .desktop-only {
    display: block;
  }


        header {
        background-color: var(--rene-blue);
        display: flex;
        align-items: flex-start;
        height: 20%;
        padding-left: 3%;
        /* ^ changed entire section */
     }

    header h4 {
        display: none;
        /* ^changed, deleted styling */
    }

    

    .hamburger {
        width: 40px;
        position: absolute;
        right: 4%;
        top: 6%;
    }


    .hero {
        height: 90vh;
        background-image: url('/images/renes-background-horizontal.png'); 
        /* ^changed */
       
        
    }

    .textbox {
        background-color: var(--off-white);
        height: 60vh;
        /* ^ changed */
        width: 80vw;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5%;
    }


   .menu-item {
    font-size: 1.25rem;
   }

    
/* Desktop Footer */
    footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 10rem;
    gap: 6rem;
    /* background-color: lime; */
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: tomato; */
    width: 50%;
  }

     .logo-footer {
        width: 30vw;
        margin:  0 auto;
        /* background-color: #4e8bdb; */
    }


    .day {
        font-size: 20px;
        max-width: 500px;
    }
    


    .phone {
        margin-bottom: 1.5vh;
    }

    
    .cta a {
    font-size: 1.25rem;
    white-space: nowrap;
   }

   .cta img {
    width: 32px;
   
   }

   

  .shop-hours {
    flex-shrink: 0;
    min-width: 280px;
    width: 50%;
    margin-bottom: 0;
    /* background-color: magenta; */
    align-items: center;
  }
  
  .shop-hours h5 {
    margin-bottom: 2rem;
    font-size: 2rem;
    
  }
  
  .day {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    width: 280px;
    margin-bottom: 0.6rem;
  }


   }


  



   