/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    opacity: 0;
   /* Set initial opacity to 0 */
    transform: translateY(20px);
   /* Set initial position for animation */
    transition: opacity 1s ease, transform 1s ease;
   /* Animation timing */
}


/* Fade-in active class */
body.fade-in {
    opacity: 1;
    transform: translateY(0);
}
.image-banner {
    width: 100%;
}
.header {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    height: 220px;
   /* Set the desired height of the header */
    overflow: hidden;
}
.header img {
    max-width: 400px;
   /* 150px + 30% increase */
    height: 250px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: block;
}
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
   /* Optional: Adjust transparency */
}


/* Navbar Styles */
.navbar {
    background-color: #ffffff;
   /* White background */
    color: #000000;
   /* Black text color */
    display: flex;
    justify-content: center;
   /* Center the navbar links */
    align-items: center;
    padding: 10px 0;
   /* Reduced padding for a compact look */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   /* Optional: Add a subtle shadow for depth */
}
.navbar a {
    color: #000000;
   /* Black text color for links */
    text-decoration: none;
   /* Remove underline from links */
    font-size: 1rem;
   /* Set font size */
    font-weight: bold;
   /* Make text bold */
    margin: 0 20px;
   /* Space between links */
    text-transform: uppercase;
   /* Make text uppercase */
}
.navbar a:hover {
    color: #007bff;
   /* Change link color on hover (optional) */
    background-color: #f5f5f5;
   /* Light gray background on hover (optional) */
    border-radius: 5px;
   /* Add border radius on hover for smoothness */
}


/* Styling for the inactive "Ask Henny" button */
.ask-henny {
    background-color: #d3d3d3;
   /* Light gray */
    color: #888888;
   /* Darker gray text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: not-allowed;
    margin-top: 10px;
    opacity: 0.7;
}
.ask-henny:hover {
    background-color: #c0c0c0;
   /* Slightly darker on hover for visual feedback */
}


/* Hamburger menu icon */
.menu-icon {
    display: none;
   /* Hidden by default;
    only show on smaller screens */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    position: relative;
    z-index: 2;
}
.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000000;
}


/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
   /* Hide the menu by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.fullscreen-menu.active {
    display: flex !important;
   /* Show the menu when active */
}


/* Fullscreen Menu Items */
.fullscreen-menu ul {
    list-style: none;
   /* Remove bullets */
    padding: 0;
   /* Remove padding */
    margin: 0;
   /* Remove margin */
    text-align: center;
   /* Center align text */
}
.fullscreen-menu ul li {
    margin: 20px 0;
   /* Add vertical spacing between items */
}
.fullscreen-menu ul li a {
    color: #fff;
   /* White text */
    text-decoration: none;
   /* Remove underline */
    font-size: 2rem;
   /* Large font size */
    font-weight: bold;
   /* Make text bold */
    transition: color 0.3s ease;
   /* Smooth hover effect */
}
.fullscreen-menu ul li a:hover {
    color: #007bff;
   /* Blue hover color */
}


/* Close Icon */
.fullscreen-menu .close-icon {
    position: absolute;
   /* Position relative to the menu */
    top: 20px;
   /* Distance from the top */
    right: 20px;
   /* Distance from the right */
    font-size: 2rem;
   /* Large icon */
    color: white;
   /* White color */
    cursor: pointer;
   /* Pointer cursor */
}


/* Show menu icon and hide navbar items on smaller screens */
@media (max-width: 768px) {
    .navbar a {
        display: none;
       /* Hide navbar links */
   }
    .menu-icon {
        display: flex;
       /* Show hamburger icon */
   }
}


/* Fullscreen menu active state */
.fullscreen-menu.active {
    transform: scale(1);
}


/* Other Content Styles */
.banner, .products-section, .publication-section, .footer {
    padding: 30px;
    text-align: center;
}
.banner img, .products-section img {
    width: 100%;
    height: auto;
}


/* Google Maps Full Width Styling */
.google-maps {
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.google-maps iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.footer-links a:hover {
    text-decoration: underline;
}
.social-media {
    margin: 20px 0;
}
.social-media a {
    margin: 0 10px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}
.social-media a:hover {
    color: #007bff;
}
.copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #fff;
}
.logo img {
    width: 150px;
   /* Adjust the logo size */
    margin-top: 20px;
}


/* Products Section */
.products-section {
    position: relative;
    padding: 30px;
    text-align: center;
    color: #fff;
    overflow: hidden;
   /* Ensures content doesn't exceed section boundaries */
}
.products-section h2, .products-section p {
    position: relative;
   /* Ensures text is above the video background */
    z-index: 2;
}


/* Video Background for Products Section */
.products-section .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
   /* Adjust opacity for better text readability */
}


