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

/* Global body settings */
body, html {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    background: url("../images/New_Logo_04-01-2025_opaque.jpg") no-repeat center center fixed;
    background-size: cover;
}

/* Main container settings */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow: auto;
}

/* Main content */
.main-content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px; /* Ensures content is below the menu bar */
}

/* Header Styling */
header {
    background: #f7f7f7;
    border-bottom: 2px solid #ccc;
    padding: 10px;
    width: 100%;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.header-top img {
    height: 50px;
    flex-shrink: 0;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 5px;
}

.social-icons img {
    height: 25px;
    width: 25px;
    cursor: pointer;
}

/* Navigation Menu */
.main-menu {
    text-align: center;
    margin-top: 5px;
    width: 100%;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #f4f4f4;
    border-radius: 5px;
    flex-wrap: wrap;
    margin-bottom: 5px;
    width: 100%;
}

.main-menu ul, .main-menu ul li {
    list-style: none;
}

.main-menu ul li {
    position: relative;
    padding: 5px;
    white-space: nowrap;
}

.main-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
    padding: 5px;
    display: block;
}

.main-menu ul li a:hover {
    color: #0f2af0;
}

/* Dropdown Menu */
.main-menu ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    list-style: none;
    min-width: 180px;
    border-radius: 5px;
    padding: 5px 0;
    z-index: 1000;
}

.main-menu ul li:hover > ul {
    display: block;
}

.main-menu ul li ul li a {
    padding: 5px;
    display: block;
    color: #333;
    background: #f4f4f4;
    border-radius: 3px;
}

.main-menu ul li ul li a:hover {
    background: #0f2af0;
    color: #fff;
}

/* Hero and Gallery Section */
.hero, .gallery, .video-section {
    margin: 0 auto;
    padding: 0;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 80px; /* Adjusted for fixed header spacing */
}

.hero {
    min-height: 90vh;
    justify-content: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gallery {
    margin-top: 0;
    padding-top: 0;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  position: relative;
}

nav ul li ul.submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 999;
}

nav ul li:hover > ul.submenu {
  display: block;
}

/* This makes the YEARS submenu fly out to the right */
nav ul li ul.submenu-right {
  top: 0;
  left: 100%;
}

/* Hero Content */
.hero-content {
    margin: 0 auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    min-width: 450px;
    width: 100%;
    text-align: center;
}

/* Video Section */
.video-section {
    width: 90%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
}

.video-section video {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px;
    border-top: 2px solid #ccc;
    width: 100%;
    position: relative;
}

/* Remove bullet points */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: center;
    }

    .main-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        padding: 5px;
    }
}

/* Featured Products */
.featured {
    text-align: center;
    padding: 0px 0; /* Minimal padding */
    margin-bottom: 0px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px; /* Reduced spacing */
}

.product {
    background: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.product img {
    max-width: 120px; /* Reduced image size */
    border-radius: 5px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between images */
    flex-wrap: wrap;
}

.product {
    padding: 5px; /* Space inside each box */
}

.product img {
    max-width: 120px;
    border-radius: 5px;
}
.gallery-container {
    display: flex;
    flex-wrap: wrap; /* Allows images to wrap on new lines */
    gap: 10px; /* Adjust this to control spacing between images */
    justify-content: center;
}

.example-image-link {
    display: inline-block;
    padding: 5px; /* Adds space inside each image block */
}

.example-image {
    max-width: 150px; /* Adjust size */
    border-radius: 5px;
}

/* Individual Post Card */
.social-post {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures button stays at the bottom */
    min-height: 450px; /* Set a minimum height for uniformity */
}

/* Follow Me Buttons */
.follow-btn {
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    margin-top: auto; /* Pushes button to bottom */
    display: block;
}

/* Social Media-Specific Button Colors */
.fb-btn {
    background: #3b5998;
    color: white;
}
.fb-btn:hover {
    background: #2d4373;
}

.ig-btn {
    background: #E1306C;
    color: white;
}
.ig-btn:hover {
    background: #C13584;
}

.tt-btn {
    background: #25F4EE;
    color: black;
}
.tt-btn:hover {
    background: #20C4BE;
}

.image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
    text-align: center;
    width: 256px;
    height: 342px;
    overflow: hidden;
}

.image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.about-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.about-buttons .btn {
  text-decoration: none;
  padding: 15px 25px;
  background-color: #2e8b57; /* Deep green to match natural vibes */
  color: white;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.about-buttons .btn:hover {
  background-color: #246b45;
}
.about-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two per row */
  gap: 20px;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.about-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  padding: 20px;
  height: 100px;
  background-color: #2e8b57;
  color: white;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.about-buttons .btn:hover {
  background-color: #246b45;
}

.handwritten-note {
    font-family: 'Dancing Script', cursive;
    background: #fff9f4;
    border: 2px solid #f4c2c2;
    padding: 30px;
    max-width: 700px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
    transform: rotate(-1.2deg);
    font-size: 1.5rem;
    line-height: 1.7;
    color: #4a3b30;
    position: relative;
}
.handwritten-note::before {
    content: \"??\";
    font-size: 2rem;
    position: absolute;
    top: 10px;
    right: 20px;
}

