﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    color: #222;
    background: #fff;
    line-height: 1.7;
}

/* Common */
.container {
    margin: auto;
    padding: 20px 50px;
}

.container h2 {
    margin-top: -30px;
}

.section {
    padding: 80px 0 40px 0;
}

.gray {
    background: #f5f5f5;
}

h2 {
    font-size: 34px;
    margin-bottom: 25px;
    text-align: center;
}

.text {
    max-width: 800px;
    margin: 0 auto 15px;
    text-align: center;
    font-size: 16px;
}

/* Light Navbar for JPG Logo */
.header.light-navbar {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.nav-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    height: 130px;
    width: auto;
    object-fit: contain;
    background: #fff;
}

/* Brand name */
.brand-name {
    font-size: 28px;
    font-weight: 500;
    color: #313131;
}

/* Nav links */
.nav a {
    color: #111;
    margin-left: 26px;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 450;
    position: relative;
}

/* Hover underline */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #111;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Nav Toggle (Checkbox Hack) */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: #111;
    height: 2px;
    width: 24px;
    position: relative;
    border-radius: 2px;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {

    /* Brand name */
    .brand-name {
        font-size: 20px;
    }

    .brand-logo {
        height: 100px;
    }

    .nav-wrapper {
        padding: 0 20px;
        position: relative;
    }

    .nav-toggle-label {
        display: flex;
    }

    .nav {
        display: block;
        /* changed from default flex behavior if it was flex, but here nav a are inline by default */
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        width: 100%;
        border-top: 1px solid #eaeaea;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
        padding: 20px 0;
        z-index: 1000;
    }

    .nav a {
        display: block;
        margin: 0;
        padding: 12px 0;
    }

    .nav a::after {
        display: none;
        /* Remove underline effect on mobile for cleaner look */
    }

    /* Show menu when checked */
    .nav-toggle:checked~.nav {
        transform: scaleY(1);
    }
}

/* Hero */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url("assets//hero_img.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.55));
}

.hero-inner {
    position: relative;
    max-width: 800px;
    padding: 0 20px;
    margin-left: 8%;
    color: #fff;
}

/* Tag */
.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Headline */
.hero h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero h1 span {
    color: #e5e5e5;
}

/* Description */
.hero-text {
    font-size: 17px;
    max-width: 600px;
    margin-bottom: 30px;
    color: #ddd;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 45px;
}

.btn {
    padding: 12px 28px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn.primary {
    background: #fff;
    color: #000;
}

.btn.primary:hover {
    background: #eaeaea;
}

.btn.outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Meta Info */
.hero-meta {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
}

.hero-meta div {
    display: flex;
    flex-direction: column;
}

.hero-meta strong {
    font-size: 15px;
}

.hero-meta span {
    font-size: 13px;
    color: #bbb;
}


/* Cards */
.cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    width: 400px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.card h3 {
    margin-bottom: 10px;
}

/* Contact */
.contact-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #555;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-card h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 17px;
    color: #111;
}

.contact-card span {
    font-size: 14px;
    color: #666;
}

.contact-card a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer – Minimal Fashion Style */
.footer {
    background: #fff;
    border-top: 1px solid #eaeaea;
    margin-top: 80px;
}

.footer-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

/* Brand */
.footer-brand img {
    height: 160px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    color: #555;
}

/* Links */
.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 14px;
    text-decoration: none;
    color: #111;
    letter-spacing: 1px;
}

.footer-links a:hover {
    opacity: 0.6;
}

/* Contact */
.footer-contact p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #eaeaea;
    padding: 14px 0;
    font-size: 13px;
    color: #777;
    text-align: center;
}

/* Gallery */
.gallery-section {
    background: #f9f9f9;
}

.gallery-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    object-position: top;
}

ul {
    list-style: none;
}

ul li a {
    color: #ddd;
    text-decoration: none;
}

ul li a:hover {
    text-decoration: underline;
}


.quality-section {
    background: #fff;
}

.section-intro {
    max-width: 680px;
    margin: 10px auto 36px;
    text-align: center;
    color: #666;
    font-size: 15px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.quality-card {
    padding: 26px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fafafa;
    transition: 0.2s ease;
}

.quality-card:hover {
    border-color: #000;
    background: #fff;
}

.quality-card h3 {
    margin-bottom: 8px;
    font-size: 17px;
}

.quality-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}