@charset "UTF-8";
/* General Reset */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    /* border: 1px solid red; */
}

body {
    font-family: 'Poppins', 'Helvetica Neue Thin', sans-serif; /* Prioritize Poppins, fallback to Helvetica Neue */
    font-weight: 200; /* Retain thin text style */
    height: 100%; /* Ensure full height */
    overflow-y: auto; /* Allow vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background-color: black; /* Consistent background color */
    color: white;
}

a {
    text-decoration: none;
    color: inherit;
}

/* H1 Style */
h1 {
    font-family: 'Poppins', sans-serif; /* Modern, clean font */
    font-size: 1.4rem; /* Large, prominent text */
    font-weight: 200; /* Bold text */
    color: #E1DEDE; /* Dark gray for readability */
    text-transform: uppercase; /* Converts text to uppercase */
    letter-spacing: 2px; /* Adds space between letters */
    text-align: left; /* Center-aligns text */
    margin: 60px 0; /* Adds spacing above and below */
    line-height: 1.2; /* Improves readability */
}

    @media screen and (max-width: 768px) { /* For iPhone 13 Pro & 13 Pro Max */
    h1 {
        font-size: 20px;
        color: white !important;
    }
}

/* H2 Style */
h2 {
    font-family: 'Poppins', sans-serif; /* Modern, clean font */
    font-size: 1rem; /* Large, prominent text */
    font-weight: 200; /* Bold text */
    color: #E1DEDE; /* Dark gray for readability */
    text-transform: uppercase; /* Converts text to uppercase */
    letter-spacing: 2px; /* Adds space between letters */
    text-align: left; /* Center-aligns text */
    margin: 20px 0; /* Adds spacing above and below */
    line-height: 1.2; /* Improves readability */
}

@media screen and (max-width: 428px) { /* For iPhone 13 Pro & 13 Pro Max */
.h2 {
    font-size: 0.8rem; /* Large, prominent text */
    margin-top: 50px;
    }
}
/* H3 Style */
h3 {
    font-family: 'Poppins', sans-serif; /* Modern, clean font */
    font-size: 0.9rem; /* Large, prominent text */
    font-weight: 300; /* Bold text */
    color: #E1DEDE; /* Dark gray for readability */
    text-transform: none; /* Converts text to uppercase */
    letter-spacing: 2px; /* Adds space between letters */
    text-align: left; /* Center-aligns text */
    margin: 10px 0; /* Adds spacing above and below */
    line-height: 1.2; /* Improves readability */
}

iframe {
    pointer-events: auto;
}

/* Fade-in animation on pageload */
.fade-in {
    opacity: 0; /* Start fully transparent */
    animation: fadeInEffect 0.5s ease-in forwards; /* Smooth fade-in effect */
}

@keyframes fadeInEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Layer-1: Header Menu */
.layer-1 {
    /*position: fixed; --> Conflicts with scrolling*/
    top: 0px;
    width: 100%;
    background-color: transparent;
    color: white;
    z-index: 1200;
    padding: 0px 0;
    animation: slideDownMenu 1s ease-in-out forwards;
}

@media screen and (max-width: 428px) { /* For iPhone 13 Pro & 13 Pro Max */
    .layer-1 {
    padding: 0px;;
    background-color: transparent;
    }
}

/* Hide the mobile logo by default */
.mobile-logo {
    display: none;
}

/* Ensure desktop menu remains unaffected */
.desktop-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent; /* Match the menu background */
    padding: 10px 20px;
}

.desktop-menu a {
    white-space: nowrap;
  }

/* General Menu Styles */
.menu {
    display: flex;
    justify-content: center; /* Center horizontally */
    margin-left: -170px; /* Shifts the entire menu 20px to the left */
    height: 0.7vh; /* Full viewport height for centering */
    width: 98%;
    background-color: transparent;
    z-index: 1000;
}

.menu ul {
    list-style: none;
    display: flex;
    margin-top: 60px !important;
    width: 100%;
    align-items: center; /* Aligns logo and menu items vertically */
    align-content: center;
    padding: 1px;
    margin: 150px;
    justify-content: flex-start; /* Align items to the left */
    z-index: 1000;
}

