/* =============================================
   MOMENTIVE SILICONE PAGE STYLES
   ============================================= */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #2d3436;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.momentive-hero {
    min-height: 40vh;
    background-image: url('https://cdn.imweb.me/thumbnail/20250729/ec39ac9a39931.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 140px 30px 40px 30px;
    position: relative;
    overflow: hidden;
}

.momentive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.momentive-hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.momentive-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 25px 0;
    letter-spacing: 1px;
    line-height: 1.1;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.momentive-hero p {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

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


/* =============================================
   TABLET RESPONSIVE STYLES (769px - 1024px)
   ============================================= */

@media (min-width: 769px) and (max-width: 1024px) {
    /* Hero Section */
    .momentive-hero {
        min-height: 40vh;
        padding: 120px 40px 35px 40px;
    }

    .momentive-hero h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .momentive-hero p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* =============================================
   MOBILE RESPONSIVE STYLES (≤768px)
   ============================================= */

@media (max-width: 768px) {
    /* Hero Section */
    .momentive-hero {
        min-height: 35vh !important;
        padding: 100px 20px 30px 20px !important;
    }

    .momentive-hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .momentive-hero p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Content */
}

/* =============================================
   SMALL MOBILE RESPONSIVE (≤480px)
   ============================================= */

@media (max-width: 480px) {
    /* Hero */
    .momentive-hero {
        padding: 30px 15px;
    }

    .momentive-hero h1 {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .momentive-hero p {
        font-size: 15px;
    }

}

/* =============================================
   FOOTER MOBILE RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    footer {
        padding: 40px 0 30px 0 !important;
    }
    
    footer > div {
        padding: 0 20px !important;
    }
    
    footer > div > div:first-child {
        margin-bottom: 30px !important;
    }
    
    footer > div > div:first-child > div:first-child img {
        height: 40px !important;
        margin-right: 20px !important;
    }
    
    footer > div > div:first-child > div:first-child > div {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
    
    footer div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    footer h4 {
        font-size: 14px !important;
    }
    
    footer p {
        font-size: 12px !important;
        line-height: 1.6 !important;
    }
    
    footer span {
        font-size: 12px !important;
    }
    
    footer > div > div:last-child p {
        font-size: 11px !important;
    }
}
