/* Fashion Design - Core Styles */
:root {
    /* Color Palette - Elegant & Modern */
    --primary-black: #1a1a1a;
    --accent-gold: #c5a059;
    --text-dark: #2d2d2d;
    --text-muted: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;

    /* Typography */
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    --font-chinese-cute: 'ZCOOL KuaiLe', sans-serif;
    --font-cute: 'Fredoka', sans-serif;

    /* Spacing & Utilities */
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --spacing-lg: 5rem;
    --spacing-md: 2.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0;
    position: relative;
}

.section-title h2::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 192, 203, 0.3);
    z-index: -1;
    border-radius: 4px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-size: 1.8rem;
    text-transform: none;
    color: var(--primary-black);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
    }

    .nav-logo {
        height: 40px;
        width: 40px;
    }
}

.nav-logo {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links a {
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-muted);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-black);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--primary-black);
    height: 3px;
    width: 30px;
    position: relative;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 10px;
}

.nav-toggle-label span::after {
    top: 10px;
}

/* Responsive Nav */
@media (max-width: 992px) {
    .nav-toggle-label {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--bg-light);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--bg-light);
    }

    .nav-links a {
        display: block;
        padding: 1.2rem 8%;
        text-align: left;
        font-size: 1.1rem;
    }

    .nav-toggle:checked~.nav-links {
        max-height: 100vh;
        visibility: visible;
        padding: 1rem 0;
    }

    .nav-toggle:checked~.nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked~.nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* --- Sections --- */
.section {
    padding: var(--spacing-lg) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
}

/* --- Hero --- */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 120px 0 5rem;
    /* 增加頂部間距避開 NavBar */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--primary-black);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 50%;
    border: 15px solid white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* --- Footer --- */
.footer {
    background-color: var(--primary-black);
    color: var(--bg-white);
    padding: var(--spacing-lg) 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section p,
.footer-section a {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #666;
}

/* Page Specifics */
.page-header {
    padding: 150px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-container {
    padding: var(--spacing-lg) 0;
    max-width: 800px;
    margin: 0 auto;
}

.content-card {
    background: white;
    padding: 4rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

/* Service Section Overrides */
#services {
    background-color: #fff9f0 !important;
    padding: 8rem 0;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 3rem !important;
    margin-top: 4rem !important;
}

.service-card {
    background: white !important;
    padding: 3.5rem 2.5rem !important;
    border-radius: 40px !important;
    /* 超圓潤框框 */
    text-align: center !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06) !important;
    transition: var(--transition) !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
}

.service-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 60px rgba(255, 182, 193, 0.2) !important;
}

.service-icon {
    font-size: 4rem !important;
    margin-bottom: 2rem !important;
    display: block !important;
}

.service-card h3 {
    font-family: var(--font-chinese-cute), var(--font-heading) !important;
    font-size: 1.8rem !important;
    color: #8b5e3c !important;
    margin-bottom: 1.2rem !important;
}

.service-card p {
    font-size: 1.1rem !important;
    color: var(--text-muted) !important;
    line-height: 1.8 !important;
}

.section-title h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 10% !important;
    width: 80% !important;
    height: 10px !important;
    background: rgba(255, 192, 203, 0.5) !important;
    border-radius: 20px !important;
}

/* Spotlight Boxes */
.spotlight-box {
    padding: 2.5rem;
    border-radius: 25px;
    margin: 2rem 0;
    line-height: 1.8;
    position: relative;
    overflow: hidden;
}

.spotlight-pink {
    background-color: #fff5f6;
    border-left: 10px solid #ffccd5;
}

.spotlight-yellow {
    background-color: #fffdf0;
    border-left: 10px solid #ffd93d;
}

.guarantee-section-title {
    font-family: var(--font-chinese-cute), var(--font-heading);
    font-size: 2.2rem;
    color: #8b5e3c;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.guarantee-section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 182, 193, 0.6),
            rgba(255, 182, 193, 0.6) 8px,
            transparent 8px,
            transparent 16px);
}

.page-container-wide {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

/* --- About Section Features --- */
.feature-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    color: #8b5e3c;
    font-weight: 600;
    flex-wrap: wrap;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 3rem;
        text-align: center;
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-text p {
        margin: 0 auto 2rem;
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-image img {
        max-width: 250px;
        border-width: 8px;
    }

    .feature-list span {
        flex: 0 0 calc(50% - 1.5rem);
        min-width: fit-content;
        font-size: 1rem;
        text-align: center;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .page-header {
        padding: 120px 0 40px !important;
    }

    .page-header h1 {
        font-size: 2.2rem !important;
    }

    .content-card {
        padding: 2rem !important;
        border-radius: 20px !important;
    }

    .page-container-wide {
        padding: 3rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .feature-list {
        gap: 0.8rem;
    }

    .feature-list span {
        flex: 0 0 100%;
        font-size: 1.1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }
}