.menu li {
    position: relative;
    margin-top: 10px;
    margin: 0 0px; /* Spacing between menu items */
    z-index: 1250;
}

.menu a {

    font-size: 14px;
    color: #fff;
    padding: 20px 25px;
    margin-bottom: 24px;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    transition: color 0.5s ease; /* Smooth color change on hover */
    text-shadow: 4px 4px 4px rgba(1, 1, 0, 1);
    z-index: 1000;
}

.menu a:hover {
    color: #9D9D9D; /* Change to your desired hover text color */
}

.menu-container {
    position: relative;
  }
  
  .menu-container::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100vw; /* Full viewport width */
    height: 1px;   /* Adjust thickness as needed */
    background-color: rgb(50, 50, 50); /* Adjust color as needed */
    z-index: 1;    /* Ensure it sits behind menu items */
  }
  
/* Logo Styles */
.menu .logo {
    margin-right: auto; /* Pushes the menu items to the right */
    z-index: 1000;
}

.logo {
  transition: filter 0.4s ease;
}

.logo:hover {
  filter: brightness(2.2);
}

.logo img {
    display: block; /* Ensures the image behaves as a block inside the link */
    max-height: 100px; /* Adjust to control logo size */
    margin-left: 130px; /* Shifts the entire menu 20px to the left */
    margin-top: 30;
    filter: drop-shadow(0 18px 10px rgba(0.1, 0.1, 0, 0.4));
}

/* Remove hover effects for the logo link */
.logo a {
    text-decoration: none; /* Remove underline */
    color: #333; /* Ensure link inherits current color */
}

.logo a:hover {
    color: inherit; /* Prevent color change on hover */
    text-decoration: none; /* Prevent underline on hover */
}

/* Optional: Prevent hover effect on the image itself */
.logo a img {
    display: block; /* Ensure proper layout */
    transition: none; /* Disable any transition effects */
}

.logo a img:hover {
    filter: none; /* Ensure no visual changes on hover */
}

/* Submenu Styles */


.menu li ul.submenu {
    position: absolute;
    top: 0%; /* Position below the parent menu item */
    left: 0;
    background: #444444; /* Submenu background color */
    background-color: rgba(0, 0, 0, 0.5); /* Background opacity */
    display: none; /* Hidden by default */
    list-style: none;
    padding: 8px;
    margin: 0;
    z-index: 12; /* Ensure it appears above other elements */
    width: 270px;
}

.menu li:hover ul.submenu {
    display: block; /* Show submenu when hovering over parent item */
    z-index: 1210;
}

.menu li ul.submenu li {
    margin: 3px 0; /* Spacing between submenu items */
    z-index: 1210;
}

.menu li ul.submenu a {
    color: #fff;
    padding: 5px 10px;
    margin-top: -30px; /* Spacing between main menu and submenu */
    margin-bottom: 30px;
    text-decoration: none;
    display: block; /* Makes submenu links clickable */
    text-transform: none; /* Keeps submenu text as-is */
    z-index: 1210;
}

.menu li ul.submenu a:hover {
    background: #666; /* Highlight submenu item on hover */
    z-index: 1210;
}

.layer-2 {
    width: 95%;
    color: #A0A0A0;
    text-align: left !important;
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
    font-size: 13px; /* Adjust text size */
    line-height: 1.7; /* Improve readability */
    max-width: 1200px; /* Optional: Restrict maximum width */
    margin: 0 auto; /* Center the layer horizontally */
    margin-top: -10px;
    margin-left: 40px !important;
    display: flex;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
    position: relative !important;
}

