/* High-End Heading Layouts - Layouts 10-15 */

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

.tp-high-end-layout-10::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-hero-section {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

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

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

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

.tp-hero-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-hero-button {
    margin-top: 2rem;
}

.tp-btn-primary {
    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-primary: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 11: Split Hero ===== */
.tp-high-end-layout-11 {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

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

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

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

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

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

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

.tp-btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tp-btn-secondary:hover {
    background: transparent;
    color: #1a1a1a;
}

/* ===== LAYOUT 12: Minimal Hero ===== */
.tp-high-end-layout-12 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    text-align: center;
}

.tp-minimal-hero {
    max-width: 800px;
    padding: 2rem;
}

.tp-minimal-title {
    font-size: 5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.tp-minimal-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.tp-minimal-description {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.tp-btn-minimal {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.tp-btn-minimal:hover {
    background: #1a1a1a;
    color: #fff;
}

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

.tp-high-end-layout-13::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-luxury-hero {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

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

.tp-luxury-title {
    font-size: 5rem;
    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-luxury-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tp-luxury-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-luxury-button {
    margin-top: 2rem;
}

.tp-btn-luxury {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.tp-btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* ===== LAYOUT 14: Modern Hero ===== */
.tp-high-end-layout-14 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    position: relative;
}

.tp-modern-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.tp-modern-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
    position: relative;
}

.tp-modern-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.tp-modern-subtitle {
    font-size: 2.5rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.tp-modern-description {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.tp-btn-modern {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, #667eea, #764ba2);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.tp-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

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

.tp-high-end-layout-15::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

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

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

.tp-ultimate-title {
    font-size: 6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

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

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

.tp-ultimate-button {
    margin-top: 2rem;
    position: relative;
    display: inline-block;
}

.tp-btn-ultimate {
    display: inline-block;
    padding: 1.5rem 4rem;
    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: 2px;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.tp-btn-ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tp-btn-ultimate:hover::before {
    left: 100%;
}

.tp-btn-ultimate:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tp-ultimate-arrow {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: arrowFloat 2s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(10px); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1200px) {
    .tp-hero-title, .tp-split-title, .tp-minimal-title, .tp-luxury-title, .tp-modern-title, .tp-ultimate-title {
        font-size: 3.5rem;
    }
    
    .tp-hero-subtitle, .tp-split-subtitle, .tp-minimal-subtitle, .tp-luxury-subtitle, .tp-modern-subtitle, .tp-ultimate-subtitle {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .tp-high-end-layout-11 {
        grid-template-columns: 1fr;
    }
    
    .tp-split-left, .tp-split-right {
        padding: 2rem;
    }
    
    .tp-hero-title, .tp-split-title, .tp-minimal-title, .tp-luxury-title, .tp-modern-title, .tp-ultimate-title {
        font-size: 2.5rem;
    }
    
    .tp-hero-subtitle, .tp-split-subtitle, .tp-minimal-subtitle, .tp-luxury-subtitle, .tp-modern-subtitle, .tp-ultimate-subtitle {
        font-size: 1.5rem;
    }
    
    .tp-hero-description, .tp-split-description, .tp-minimal-description, .tp-luxury-description, .tp-modern-description, .tp-ultimate-description {
        font-size: 1rem;
    }
    
    .tp-hero-section, .tp-luxury-hero, .tp-modern-hero, .tp-ultimate-hero {
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .tp-hero-title, .tp-split-title, .tp-minimal-title, .tp-luxury-title, .tp-modern-title, .tp-ultimate-title {
        font-size: 2rem;
    }
    
    .tp-hero-subtitle, .tp-split-subtitle, .tp-minimal-subtitle, .tp-luxury-subtitle, .tp-modern-subtitle, .tp-ultimate-subtitle {
        font-size: 1.2rem;
    }
    
    .tp-btn-primary, .tp-btn-secondary, .tp-btn-minimal, .tp-btn-luxury, .tp-btn-modern, .tp-btn-ultimate {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===== ANIMATION SUPPORT ===== */
.tp-high-end-layout-10, .tp-high-end-layout-11, .tp-high-end-layout-12, 
.tp-high-end-layout-13, .tp-high-end-layout-14, .tp-high-end-layout-15 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

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

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .tp-high-end-layout-10, .tp-high-end-layout-11, .tp-high-end-layout-12, 
    .tp-high-end-layout-13, .tp-high-end-layout-14, .tp-high-end-layout-15 {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .tp-ultimate-arrow {
        animation: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .tp-high-end-layout-10, .tp-high-end-layout-11, .tp-high-end-layout-12, 
    .tp-high-end-layout-13, .tp-high-end-layout-14, .tp-high-end-layout-15 {
        min-height: auto;
        background: #fff !important;
        color: #000 !important;
    }
    
    .tp-hero-title, .tp-split-title, .tp-minimal-title, .tp-luxury-title, .tp-modern-title, .tp-ultimate-title {
        color: #000 !important;
    }
}
