/* About Heading High-End Layouts - Layouts 3-5 */

/* ===== LAYOUT 3: About Hero ===== */
.tp-about-layout-3 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.tp-about-layout-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.tp-about-hero {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.tp-about-icon {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.tp-about-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.tp-about-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tp-about-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tp-about-button {
    margin-top: 2rem;
}

.tp-btn-about {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tp-btn-about:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== LAYOUT 4: About Split ===== */
.tp-about-layout-4 {
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.tp-about-left {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    color: #fff;
}

.tp-about-right {
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    color: #1a1a1a;
}

.tp-about-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.tp-about-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.tp-about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.tp-about-button {
    margin-top: auto;
}

/* ===== LAYOUT 5: About Luxury ===== */
.tp-about-layout-5 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #0c0c0c 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.tp-about-layout-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
}

.tp-about-luxury {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.tp-about-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.tp-about-main-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.tp-about-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tp-about-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tp-about-button {
    margin-top: 2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1200px) {
    .tp-about-main-title {
        font-size: 3rem;
    }
    
    .tp-about-subtitle {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .tp-about-layout-4 {
        grid-template-columns: 1fr;
    }
    
    .tp-about-left, .tp-about-right {
        padding: 2rem;
    }
    
    .tp-about-main-title {
        font-size: 2.5rem;
    }
    
    .tp-about-subtitle {
        font-size: 1.5rem;
    }
    
    .tp-about-description {
        font-size: 1rem;
    }
    
    .tp-about-hero, .tp-about-luxury {
        padding: 2rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .tp-about-main-title {
        font-size: 2rem;
    }
    
    .tp-about-subtitle {
        font-size: 1.2rem;
    }
    
    .tp-btn-about {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===== ANIMATION SUPPORT ===== */
.tp-about-layout-3, .tp-about-layout-4, .tp-about-layout-5 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* ===== HOVER EFFECTS ===== */
.tp-about-icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .tp-about-layout-3, .tp-about-layout-4, .tp-about-layout-5 {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .tp-about-layout-3, .tp-about-layout-4, .tp-about-layout-5 {
        min-height: auto;
        background: #fff !important;
        color: #000 !important;
    }
    
    .tp-about-main-title, .tp-about-subtitle {
        color: #000 !important;
    }
}
