@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&display=swap');

:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-blue: #2c3d9b;
    --color-orange: rgba(249, 127, 18, 0.9);
    --color-footer-gradient: linear-gradient(90deg, rgb(255, 199, 122) 0%, rgb(193, 230, 206) 100%);
    --font-main: 'Sora', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.4;
    overflow-x: hidden;
}

/* Typography */
h1 { font-size: 55px; font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: 30px; font-weight: 400; line-height: 1.2; }
p { font-size: 15px; font-weight: 400; line-height: 1.6; color: #333; }

/* Header */
header {
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo svg {
    width: 40px;
    height: auto;
}

.header-logo span {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    font-weight: 600;
}

.btn-contact {
    background: #000;
    color: #fff;
    padding: 10px 30px;
    border-radius: 0;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.btn-contact:hover {
    opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: inset 0 0 100px rgba(44, 61, 155, 0.1); /* Subtle blue glow */
}

.mobile-nav.active {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 50px;
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
    font-weight: 200;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-links a {
    text-decoration: none;
    color: #000;
    font-size: 32px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.mobile-social {
    margin-top: 60px;
    display: flex;
    gap: 30px;
}

.mobile-social a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    width: 100%;
    position: relative;
    background-color: #f4f4f4;
    background-image: url('heroimg.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end; /* Positioned at bottom */
    padding-bottom: 50px;
    padding-left: 50px;
}

.orange-box {
    background: var(--color-orange);
    width: 426px;
    height: 421px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-20%);
    left: 10%;
    z-index: 10;
}

.orange-box hr {
    width: 50px;
    border: none;
    border-top: 2px solid #000;
    margin-bottom: 20px;
}

.orange-box h1 {
    font-size: 55px;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1200px;
    width: 100%;
    gap: 30px;
    align-items: start;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Staggered offsets to match source */
.gallery-item:nth-child(2) { margin-top: 100px; }
.gallery-item:nth-child(3) { margin-top: 200px; }

.gallery-item img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

.gallery-item h3 { font-size: 18px; font-weight: 400; }

.read-more {
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

/* Footer */
footer {
    background: var(--color-footer-gradient);
    padding: 60px 50px 30px;
    color: #000;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon span {
    width: 14px;
    height: 14px;
    background: #fff;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 600;
}

.footer-shield {
    width: 200px;
    height: auto;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-contact h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-contact a {
    color: #000;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.footer-links a {
    font-size: 13px;
    color: #000;
    text-decoration: none;
}

.footer-bottom {
    padding-top: 20px;
    font-size: 12px;
    opacity: 0.8;
    text-align: left;
    max-width: 1400px;
    margin: 0 auto;
}

/* Showcase Section Refined */
.showcase-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 551px;
    max-width: 1280px;
    margin: 0 auto 90px;
    background: #fff;
    overflow: hidden;
}

.showcase-left {
    position: relative;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('showcase_staircase.jpg');
    background-size: cover;
    background-position: center;
}

.showcase-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.showcase-content {
    position: relative;
    z-index: 2;
    max-width: 471px;
}

.black-line {
    width: 471px;
    height: 2px;
    background: #000;
    margin-bottom: 30px;
}

.showcase-content p {
    font-size: 27.09px;
    line-height: 32.51px;
    font-weight: 400;
    color: #000;
    margin: 0;
    font-family: 'Sora', sans-serif;
}

.showcase-right {
    background-image: url('showcase_closet.jpg');
    background-size: cover;
    background-position: center;
}

/* Animations - Progressive Enhancement */
.reveal {
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

/* Only hide if JS is active and has initialized the reveals */
.js-active .reveal {
    opacity: 0;
    transform: translateY(30px);
}

.js-active .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.whatsapp-float img {
    width: 60px;
}

@media (max-width: 1000px) {
    header {
        padding: 20px 30px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 600px;
        padding-left: 30px;
    }

    .orange-box {
        left: 30px;
        width: 380px;
        padding: 40px;
    }

    .orange-box h1 {
        font-size: 40px;
    }
}

@media (max-width: 750px) {
    h1 { font-size: 40px; }
    h2 { font-size: 24px; }

    .about-section {
        padding: 60px 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(n) {
        margin-top: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ceo-row {
        grid-template-columns: 1fr;
    }

    .ceo-image {
        width: 100%;
        height: auto;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-section {
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 20px;
    }

    .header-logo span {
        font-size: 14px;
    }

    .orange-box {
        width: calc(100% - 40px);
        left: 20px;
        height: auto;
        top: 60%;
    }

    .showcase-v2 {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-right {
        height: 300px;
    }

    .showcase-left {
        padding: 40px 20px;
    }

    .black-line {
        width: 100%;
    }

    .hero {
        padding-left: 0;
        background-position: 30% center;
    }
}