@media screen and (max-width: 428px) { /* For iPhone 13 Pro & 13 Pro Max */
    .layer-2 {
        margin-left: 20px !important; /* questionable! */
    }
}
 .text-area {
         font-size: 14px; /* Adjust text size */
         line-height: 25px;
         margin-left: 0px !important; /* <--Works! */
         margin-top: 60px;
         color: #C7C7C7; /* Ensure text is visible */
         overflow: visible; /* Ensure text is not clipped */
         width: 100%; /* <--Works! */
    }
    @media screen and (max-width: 768px) { 
     .text-area { 
        font-size: 16px; /* Adjust text size */
         margin-bottom: 10px;
         margin-left: 0px !important; /* <--Works! */
         margin-top: -20px;
         color: #C7C7C7; /* Ensure text is visible */
         overflow: visible; /* Ensure text is not clipped */
         width: 100%; /* <--Works! */
    }
}
/* Layer-2: Text Area */
@keyframes slideDownText {
    from {
        top: 20px;
        opacity: 0;
    }
    to {
        top: 80px;
        opacity: 1;
    }
}
.layer-220s {
    position: relative;
    top: 0px; /* Positioned below the menu */
    width: 89%;
    padding: 20px;
    color: #000;
    text-align: left !important;
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
    font-size: 13px; /* Adjust text size */
    line-height: 1.7; /* Improve readability */
    width: 100%; /* Adjust width as needed */
    max-width: 1200px; /* Optional: Restrict maximum width */
    margin: 0 auto; /* Center the layer horizontally */
    margin-top: 20px;
}

    @media screen and (max-width: 428px) { /* For iPhone 13 Pro & 13 Pro Max */
.layer-220s {
    padding: 15px;
    }
}

.layer-3a {
    position: relative;
    top: 160px; /* Positioned below the menu */
    width: 89%;
    padding: 20px;
    color: #000;
    text-align: left !important;
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
    font-size: 13px; /* Adjust text size */
    line-height: 1.7; /* Improve readability */
    width: 80%; /* Adjust width as needed */
    max-width: 1200px; /* Optional: Restrict maximum width */
    margin: 0 auto; /* Center the layer horizontally */
    margin-top: 20px;
}

/* Layer-3a: Text Area */
.layer-3a {
    position: relative;
    top: -100px;
    background: #000000;
    padding: 20px;
    color: #DAD2D2;
    text-align: center;
    animation: slideDownText 1.8s ease-in-out 0.5s forwards;
}

/* Layer-3: Masonry Gallery */
.layer-3 {
    position: relative; /* Ensure it's positioned relative to flow */
    margin-top: 80px; /* Add consistent margin */
    padding-left: 0px;
    display: flex;
    justify-content: center;
}

    @media screen and (max-width: 768px) { /* For iPhone 13 Pro & 13 Pro Max */
    .layer-3 {
        }
    
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 10px; /* Spacing between images */
    max-width: 1200px;
    width: 100%;
}

@media screen and (max-width: 428px) { /* For iPhone 13 Pro & 13 Pro Max */
.gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 1 equal column */
    gap: 10px; /* Spacing between images */
    width: 100%;
    }
}

.gallery img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Maintain aspect ratio while cropping */
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Classes for dynamic sizes */
.gallery img.tall {
    grid-row: span 1; /* Spans 1 rows */
}

.gallery img.wide {
    width: 800px;
    grid-column: span 2; /* Spans 2 columns */
}

.gallery img.large {
    grid-column: span 2; /* Spans 2 columns */
    grid-row: span 2; /* Spans 2 rows */
}

.gallery img.square {
    grid-row: span 1; /* Default size */
    width: 300px;
}

.gallery img.vertical {
    width: 400px;
    grid-row: span 2; /* Tall vertical image spans 3 rows */
}


/* Hover Effects */
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Layer-4: Page Transition */
.layer-4 {
    position: fixed;
    top: 0;
    left: -100%; /* Start off-screen to the left */
    width: 100%;
    height: 100%;
    background: black; /* Background color */
    z-index: 20; /* On top of other elements */
    transition: left 0.5s cubic-bezier(0.8, 0.4, 0.1, 1); /* Smooth slide-in transition */
}

.layer-4.active {
    left: 0; /* Fully visible */
}


/* Transition layer Slide-in animation */
.layer-4.slide-in {
    animation: slideIn 1s ease-in-out forwards;
}

/* Slide-out animation (optional if needed) */
.layer-4.slide-out {
    animation: slideOut 1s ease-in-out forwards;
}

/* Keyframe animations */
@keyframes slideIn {
    from {
        left: -100%; /* Start off-screen */
    }
    to {
        left: 0; /* Fully visible */
    }
}