/* Product Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
   /* Ensures grid content is above the video */
    z-index: 2;
}


/* Product Item */
.product {
    background-color: rgba(51, 51, 51, 0.8);
   /* Semi-transparent background for readability */
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    position: relative;
}
.product img {
    width: 100%;
    border-radius: 8px;
}
.product .product-title {
    font-size: 1rem;
    margin: 10px 0;
    color: #000000;
}
.add-to-cart {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.add-to-cart:hover {
    background-color: #0056b3;
}


/* Section Styles with Portrait Video Background */
.video-bio-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    color: #fff;
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
   /* Ensure the background video stays behind the content */
}
.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
   /* Make sure the video covers the entire background */
}
.content-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.portrait-video-container {
    flex: 1;
    max-width: 45%;
   /* Adjust portrait video container width */
    margin-right: 10px;
   /* Space between video and bio */
    text-align: center;
}
.portrait-video {
    width: 359px;
   /* Fixed width for the portrait video */
    height: 638px;
   /* Fixed height for the portrait video */
    border-radius: 10px;
    object-fit: cover;
}
.bio-container {
    flex: 1;
    max-width: 50%;
   /* Adjust bio container width */
    padding-left: 10px;
    text-align: left;
}
.bio-container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.bio-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.cta-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.cta-button:hover {
    background-color: #0056b3;
}


/* Popup Styles */
.popup {
    display: none;
   /* Hidden by default */
    position: fixed;
   /* Fixed position for responsiveness */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
   /* Semi-transparent background */
    z-index: 1000;
   /* Ensure it appears above other content */
    align-items: center;
   /* Center content vertically */
    justify-content: center;
   /* Center content horizontally */
}
.popup.active {
    display: flex;
   /* Show the popup when active */
}
.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
   /* Adjust width for responsiveness */
    width: 400px;
   /* Limit the width for larger screens */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}
.popup-content h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
   /* Adjust font size */
}
.popup-content p {
    margin: 10px 0;
    font-size: 1rem;
   /* Adjust paragraph font size */
}
.popup-image {
    max-width: 100%;
    height: auto;
   /* Maintain aspect ratio */
    margin: 15px 0;
    border-radius: 8px;
}
.popup-button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.popup-button:hover {
    background-color: #333;
}
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    background: none;
    border: none;
}
.close-button:hover {
    color: #000;
}


/* Responsive Design */
@media (max-width: 768px) {
    .popup-content {
        max-width: 90%;
       /* Take up more width on smaller screens */
        padding: 15px;
       /* Reduce padding */
   }
    .popup-content h2 {
        font-size: 1.2rem;
       /* Adjust heading font size */
   }
    .popup-content p {
        font-size: 0.9rem;
       /* Adjust paragraph font size */
   }
    .popup-button {
        font-size: 0.9rem;
       /* Adjust button size */
        padding: 8px 16px;
       /* Adjust padding */
   }
}
@media (max-width: 480px) {
    .popup-content {
        padding: 10px;
       /* Reduce padding for very small screens */
        border-radius: 8px;
       /* Smaller corners */
   }
    .popup-content h2 {
        font-size: 1rem;
       /* Reduce font size further */
   }
    .popup-content p {
        font-size: 0.8rem;
       /* Reduce paragraph font size further */
   }
    .popup-button {
        font-size: 0.8rem;
       /* Smaller button text */
        padding: 6px 12px;
       /* Adjust padding */
   }
    .close-button {
        font-size: 1.2rem;
       /* Smaller close button */
   }
}


/* Ticker Styles */
.ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0040ff;
   /* Dark background for contrast */
    color: #fff;
   /* White text */
    font-size: 1rem;
    padding: 10px 0;
    text-align: center;
    z-index: 999;
   /* Ensure the ticker stays on top */
    overflow: hidden;
   /* Hide the overflow for smooth scrolling */
}
.ticker p {
    margin: 0;
    padding: 0;
    white-space: nowrap;
    animation: tickerAnimation 15s linear infinite;
}
@keyframes tickerAnimation {
    0% {
        transform: translateX(100%);
   }
    100% {
        transform: translateX(-100%);
   }
}


/* Separate Product Section Styling */
.products-section-two {
    position: relative;
    padding: 30px 15px;
    text-align: center;
    color: #000;
    background-color: #f8f8f8;
 }
 
 .products-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
 }
 
 .products-section-two p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #000000;
 }
 
 .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
 }
 
 .product {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
 }
 
 .product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
 }
 
 .product-title {
    font-size: 1rem;
    margin: 10px 0;
    font-weight: bold;
    color: #333;
 }
 
 .add-to-cart {
    display: inline-block;
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
 }
 
 .add-to-cart:hover {
    background-color: #0056b3;
 }
 
