/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fonts */
@font-face {
    font-family: 'Malibu';
    src: url('../FONTS/Malibu.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lemon_Tuesday';
    src: url('../FONTS/Lemon_Tuesday.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Global Link Styling */
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: rgba(var(--bs-dark-rgb), 1) !important;
}

/* Top Nav Section */
.top-nav {
    position: relative;
    height: 12vh;
    width: 100vw;
    margin: 0;
	padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: white;
    background-color: rgba(162, 185, 162, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 10;
}

/* Hamburger button styling */
	.hamburger {
	  display: none;
	  font-size: 2rem;
	  background: none;
	  border: none;
	  color: white;
	  cursor: pointer;
	}
	
	/* Links container */
	.nav-links {
	  display: flex;
	  gap: 4rem;
	}

/* Logo Image */
#logo {
    height: auto;
    max-width: 120px;
    max-height: 100px;
    animation: fadeInUp 1.5s ease-out forwards;
    display: block;
}

/* Anchor for Logo */
#picture-link {
    display: inline-block;
    text-decoration: none;
    width: auto;
}

/* Link Container for Nav Links */
.link-container {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.25rem;
    font-weight: bold;
	Flex-wrap: wrap;
	gap: 1rem;
    color: black;
    text-decoration: none;
    cursor: pointer;
    animation: fadeInUp 1.5s ease-out forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: auto;
}

/* Flower Elements */
.flower-wrap {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.5);
    transform-origin: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 10;
}

.flower-show {
    opacity: 1;
    transform: scale(1);
}


#flower {
    width: 60px;
}


/* Main Section */
.section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%;
    min-height: 100vh;
    padding: 5% 2%;
    background-color: rgba(198, 221, 200, 1);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 0;
    gap: 3rem;
}


/* Text Section */
.about-us {
    width: 100%;
	max-width: 800px;
	margin: 0 auto;
    font-family: 'Malibu', serif;
    font-size: 2rem;
    color: black;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    animation: fadeInUp 1.5s ease-out forwards; 
}

.about-us p {
    font-family: 'Lemon_Tuesday';
}

#owners {
	margin: 5vh auto;
	width: 90%;
	height: auto;
	border: 2.4px solid black;
    animation: fadeInUp 1.5s ease-out forwards; 
}

#sub-text {
    margin-top: 3%;
	text-align: center;
    font-size: small;
    font-family: 'Malibu', serif;
    color: gray;
    animation: fadeInUp 1.5s ease-out forwards; 
}


#copyright-text {
    font-family:'Courier New', Courier, monospace;
    color: gray;
    font-size: xx-small;
	text-align: center;
	Margin-top: 1rem;
    
}



/* Media */

@media (max-width: 600px) {
    .top-nav{
        height: 20vh;
    }
    .frame {
        height: 160vh;
        background-size: cover;
        background-position: center center; 
        background-repeat: no-repeat;
    }

    #title {
        font-size: 45px;
    }

    .flower {
        width: 40px;
    }

    .about-us {
        font-size: 1.2rem;
    }
}



@media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .frame {
      height: 140vh;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
  }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      right: 0;
      background-color: rgba(162, 185, 162, 0.95);
      width: 100%;
      padding: 1rem;
      z-index: 9;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .nav-links h2 {
      margin: 0.5rem 0;
    }
  
    .top-nav {
      flex-wrap: wrap;
      height: auto;
      padding: 1rem;
    }
  
    #logo {
      max-width: 100px;
    }
  }

@media (max-width: 1024px) {
    .top-nav {
        flex-direction: column;
        gap: 1rem;
        height: 30vh;
    }

    #logo {
        max-width: 180px;
    }
    .section {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }

    .frame {
        height: 120vh;
        background-size: cover; 
        background-position: center center;
        background-repeat: no-repeat;
    }

    .link-container {
        flex-direction: column;
        font-size: 1rem;
    }

    #owners {
        width: 90%;
    }

    .about-us {
        font-size: 1.5rem;
    }

    #title {
        font-size: 60px;
    }
}


 /* Extra large screens */
 @media (min-width: 1440px) {
    #logo {
      max-width: 200px;
    }
  }


