

/* Global Styles */
:root {
    --primary-color: #4E62E4;
    --primary-dark: #3A4BC7;
    --primary-light: #6B7BEA;
    --light-gray: #666666;
    --lighter-gray: #999999;
    --off-white: #f5f5f5;
    --text-dark: #4E62E4;
    --text-light: #ffffff;
    --shadow: rgba(78, 98, 228, 0.15);
}

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

/* Hide Facebook Pixel */
.fb-pixel-img {
    display: none !important;
}

body {
    font-family: 'Noto Serif TC', serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background-color: #ECEEFE;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ECEEFE;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--primary-color);
    pointer-events: none;
    z-index: 10;
    opacity: 0.4;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(236, 238, 254, 0) 0%, rgba(78, 98, 228, 0.05) 100%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
    padding: 2rem;
}

.logo {
    width: 280px;
    height: auto;
    margin-bottom: 3rem;
    filter: drop-shadow(0 2px 10px rgba(78, 98, 228, 0.25));
    animation: logoFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:focus {
    outline: none;
}

.brand-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(78, 98, 228, 0.15);
    animation: fadeInUp 1.2s ease 0.2s both;
}

.hero-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--primary-dark);
    margin-bottom: 3.5rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.02em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}



.cta-button {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    font-weight: 400;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Noto Serif TC', serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button:focus {
    outline: none;
}

.cta-button:active {
    outline: none;
    transform: translateY(-1px);
}



/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
}

/* Company Info Section */
.company-info {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ECEEFE 0%, #F8F8FF 100%);
    text-align: center;
}

.company-name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.company-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Interior Section */
.interior-section {
    padding: 4rem 0 5rem;
    background: #F8F8FF;
    text-align: center;
}

.interior-image-wrapper {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.interior-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(78, 98, 228, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interior-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(78, 98, 228, 0.2);
}

.interior-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--light-gray);
    margin-top: 2rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #F8F8FF 0%, #ECEEFE 100%);
    text-align: center;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.line-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(78, 98, 228, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.line-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(78, 98, 228, 0.15);
}

.line-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #F0FFF0;
    border-radius: 50%;
    flex-shrink: 0;
}

.line-icon svg {
    width: 40px;
    height: 40px;
}

.line-info {
    text-align: left;
}

.line-label {
    font-size: 0.9rem;
    color: var(--lighter-gray);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.line-id {
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.line-button {
    display: inline-block;
    background: #00C300;
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.line-button:hover {
    background: #00A300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 195, 0, 0.3);
}

/* Mobile Responsive for Contact Section */
@media (max-width: 768px) {
    .line-contact {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .line-info {
        text-align: center;
    }
    
    .line-id {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero::after {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .logo {
        width: 180px;
        margin-bottom: 2.5rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        padding: 0 1.5rem;
        letter-spacing: 0.02em;
        font-weight: 400;
    }
    
    .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }
}