@keyframes slideOut {
    from {
        left: 0; /* Fully visible */
    }
    to {
        left: 100%; /* Move off-screen to the right */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .gallery {
        column-count: 1;
    }
}

/* Arrow styles for enlarged photo navigation */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    z-index: 35;
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

.overlay img {
    transition: transform 0.3s ease;
}

.overlay img:hover {
    transform: scale(1.05); /* Subtle zoom on hover */
}

.footer {
    position: fixed; /* Sticks the footer to the bottom */
    bottom: 0;
    left: 0;
    width: 100%; /* Full width across the page */
    background: #000000; /* Footer background color */
    color: #fff; /* Text color */
    text-align: center; /* Center-align the text */
    padding: 15px 0; /* Padding for spacing */
    font-family: "Poppins", serif; /* Menu font */
    font-size: 10px; /* Adjust font size */
    z-index: 2000; /* Ensure it appears above other elements if needed */
}
/* Style for the Facebook group link */
/* Ensure vertical alignment for the link */
.facebook-group-link {
    display: flex;
    align-items: center; /* Vertically aligns icon and text */
    text-decoration: none;
    color: #4267B2; /* Facebook Blue */
    padding: 10px 15px;
    transition: color 0.3s ease;
    line-height: 1; /* Ensure consistent line height */
}

/* Hover effect */
.facebook-group-link:hover {
    color: #EDEDED; /* Darker blue on hover */
}

/* Facebook icon styling */
.facebook-icon {
    width: 20px; /* Adjust size as needed */
    height: 20px;
    margin-right: 10px;
    vertical-align: middle; /* Align icon vertically with text */
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    color: white;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
}

    .footer-text {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px; /* Space between text and icon */
        margin: 0;
    }

    .footer-icon {
        display: inline-block;
        text-decoration: none;
    }

    .fb-footer-logo {
        width: 13px; /* Adjust the size as needed */
        height: 13px;
        margin-left: 80px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        filter: brightness(0.8) invert(0); /* Makes it white for dark backgrounds */
    }

    .footer-icon:hover .fb-footer-logo {
        transform: scale(1.1); /* Slight zoom effect on hover */
        opacity: 0.7; /* Slight dim effect on hover */
    }

.footer-left {
    text-align: left;
    font-size: 0.7rem;
    font-weight: 300;
    color: white;
}

.footer-center {
    text-align: center;
    flex-grow: 1;
    font-size: 0.7rem;
    position: relative;
}

.footer-center a {
    margin-left: 10px;
}

.footer-icon img.fb-footer-logo {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/* BACKGROUND -------------------------------------- */

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.background-slide.active {
    transform: translateY(0);
}

/* HAMBURGER MENU ---------------------------------- */

.hamburger-menu {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: grey;
    margin: 5px 0;
    transition: background-color 0.3s ease;
}

.hamburger-menu:hover span {
    background-color: lightgrey;
}

/* MOBILE MENU ------------------------------------- */

.mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: rgba(0, 0, 0, 0.76);
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-container.show {
    display: block;
    transform: translateX(0);
}

.mobile-menu-container ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    margin-top: -10px;
}

.mobile-menu-container ul li {
    margin: 1px 0;
    text-align: left;
}

.mobile-menu-container ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 80px;
    font-size: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-container ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* SUBMENU ----------------------------------------- */

.sub-menu {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin: 10px 0;
}

.sub-menu.show {
    display: block;
}

.sub-menu li a {
    font-size: 1em;
    text-decoration: none;
    color: white;
    display: block;
    padding: 5px 0;
}

.sub-menu li a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* NON-CLICKABLE ----------------------------------- */

.non-clickable {
    color: white;
    font-size: 1em;
    padding: 10px 80px;
    display: block;
    cursor: pointer;
}

/* MENU OVERLAY ------------------------------------ */

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.menu-overlay.show {
    display: block;
}

/* LAYERS ------------------------------------------ */

.layer-1 {
    padding: 0;
}

/* FOOTERS (DEFAULT HIDDEN) ------------------------ */

.footer-mobile,
.footer-desktop {
    
}
