/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Banner Section - Clean Display */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: var(--header-height-desktop);
}

.header.scrolled ~ .hero {
    margin-top: var(--header-height-scrolled);
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* Animation: Fade-in with Scale */
    opacity: 0;
    transform: scale(1.15);
    animation: fadeInScale 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: opacity, transform;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(1.15);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   COMPANY PHILOSOPHY SECTION - OPEN LAYOUT
   ============================================ */

.philosophy-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Background Decorative Ornaments - Low Opacity */
.philosophy-bg-ornament {
    position: absolute;
    pointer-events: none;
    opacity: 0.04;
}

.philosophy-bg-ornament-1 {
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    border-radius: 50%;
}

.philosophy-bg-ornament-2 {
    bottom: 15%;
    left: 8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    border-radius: 50%;
}

.philosophy-bg-ornament-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
}

/* Philosophy Wrapper - Open Layout with Premium Spacing */
.philosophy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    text-align: center;
}

/* Accent Badge - Floating */
.philosophy-badge {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: var(--white);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
}

/* Main Content Area - Open Layout */
.philosophy-content {
    position: relative;
    z-index: 5;
}

/* Title Wrapper - Editorial Luxury Style */
.philosophy-title-wrapper {
    position: relative;
    display: inline-block;
    margin: 60px 0 40px;
}

/* Quote Marks - Large Decorative Elements */
.philosophy-quote-mark {
    position: absolute;
    font-family: Georgia, serif;
    font-size: 180px;
    color: var(--primary-color);
    opacity: 0.05;
    line-height: 1;
    font-weight: 400;
}

.philosophy-quote-mark-left {
    top: -100px;
    left: -120px;
}

.philosophy-quote-mark-right {
    bottom: -120px;
    right: -120px;
}

/* Main Title - Focal Point with Editorial Style */
.philosophy-title {
    font-size: 120px;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 20px;
    text-transform: uppercase;
    position: relative;
    line-height: 1;
    margin: 0;
}

/* Subtle Title Accent */
.philosophy-title::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Elegant Separator - Premium Divider */
.philosophy-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: 60px auto 50px;
    max-width: 500px;
}

.separator-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.separator-ornament {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
    position: relative;
}

.separator-ornament::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

/* Description - Editorial Typography */
.philosophy-description {
    font-size: 20px;
    line-height: 2.2;
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Decorative Accents - Subtle Geometric Elements */
.philosophy-accent {
    position: absolute;
    pointer-events: none;
    opacity: 0.08;
}

.philosophy-accent-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.philosophy-accent-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.philosophy-accent-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Animation on Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN - OPEN LAYOUT
   ============================================ */

@media (max-width: 1024px) {
    .philosophy-section {
        padding: 100px 0;
    }
    
    .philosophy-wrapper {
        padding: 60px 30px;
    }
    
    .philosophy-title {
        font-size: 90px;
        letter-spacing: 15px;
    }
    
    .philosophy-quote-mark {
        font-size: 140px;
    }
    
    .philosophy-quote-mark-left {
        top: -80px;
        left: -90px;
    }
    
    .philosophy-quote-mark-right {
        bottom: -90px;
        right: -90px;
    }
    
    .philosophy-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        margin-top: var(--header-height-mobile);
    }
    
    .header.scrolled ~ .hero {
        margin-top: var(--header-height-mobile-scrolled);
    }
    
    .hero-banner {
        /* Same animation as desktop - Option 1: Fade-in with Scale */
        opacity: 0;
        transform: scale(1.15);
        animation: fadeInScale 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        will-change: opacity, transform;
    }
    
    .philosophy-section {
        padding: 80px 0;
    }
    
    .philosophy-wrapper {
        padding: 50px 20px;
    }
    
    .philosophy-title {
        font-size: 64px;
        letter-spacing: 10px;
    }
    
    .philosophy-quote-mark {
        font-size: 100px;
    }
    
    .philosophy-quote-mark-left {
        top: -60px;
        left: -70px;
    }
    
    .philosophy-quote-mark-right {
        bottom: -70px;
        right: -70px;
    }
    
    .philosophy-description {
        font-size: 16px;
        line-height: 2;
    }
    
    .philosophy-badge {
        font-size: 9px;
        padding: 6px 18px;
    }
    
    .philosophy-bg-ornament-1 {
        width: 300px;
        height: 300px;
    }
    
    .philosophy-bg-ornament-2 {
        width: 250px;
        height: 250px;
    }
    
    .philosophy-bg-ornament-3 {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }
    
    .hero-banner {
        /* Same animation as desktop - Option 1: Fade-in with Scale */
        opacity: 0;
        transform: scale(1.15);
        animation: fadeInScale 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        will-change: opacity, transform;
    }
    
    .philosophy-section {
        padding: 60px 0;
    }
    
    .philosophy-wrapper {
        padding: 40px 15px;
    }
    
    .philosophy-title {
        font-size: 48px;
        letter-spacing: 8px;
    }
    
    .philosophy-quote-mark {
        font-size: 80px;
    }
    
    .philosophy-quote-mark-left {
        top: -50px;
        left: -60px;
    }
    
    .philosophy-quote-mark-right {
        bottom: -60px;
        right: -60px;
    }
    
    .philosophy-description {
        font-size: 15px;
        line-height: 1.9;
    }
    
    .philosophy-separator {
        max-width: 300px;
        margin: 50px auto 40px;
    }
    
    .philosophy-badge {
        font-size: 8px;
        padding: 5px 15px;
        letter-spacing: 2px;
    }
    
    .philosophy-accent-left,
    .philosophy-accent-right {
        height: 150px;
    }
    
    .philosophy-accent-bottom {
        width: 200px;
    }
}

/* Mobile Landscape - Fix Hero Image Cropping */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-banner {
        /* Same animation as desktop - Option 1: Fade-in with Scale */
        opacity: 0;
        transform: scale(1.15);
        animation: fadeInScale 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        will-change: opacity, transform;
        object-position: center 30%;
    }
    
    .philosophy-section {
        padding: 40px 0;
    }
    
    .philosophy-wrapper {
        padding: 30px 20px;
    }
    
    .philosophy-title {
        font-size: 42px;
        letter-spacing: 6px;
    }
    
    .philosophy-quote-mark {
        font-size: 70px;
    }
    
    .philosophy-quote-mark-left {
        top: -40px;
        left: -50px;
    }
    
    .philosophy-quote-mark-right {
        bottom: -50px;
        right: -50px;
    }
    
    .philosophy-description {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .philosophy-separator {
        max-width: 250px;
        margin: 30px auto 25px;
    }
    
    .philosophy-badge {
        font-size: 7px;
        padding: 4px 12px;
        letter-spacing: 2px;
    }
}
