*{
   margin: 0;
   padding: 0;
   
}



a{
    text-decoration: none;
    color: white;
}

 /* Font */
.sofia-regular {
    font-family: "Sofia", cursive;
    font-weight: 400;
    font-style: normal;
  }

  .lilita-one-regular {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }  

 .big-shoulders {
    font-family: 'Big Shoulders';
    font-weight: 400;
 } 

  .big-shoulders-stencil {
    font-family: 'Big Shoulders Stencil';
    font-weight: 900;
    font-size: 18px;
 } 
  
.white-txt{
    color: white;
}

.txt-glow-white{
    text-shadow:1px 1px 10px #fff, 1px 1px 10px #ccc;
}

/* end of of font class */

body{
    width: 100%;
    height: 100vh;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.767);
    margin: 10px 20px;
}

.btn-header {
  padding: 10px 18px;
  color: #f5f5f5;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #d4af37; /* gold line hover */
  transition: width 0.3s ease;
}

.btn-header:hover::after {
  width: 100%;
}

.btn-header:hover {
  color: #d4af37; /* gold text hoover */
}

.header-right{
    display: flex;
    flex-direction: row;
    width: 30%;
    justify-content: space-between;
    font-size: large;
}

.main-body-container-photo {
    min-height: 100%;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                      url(../img/adrianna-geo-1rBg5YSi00c-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: flex;
    flex-direction: column;
}

/*  Main section */

.main{
    display: flex;
    width: 100%;
    height: 90vh;
}

.main-left{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
    font-family: 'Big Shoulders Stencil';
    font-size: 130px;
    font-weight: 700;
}

.main-left-content {
    padding-left: 5%;
    padding-bottom: 10%;
}

.main-right{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
    font-family: 'Big Shoulders';
    font-weight: 600;
    font-size: 40px;
    text-align: justify;
    
}

.main-right-content {
    padding-left: 5%;
    padding-bottom: 5%;
    padding-right: 3%;
}

.cltabutton{
    margin-right: 50px;
    margin-top: 50px;
    text-align: right;
    letter-spacing: 4px;
}

.cltabutton-content {
        border: 1px solid rgba(255, 255, 255, 0.671);
    border-radius: 20%;
    padding: 10px;
    
}

.cltabutton-content:hover{
    color: #d4af37;
     border: 1px solid #d4af37;
      transition: all 0.4s;
    /* color: #b8860b;  -- darker gold */
}

/* Fonts */

