/* 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: 100%;
    margin: 0;
	padding: 1rem 2rem;
    display: flex;
    align-items: center;
    color: white;
    justify-content: space-evenly;
    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;
    transition: max-height 0.3s ease; 
    
}

/* 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;
}


/* Frame Section */
.frame {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
	width: 100%; 
    background-image: url('../Images/IMG_6754.JPG');
    background-color: rgba(152, 203, 119, 0.72);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: -1;
    filter: blur(2px);
    border: 2px solid white;
    margin-bottom: 0;
}
/* Station Section */
.station {
	margin: 0 auto;
    position: relative;
	min-height: 80vh;
	width: 90%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center -384px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
    animation: fadeInUp 1.5s ease-out forwards;
}

/* Title */
#title {
    font-family: 'Malibu', serif;
    color: white;
	font-size: clamp(2rem, 8vw, 95px);
    font-weight: bolder;
    z-index: 10;
    text-shadow: -2px -2px 0 black;
    text-align: center;
    transition: all 0.3s ease;
}


/* 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;
    animation: none; 
}

.section .inner-content {
    animation: fadeInUp 1.5s ease-out forwards;
}

/* Subscription Info Section */
.subscription-info {
    animation: fadeInUp 1.5s ease-out forwards;
    background-color: rgba(230, 242, 218, 0.9);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Lemon_Tuesday', serif;
    color: #333;
    line-height: 3rem;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}



/* Paragraph Styling within Subscription Info */
.subscription-info p {
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: left;
}

/* Headings for Subscription Info */
.subscription-info h1 {
    font-size: 3rem; 
    font-family: 'Malibu', serif; 
    color: #4A4A4A;
    margin-bottom: 30px; 
}


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

@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;
      }

    .subscription-info {
        padding: 20px; 
        font-size: 1.1rem;
        min-height: 60vh;
    }

    .subscription-info h1 {
        font-size: 2.2rem;
    }

    .subscription-info p {
        font-size: 1rem;
    }
}


@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;
    }
  }

