@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: 20px 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: 13px;
        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: #A9A2A2; /* 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 */
    margin-left: 136px;
}

@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 1s 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: 60px 0;
    animation: slideDownMenu 1s ease-in-out forwards;
}

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

@keyframes slideDownMenu {
    from {
        top: -60px;
    }
    to {
        top: 0;
    }
}

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

/* Show the mobile logo only on mobile screens */
@media screen and (max-width: 768px) {
    .mobile-logo {
        display: block;
        text-align: left; /* Center-align the logo if necessary */
        margin-top: 0px; /* Add spacing around the logo */
        margin-left: 0px;
    }

    .mobile-logo img {
        max-width: 50px; /* Adjust the logo size for mobile */
        height: auto;
        margin-top: 0px:
    }
}

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

/* 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: 40px !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 */
    background: #242323; /* Menu background color */
    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: 0px 20px;
    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 */
}

/* Logo Styles */
.menu .logo {
    margin-right: auto; /* Pushes the menu items to the right */
    z-index: 1000;
}

.logo img {
    display: block; /* Ensures the image behaves as a block inside the link */
    max-height: 120px; /* Adjust to control logo size */
    margin-left: 130px; /* Shifts the entire menu 20px to the left */

}

/* 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: -10px; /* Spacing between main menu and submenu */
    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;
}

 .text-area {
         font-size: 14px; /* Adjust text size */
         line-height: 25px;
         margin-bottom: 30px;
         margin-left: 0px !important; /* <--Works! */
         color: #C7C7C7; /* Ensure text is visible */
         overflow: visible; /* Ensure text is not clipped */
         width: 100%; /* <--Works! */
    }
@media screen and (max-width: 768px) {
     .text-area {
         margin-bottom: 30px;
         margin-left: 0px !important; /* <--Works! */
         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-3: Masonry Gallery */
.layer-3 {
    position: relative; /* Ensure it's positioned relative to flow */
    margin-top: 20px; /* Add consistent margin */
    padding-left: 0px;
    display: flex;
    justify-content: center;
}

.image-people {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    width: 100%; /* Ensures container scales with grid */
    aspect-ratio: 3 / 4; /* Maintains 480x640 ratio */
    margin-left: 220px;
}
/* Start Image Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 2px; /* Spacing between images */
    margin-top: 30px;
    margin-bottom: 60px;
    padding-left: 200px;
    padding-right: 300px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1px;
    width: 100%; /* Ensures container scales with grid */
    aspect-ratio: 3 / 4; /* Maintains 480x640 ratio */
}

.image-container img {
    display: block;
    width: 80%; /* Fit container */
    height: 80%; /* Maintain ratio */
    object-fit: cover; /* Crop to fit without distortion */
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.1); /* Enlarge image on hover */
}

.image-description {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.image-container:hover .image-description {
    opacity: 1;
}
/* Start lookbook */
       .grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Two equal columns */
            gap: 20px; /* Spacing between grid items */
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }

        .grid-item {
            display: flex;
            align-items: center;
        }

        .grid-item img {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .grid-item .text-content {
            padding: 10px;
        }

        .grid-item h2 {
            font-size: 1rem;
            margin-bottom: 10px;
            color: #FFFFFF;
            margin-left: 0px;
        }

        .grid-item p {
font-size: 14px; /* Adjust text size */
         line-height: 25px;
         margin-bottom: 30px;
         margin-left: 0px !important; /* <--Works! */
         color: #C7C7C7; /* Ensure text is visible */
         overflow: visible; /* Ensure text is not clipped */
         width: 100%; /* <--Works! */
        }

        /* Alternate row layouts */
        .image-left {
            grid-column: 1 / 2; /* Image on the left */
        }

        .text-right {
            grid-column: 2 / 3; /* Text on the right */
        }

        .text-left {
            grid-column: 1 / 2; /* Text on the left */
        }

        .image-right {
            grid-column: 2 / 3; /* Image on the right */
        }
/* End lookbook */
/* 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: 10; /* Ensure it appears above other elements if needed */
}

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

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

.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;
}
/* PP buttons */
.pp-UES47DFT4P8E2 {
    text-align: center;
    border: none;
    border-radius: 0.25rem;
    min-width: 11.625rem;
    padding: 0 2rem;
    height: 2.625rem;
    font-weight: bold;
    background-color: #FFD140 !important;
    color: #000000 !important;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    cursor: pointer !important;
}

.pp-UES47DFT4P8E2 {
    border: 0px solid red !important; /* For testing visibility */
}
form {
    border: 0px solid blue !important; /* For testing visibility */
}
.image-description, form {
    position: relative;
    z-index: 10; /* Ensure it's on top */
}
.image-description {
    margin-bottom: 0px; /* Add spacing below description */
}
form {
    margin-top: 0px; /* Add spacing above form */
}
form {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent red */
    height: 50px; /* Temporary height */
    width: 100px; /* Temporary width */
    z-index: 9999; /* Force it to the top */
}
.image-container {
    position: relative;
    overflow: visible !important;
}
form {
    position: relative;
    z-index: 10;
}
.image-container {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
    gap: 1px; /* Spacing between items */
}

.image-description {
    margin-bottom: 0px; /* Add spacing below the description */
}

form.centered-button {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the button */
    gap: 5px; /* Add spacing between button elements */
}

