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

@keyframes scroll-bg {
    0% {
        background-position: 100% 0; /* Start from the right */
    }
    100% {
        background-position: 0 0; /* Move to the left */
    }
}

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

/* Global Reset & Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Viewport */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Malibu', serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* 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-height: 100px;
    max-width: 120px; 
    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_6753.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);
    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: column;
    align-items: center;
    justify-content: flex-start;
    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;
}


.text {
    width: 100%;
    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;
}

.text h1 {
    margin: auto;
    margin-bottom: 1%;
}
.text p {
    font-family: 'Lemon_Tuesday';
}


/* Gallery Section */
.gallery-section {
  text-align: center;
  padding: 3rem 2rem;
  background-color: rgba(198, 221, 200, 0.6);
}

.gallery-section h1 {
  font-family: 'Malibu', serif;
  font-size: 2.5rem;
  color: #444;
  margin-bottom: 1rem;
}

.gallery-section p {
  font-family: 'Lemon_Tuesday', serif;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* Gallery Item */
.gallery-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 350px;
  background-color: white;
  border: 2px solid #a2b9a2;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.gallery-caption {
  font-family: 'Malibu', serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.gallery-info {
  font-family: 'Lemon_Tuesday', serif;
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.coming-soon-button {
  padding: 0.7rem 1.5rem;
  background-color: #a2b9a2;
  color: white;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  cursor: not-allowed;
  opacity: 0.7;
  transition: background-color 0.3s ease;
}

.coming-soon-button:hover {
  background-color: #8da88d;
}


#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) {
    #title {
        font-size: 45px;
    }

    .flower {
        width: 40px;
    }

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


@media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .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;
    }

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

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