/* 
Barve:
oranžna: #F0AD35, 
manj vibrntna: #C59B4C

Fonts:
font-family: 'Noto Sans', sans-serif;
font-family: 'Noto Serif', serif;
*/

* {
    box-sizing: border-box;
  }
  
  *::selection {
    background-color:#DED5CB;
    color: #fff;
  }
  
  
  html {
    background-color: #DED5CB;
    height: 100%;
    overflow: hidden;
    font-size: 16px;
  }
  
  body {
    color: #000000;
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
    line-height: 1.65;
    background-color: #DED5CB;
    height: calc(100% - 1rem); 
    overflow-y: scroll;
    margin: 0;
  }
  
  section {
    padding: 2rem; 
    min-height: calc(100vh - 2rem); 
    display: flex;
    align-items: center;
  }
  
  h1, h2 {
    font-family: 'Noto Serif', serif;
    text-align: center;
  }
  
  h1 {
    font-size: 1.5rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.5rem; 
    margin: 0;
  }
  
  h2 {
    font-size: 2rem; 
    margin-bottom: 1rem;
  }
  
  a {
    color: #095D6A;
    text-decoration: none;
  }
  
  dt {
    font-family: 'Noto Serif', serif;
    color: #095D6A;
    font-size: 1.3125rem; 
  }
  
  dd {
    margin-left: 0;
    margin-bottom: 1rem; 
  }
  
  p {
    margin: 1rem 0; 
  }
  
  #tagline {
    color: #095D6A;
    font-size: 2.25rem;
    text-align: center;
    font-family: 'Noto Serif', serif;
  }

  .column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .btn {
    border: 2px solid #095D6A;
    padding: 1rem 2rem; 
    margin: 2rem 0; 
    display: inline-block;
    text-transform: uppercase;
    font-weight: 300;
    transition: all ease-out 0.5s;
  }
  
  .btn:hover {
    color: #fff;
    background-color: #095D6A;
    transform: scale(1.1);
  }
  .btn:active {
    background-color: #095D6A;
  }
  
  .container {
    max-width: 1700px;
    margin: 0 auto;
  }
  
  .about h2 + p {
    font-size: 1.2rem;  
  }

  .about .omeni {
    max-width: 1700px;
    display: flex;
    gap: 5rem;
  }
  .about img {
    border-radius: 40px;
  }
 
  .about .column {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
  }


  .photography .container {
    max-width: 1700px;
    width: 90%;
    margin: auto;
    padding: 40px 0;
  }

  .photo-gallery {
    display: flex;
    gap: 2rem;
  }


  .photography img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    transition: all ease-out 0.6s;
  }
  .photography img:hover {
    transform: scale(1.1);
  }
 
  .hero-area {
    position: relative;
  }
   
  .contact {
    background-image: url('img/photo-man.png');
    background-position: 300px bottom;
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .contact a {
    color: #000000;
    text-decoration: underline;
  }
  .contact .btn {
    color: #fff;
    background-color: #095D6A;
    text-decoration: none;
    transition: ease-out 1s;
  }
  .contact .btn:hover {
    background-color: #095D6A;
  }
  .info  {
    background-color: #faf2e5;
    opacity: 60%;
    border-radius: 10px;
    padding: 1rem 2rem; 
    margin: 2rem 0; 

  }



  
  @media only screen and (max-width: 768px) {
   .photo-gallery {
    flex-direction: column;
  }
  .about .omeni {
    flex-direction: column;
  }
  .about .column {
    max-width: calc(100vw - 5rem);
  }
  .contact {
    background-position: 700px bottom;
  }
  }



  @media only screen and (min-width: 768px) {
    #tagline {
      font-size: 4rem; 
    }
    .contact {
      background-position: 300px bottom;
    }
  }

  
  @media only screen and (min-width: 1024px) {
    .contact {
      background-position: 500px bottom;
    }
    html {
      font-size: 18px;
    }
  
    .contact .container {
      padding-right: 350px;
    }
  
    .contact dl {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: right;
    }
    .badge {
      display: flex;
    }
  }
  
  @media only screen and (min-width: 1600px) {
    html {
      font-size: 21px;
    }
    .contact {
        background-position: 1100px bottom;
      }
  }
  