/* Reset Browser Styles

http://meyerweb.com/eric/tools/css/reset/ 2. v2.0 | 20110126
  License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
  ========================================
  Custom styles
  ========================================
*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  color: #444;
  font-family:'Roboto', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

header {
    text-align: center;
    padding: 20px;
    letter-spacing: 1.15em;
    margin-top: 30px;
}

nav {
    text-align: center;
    margin-bottom: 30px;
}

main {
  flex: 1;
}


/*
  ========================================
  Custom classes
  ========================================
*/

.container {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  margin: 20px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.container img {
  flex: 1 1 300px;
  max-width: 100%;
  display: block;
}

.container .text-box {
  flex: 1 1 300px;
  padding: 20px;
  border-radius: 5px;
}

@media (max-width: 860px) {
    .container {
      flex-direction: column;
    }
}

.shadow-box {
      display: inline-block;
      align-items: center;
      padding: 20px;  
      margin: 10px;           
      background: #fff;          
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
      transition: transform 0.2s ease, box-shadow 0.2s ease;
}

img.shadow-box {
    max-width: 350px;
    height: auto;
}

.panel-grid {
  display: grid;
  gap: 40px;
  max-width: 95%;
  margin: 40px auto;
  padding: 20px;
}

.two-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #f2f2f2;
  padding: 20px;
}

.text-panel {
  flex: 0 0 48%;
  padding: 1% 2% 1% 1%;
  min-width: 340px;
  align-self: flex-start;
}

.image-panel {
  flex: 0 0 50%;
  padding: 1% 1% 1% 0;
  min-width: 340px;
}

.image-panel img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .panel {
    flex-direction: column;
    align-items: stretch; 
  }

  .text-panel,
  .image-panel {
    flex: 0 0 100%;
    width: 100%;        
    min-width: auto;  
    padding: 0;        
  }

  .image-panel {
    margin-top: 20px;   
  }
}

.btn-container {
  display: flex;
  justify-content: center;    
  align-items: center;        
  height: 50vh;          
}

.btn {
  background-color: #445C57;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 5px;
  text-align: center;
}

.btn a {
   text-decoration: none;
   color: white;
}

.btn:hover {
   background-color: #4F6B65;
}

.center-text {
  align-items: center;
  text-align: center;
}

.copyright {
  font-size: 12px;
  margin: 10px;
  padding: 0;
}

.contact {
  text-align: center;
  font-size: 12px;
  margin: 0;
  padding: 0px; 
}

.share-icon {
  width: 20px;
  height: 20px;
  margin: 4px;
}

.bold {
  font-weight: bold
}

.selected {
  color: #88ADB8;
}

.intro {
  margin: 10% 0;
  padding: 5% 12%;
  background-color: #F0F5F1;
}

/*
  ========================================
  Typography
  ========================================
*/

h1, h2, h3, h4, h5, p {
  margin-bottom: 5px;
}

h1 {
  color: #4F6B65;
  font-size: 44px;
  line-height: 88px;
  font-weight: 500;
}

h2 {
  color: #445C57;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
}

h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}
h4 {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 8px;
}

p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
}

nav a {
  color: #5C808F;
  text-decoration: none;
  padding: 20px;
}
nav a:hover {
  color: #88ADB8;
}

header a {
    text-decoration: none;
}

footer a {
    text-decoration: none;
}


