/* --------------------------- CSS RESET ------------------------------ */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
  
img { max-width: 100%; height: auto; }

/* Override default gridlex padding */ 
[class*=col] { padding: 0; }
[class*=grid] { margin: 0; }

section { position: relative; }

/* ------------------------ CSS Variables ------------------------------- */
:root {
  --dark: #f6cf4154;
  --featured: #fbd42e;
  --medium: #e98e96;
  --light: #2c2a28;
  --light-text: #2c2a28;
  --featured-text: #fbd42e;
}

/* ---------------------- Typography Styles ----------------------------- */
.left    { text-align: left; }
.right   { text-align: right; }
.center  { text-align: center; }

.uppercase { text-transform: uppercase; }

body {
  font-family: 'Urbanist', sans-serif;  /* Add your font here */ 
  color: var(--dark-text);
}

h2, h3, h4, h5, h6 {
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.6rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p, li {
  line-height: 1.3; 
  margin-bottom: 1rem;
  font-family: 'Urbanist', sans-serif; 
  font-weight: 200;
  font-size: 1.5rem;
}

h2:last-child, 
h3:last-child, 
h4:last-child, 
h5:last-child, 
h6:last-child, 
p:last-child {
	margin-bottom: 0;
}

/* Unique Typography Styles  */
.light-text     { color: var(--light-text);}
.copyright      { font-size: 0.9rem; opacity: 0.8; text-decoration: none;}

/* ------------------------ Buttons & Links ------------------------ */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
  color: var(--medium); 
}

p a:hover { 
  color: var(--medium); 
}

.button { 
    display: block;
    margin: 0.5rem 5rem 0rem 5rem;
    text-decoration: none;
    line-height: 1;
    border: 1px solid;
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    background-color: var(--dark);
}

a.button {
  color: inherit;
  font-family: 'Urbanist', sans-serif;
  font-weight: bold;
}

.button:hover {
    background-color: var(--medium);
}

/* ------------ Backgrounds & Background Images  ----------------------- */

.bg-dark     { background-color: var(--dark);}

.bg-image {
    background-color: var(--medium);
    background-size: cover;
    background-position: top; 
    background-repeat: no-repeat;
    background-image: url('/images/kalophagas.webp');
}

/* header */
.logo {
  text-decoration: none;
  font-size: 2.5rem;
} 

.vh100 { min-height: 100vh;}

/* Padding Utility Classes */ 
.padded    { padding: 5%;   }
.padded-t  { padding-top: 5%; }
.padded-r  { padding-right: 5%; }

/* ------------------------ Responsive Styles -------------------------- */
/* ------------------ MD Media Query (64em / 1024px) --------------- */ 
@media(max-width:64em) {
  .md-padded {padding: 5%;}
}

/* ------------------- SM Media Query (48em / 768px) --------------- */ 
@media(max-width:48em) {
  .sm-padded     { padding: 5%; }

  h1 { font-size: 3rem; }
  h2 { font-size: 1.8rem; }
  .button {margin: 0.5rem 2rem 0rem 2rem;}

  .bg-image {
    padding-bottom: 66%;
    min-height: 0;
}

  .copyright {display: inline;}
}