@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 7th Edition
   Tutorial 5
   Case Problem 1
   
   Author: Bryce Parlin
   Date:   October 30th, 2025
   
   Filename: gp_layout.css

   This file contains the layout styles and media
   queries used with sample pages from the Golden
   Pulps website.

*/


/* Import Basic Design Styles Used on All Screens */

@import url("gp_designs.css");



/* Flex Layout Styles */
body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

section#sheet {
  flex: 3 1 301px;
}

article {
  flex: 1 3 180px;
}


/* ============================================
	Mobile Devices: 0 - 480 pixels
   ============================================
*/
@media screen and (max-width: 480px) {
  img.panel {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  nav.horizontal {
    order: 99;
  }
}

body > footer {
  order: 100;
}


/* ===================================================
	Tablet and Desktop Devices: Greater than 480 pixels
   ===================================================
*/
@media screen and (min-width: 481px) {
  nav.horizontal ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 40px;
  }
}

nav.horizontal ul li {
  flex: 1 1 auto;
}

@media screen and (min-width: 481px) {
  img.size1 {
    width: 100%;
  }

  img.size2 {
    width: 60%;
  }

  img.size3 {
    width: 40%;
  }

  img.size4 {
    width: 30%;
  }
}