/* GENERAL */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: "Merriweather", sans-serif;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    font-size: 90%;
}

/* TRANSITION */

a, 
.btn {
    transition: all 300ms ease;
}

/* NAVIGATION LOGO */
button.logo {
    background: transparent;
    line-height: 0;
    cursor: pointer;
    margin-bottom: 1.875rem;
    border: none;       
    outline: none;     
    padding: 0;
    margin-left: 3.125rem;   
}

.logo img {
    width: 9.375rem;
    height: auto;
    transition: 0.4s ease;
}

.logo img:hover {
    transform: scale(110%);
}

/* MAIN LOGO STYLING */

.main-logo {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 9.375rem;
}

.main-logo img {
    width: 30%;
    height: 30%;
    transition: 0.4s ease;
}

.main-logo img:hover {
    transform: scale(110%);
}

.main-text {
    position: absolute;
    top: 38.75rem;
    left: 0;
    width: 100%;
    color: rgb(252 , 229, 205);
    font-size: 3.125rem;
    text-align: center;
    transition: 0.4s ease;
}

.main-text:hover {
    transform: scale(110%);
    text-shadow: 0 0 0.5rem rgba(252,229,205,.9);
}

/* DESKTOP NAVIGATION */

.top-header {
    position: fixed;
    height: 9.375rem;
    display: flex;
    width: 100%;
    background: rgba(92, 51, 23, 0.4);
    transition: background 0.3s ease;
    z-index: 1000;
    gap: 4.375rem;
}

.top-header.scrolled {
    background: rgb(92, 51, 23);
    width: 100vw;
    height: 19vh;
}

nav, 
.nav-links {
    display: flex;
}

nav {
    justify-content: space-around;
    align-items: center;
    height: 17vh;
}

/* Removes the bulletpoints and adjusts font size (rem) */
.nav-links {
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
}

/* Color of the Navigation Text */
a {
    color: rgb(252 , 229, 205);
    font-size: 1.125rem;
    text-decoration: none;
    text-decoration-color: white;
    transition: 0.4s ease;
}

/* Effect of the Navigation Text when Hovering over with Cursor*/
a:hover {
  text-shadow: 0 0 0.5rem rgba(205, 208, 252, .9);
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transform: scale(105%);
}


/* WHILE THE PAGE IS ACTIVE, BOLDEN ITS NAV MENU*/
.nav-links a.active {
  font-weight: 800;
}

/* HAMBURGER MENU*/

#hamburger-nav {
    display: none;
}

.hamburger-menu {
    position: relative;
    display: inline-block;
}

.hamburger-icon {
    width: 1.875rem;
    height: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger-icon span {
    width: 100%;
    height: 0.125rem;
    background-color: rgb(252 , 229, 205);
    transition: all 0.3 ease-in-out;
}



.hamburger-icon.open span:first-child { transform: rotate(45deg) translate(0.375rem, 0.55rem); }
.hamburger-icon.open span:nth-child(2) { opacity: 0; }
.hamburger-icon.open span:last-child  { transform: rotate(-45deg) translate(0.375rem, -0.6rem); }

/* reset when closed */
.hamburger-icon span { transform: none; opacity: 1; }

/* dropdown */
.menu-links {
  position: fixed;
  text-align: center;
  margin-top: 1rem;
  left: 0;
  right: 0;
  background: rgb(92, 51, 23);
  width: 100vw;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0.375rem 1.125rem rgba(0,0,0,.12);
  padding: 0;             /* ensure no extra height when closed */
}
.menu-links.open { max-height: 20rem; }
.menu-links li { list-style: none; }
.menu-links a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: rgb(252 , 229, 205);
  text-decoration: none;
}
.menu-links a:hover { background: #f4f4f4; }

/* -------------------   LANDING IMAGES -----------------------*/
.landing-image img {
    margin-top: -6.875rem;
    width: 100vw;
    height: auto;
}
.landing-image {
    margin: 0 auto;
}

/* DAILY*/

.daily-landing-image img {
    margin-top: -6.875rem;
    width: 100%;
    height: auto;

}
.daily-landing-image {
    margin: 0 auto;
}



/* ------------------------------------   ABOUT SECTION STYLING   ------------------------------------*/
#about {
    background-color: rgb(114, 68, 40);
    width: 101%;
    height: 120vh;
    margin: -0.625rem;
    padding: 3.125rem;
}

/* STYLING FOR h2 HERE*/
.about-title h2{
    color: rgb(252 , 229, 205);
    font-size: 3.125rem;
    left: 0;
    width: 100%;
    text-align: center;
}

.about-section {
    display: flex;
}

.about-text {
    margin-left: 6.25rem;
    margin-top: 9.375rem
}

.about-text p {
    color: rgb(252 , 229, 205);
    font-size: 1.5625rem;
    
}
.about-text p2 {
    color: rgb(252 , 229, 205);
    font-size: 1.5625rem;
    font-weight: 800;
}
.about-text p2:hover {
    text-shadow: 0 0 0.5rem rgba(252,229,205,.9);
}

.portrait-image {
    margin-left: 6.25rem;
    margin-top: 3.125rem;
}

.portrait-image img {
    width: 21.875rem;      
    height: auto; 
    margin: 0 auto;
    transition: 0.4s ease;
}

.portrait-image img:hover {
    transform: scale(110%);
}

/* SOCIALS STYLING */

#socials {
    background-color: rgb(92, 51, 23);
    width: 100vw;
    height: 50vh;
    margin-top: -10rem;
    padding: 3.125rem;
}

.social-details {
    justify-content: left;
}

.social-text p {
    color: rgb(252 , 229, 205);
    font-size: 1.5625rem;
}

.social-title h3 {
    color: rgb(252 , 229, 205);
    font-size: 1.875rem;
}

.insta-button {
    width: 5rem;
    height: auto;
    background: none;
    border-radius: 0%;
    border: none;
    cursor: pointer;
    
}

.insta-button img {
    width: 5rem;
    height: auto;
    transition: 0.2s ease;
}

.insta-button img:hover {
    transform: scale(110%);
    box-shadow: 0 0 0.5rem rgba(252 , 229, 205,.9);
    border-radius: 50%;
}

/* FOOTER STYLING */

footer {
    position: absolute;
    padding-top: 0.3125rem;
    text-align: center;
    width: 100vw;
    height: 5vh;
    background: rgb(252 , 229, 205);
}
