@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

body.page-loaded {
    opacity: 1;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #e2e2e2; /* neutral light tone */
    color: #2b2b2b; /* dark gray text */
    scroll-behavior: auto; /* Lenis controls this */
}

header {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 10;
}

.navbar {
    background: transparent;
}

.logo-with-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: -10px;
}

.logo-with-image .stacked-logo {
    width: 100px;
    height: auto;
}

.logo-animated {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.logo-animated.visible {
    opacity: 1;
    transform: translateY(0);
}

header .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section:not(:first-child) {
    margin-top: 40px;
}

.divider-text {
    background-color: #505050;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.divider-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.divider-content p {
    font-size: 1.1rem;
    color: #2b2b2b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.our-work-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-background {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 0;
}

.panel {
    flex: 1;
}

.panel.left {
    background: #2B2B2B;
}

.panel.right {
    background: #A2B1C1;
}

.work-text {
    flex: 1;
    padding-right: 40px;
    color: #ffffff;
}

.work-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.work-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    padding: 0 20px;
}

.work-text h2 {
    font-size: 3rem;
    font-weight: 700;
}

.work-gallery {
    flex: 2;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    width: fit-content;
    animation: scrollGallery 40s linear infinite;
    scrollbar-width: none;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track.dragging {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.gallery-track img {
    width: 500px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: cover;
}

.menu-links .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-links .logo span {
    color: #c0b63e;
}

.menu-links .logo {
    font-size: 2.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.navbar .logo span{
    color: #c0b63e;
}

.navbar .mobile-logo {
    display: none;
}

.mobile-logo img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.mobile-logo.scrolled img {
    opacity: 0;
}

.navbar .menu-links {
    display: flex;
    gap: 40px;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.2 ease;
}

.navbar a:hover {
    color: #C06B3F;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('hero-bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-section .content {
    color: #fff;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-section .content h1{
    font-size: 3rem;
    max-width: 600px;
}

.hero-section .content p{
    font-weight: 300;
    margin-top: 15px;
    max-width: 600px;
}

.pricing-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}
  
.pricing-top {
    background: #181818;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
  
.pricing-top h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
  
.pricing-top .policy {
    color: #e0e0e0;
    font-size: 1rem;
    margin-top: 10px;
}
  
.pricing-top .note {
    font-size: 0.9rem;
    color: #c0b46c;
    margin-top: 2px;
}
  
.pricing-bottom {
    background: #eae7e2;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.pricing-card {
    background: url('https://www.transparenttextures.com/patterns/black-felt.png');
    padding: 50px;
    border: 1px solid #3d3d3d;
    max-width: 700px;
    width: 100%;
    color: #000000;
    font-family: 'Poppins', sans-serif;
}
  
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
  
.pricing-card li {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px dashed #444;
    transition: background 0.3s ease;
    border: none;
}
  
.pricing-card li:hover {
    background: #7b7b7b;
    color: white;
}
  
.pricing-card .works {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}
  
.pricing-card .works div {
    display: flex;
    flex-direction: column;
}
  
.pricing-card .discount {
    font-style: italic;
    color: #000000;
    font-weight: 500;
}

.find-us-section {
    display: flex;
    flex-direction: column;
    width: 100%;
}
  
.find-us-top {
    background: #ffffff;
    color: #2b2b2b;
    padding: 60px 20px;
    text-align: center;
}
  
.find-us-top h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}
  
.find-us-top p {
    font-size: 1.1rem;
    margin: 4px 0;
}

.map-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}
  
.find-us-divider {
    background: #888888; /* subtle shader tone */
    height: 20px;
    width: 100%;
}
  
.find-us-bottom {
    background: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;     /* Center items instead of spreading them */
    align-items: center;
    padding: 60px 20px;
    gap: 60px;                   /* Controls how close logo and hours are */
    flex-wrap: wrap;
    text-align: center;
}
  
.find-us-logo img {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
}
  
.find-us-hours h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
  
.find-us-hours p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

#menu-btn {
    color: #fff;
    cursor: pointer;
    display: none;
}

#menu-btn:hover {
    color: #C06B3F;
}

#close-menu-btn {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    color: #000000;
}

#close-menu-btn:hover {
    color: #C06B3F;
}

.slide-in-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(43, 43, 43, 0.95);
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    font-size: 0.8rem;
    text-align: center;
    gap: 10rem;
}

.slide-in-nav ul {
  display: flex;
  gap: 10px;
  list-style: none;
}

.slide-in-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.slide-in-nav a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    padding: 10px;
    position: relative;
}  

.slide-in-nav.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;  
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #2B2B2B;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #C06B3F;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

@media screen and (max-width: 850px){
    header.show-mobile-menu::before {
        content: "";
        position: fixed;
        left: 0;
        top:0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(5px);
    }

    header .navbar {
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .menu-links .logo-item {
        display: none;
    }

    .navbar .mobile-logo {
        display: block;
        padding-top: 10px;
        text-align: center;
    }

    .navbar .mobile-logo img {
        width: 120px;
        height: auto;
        display: inline-block;
    }

    .navbar .mobile-logo span {
        color: #c0b63e;
    }

    #close-menu-btn, #menu-btn {
        display: block;
    }

    .navbar .menu-links {
        position: fixed;
        left: -260px;
        top: 0;
        flex-direction: column;
        margin: auto;
        width: 260px;
        height: 100vh;
        background: #ffffff;
        padding: 70px 40px 0;
        transition: left 0.15s ease;
    }

    header.show-mobile-menu .navbar .menu-links { 
        left: 0;
    }

    .navbar a {
        color: #000;
    }

    .work-gallery {
        position: fixed;
        width: 100%;
        z-index: -1;
    }

    /* .work-gallery img {
        width: 50%;
    } */

    .hero-section .content {
        text-align: center;
    }
}
