/* 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 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;
    overflow-x: hidden;
}

/* 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;
      position: relative;
      z-index: 10;
      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_6748.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: 60vh;
	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: 'Sour Gummy', sans-serif; */
    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-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;
}




/* Three Box Section */
.three-box-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* more symmetrical */
    align-items: flex-start;
    gap: 1.5rem; /* reduced from 2rem */
    padding: 4rem 1rem; /* tighter sides */
    background-color: rgba(198, 221, 200, 0.361); 
    box-sizing: border-box;
  }
  
  .info-box {
    flex: 1 1 380px; 
    max-width: 400px; /* increased from 320px */
    background-color: white;
    border: 2px solid #a2b9a2;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    padding: 2rem; /* slightly more spacious */
    text-align: center;
    transition: transform 0.3s ease;
    height: 70vh;
    max-height: 500px;
  }
  
  .info-box:hover {
    transform: translateY(-5px);
  }
  
  .info-image {
    width: 100%;
    height: 250px; /* fixed height for consistency */
    object-fit: cover; /* makes images consistent */
    border-radius: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .info-title {
    font-family: 'Malibu', serif;
    font-size: 2rem; /* slight bump */
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .info-description {
    font-family: 'Lemon_Tuesday';
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.2rem;
  }
  
  .info-button {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background-color: #a2b9a2;
    color: white;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Playfair Display', Georgia, serif;
    transition: background-color 0.3s ease;
    font-size: 1rem; /* clearer size */
  }
  
  .info-button:hover {
    background-color: #8da88d;
  }
  /* END three box Section  */
  
  /*Subcription Section  */
  .subscription-contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: rgba(198, 221, 200, 0.361);
  }
  
  .subscription-box {
    flex: 1 1 30%;
    max-width: 32%;
    background-color: white;
    border: 2px solid #a2b9a2;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    text-align: left;
  }
  
  .subscription-title {
    text-align: center;		
    font-family: 'Malibu', serif;
    font-size: 2rem;
    color: #444;
    margin-bottom: 1.2rem;
  }
  
  .subscription-list {
    list-style: none;
    padding: 0;
    font-family: 'Lemon_Tuesday';
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
  }
  
  .subscription-list li {
    margin-bottom: 0.6rem;
  }
  
  .coming-soon-button {
    padding: 0.7rem 1.5rem;
    background-color: #a2b9a2;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    cursor: not-allowed;
    opacity: 0.8;
  }
  
  
  .contact-form {
    flex: 1 1 65%;
    max-width: 66%;
    background-color: white;
    border: 2px solid #a2b9a2;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 2rem;
  }
  
  .form-title {
    font-family: 'Malibu', serif;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #444;
    text-align: center;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
  }
  
  .contact-form button {
    padding: 0.7rem 1.5rem;
    background-color: #a2b9a2;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #8da88d;
  }


#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 Code */



  @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-box {
      flex: 1 1 100%;
      max-width: 100%;
    }
  
    .contact-form {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .info-box {
        height: 60vh;
        max-height: 500px;
    }
  }


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

    .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;
    }
    #logo {
        max-width: 180px;
      }
}
  
  /* Extra large screens */
  @media (min-width: 1440px) {
    #logo {
      max-width: 200px;
    }
  }
  

