/* ========================================
   Splendid Group - Home Page Styles
   Full-Width, Clean & Elegant
   ======================================== */

/* ========================================
   Hero Section - Full Screen Minimal
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.4) 0%, rgba(26, 26, 26, 0.35) 50%, rgba(10, 10, 10, 0.5) 100%),
        url('../images/home/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, transparent 30%, transparent 70%, rgba(10, 10, 10, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.diamond {
    font-size: 0.6rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: 'Playfair Display', var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.title-gold {
    color: var(--gold-primary);
    display: block;
    text-shadow: 0 0 60px rgba(191, 139, 53, 0.4);
}

.title-white {
    color: var(--white);
    display: block;
}

.hero-subtitle {
    font-family: 'Playfair Display', var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.subtitle-emphasis {
    color: var(--white);
    font-style: italic;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.tagline-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.tagline-line:last-child {
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.tagline-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
}

/* Scroll Indicator - Minimal */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold-primary);
    z-index: 2;
    text-decoration: none;
}

.scroll-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Hero Decoration - Hidden for cleaner look */
.hero-decoration {
    display: none;
}

/* ========================================
   About Section - Full Width Blocks
   ======================================== */
.about {
    background-color: var(--black-secondary);
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.about-block.our-story {
    background-color: var(--black-primary);
}

/* About Content */
.about-content {
    padding: 6rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    font-family: 'Inter', var(--font-body);
    font-size: 1.05rem;
    line-height: 2;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.founder-signature {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.signature-line {
    width: 40px;
    height: 1px;
    background-color: var(--gold-primary);
}

.signature-text {
    font-family: 'Playfair Display', var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold-primary);
}

/* About Image - Full Bleed */
.about-image {
    position: relative;
    overflow: hidden;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.image-frame:hover .about-img {
    transform: scale(1.03);
}

/* Frame Corners - Simplified */
.frame-corner {
    display: none;
}

/* ========================================
   Details Section - Full Background Overlay
   ======================================== */
.details-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.details-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: transform 0.5s ease;
}

.details-section:hover .details-bg {
    transform: scale(1.02);
}

.details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    transition: background 0.5s ease;
}

.details-section:hover .details-overlay {
    background: rgba(10, 10, 10, 0.55);
}

.details-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 6rem 4rem;
    text-align: center;
}

.details-title-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.details-title-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.quote-mark {
    font-family: 'Playfair Display', var(--font-display);
    font-size: 5rem;
    color: var(--gold-primary);
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.details-section:hover .quote-mark {
    opacity: 0.8;
}

.details-title {
    font-family: 'Playfair Display', var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: text-shadow 0.5s ease;
}

.details-section:hover .details-title {
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
}

.details-title .gold {
    color: var(--gold-primary);
}

.details-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.details-text-item {
    font-family: 'Inter', var(--font-body);
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.8s ease, color 0.3s ease;
}

.details-section:hover .details-text-item {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

/* Slide animations */
.details-text-item.slide-left {
    transform: translateX(-80px);
}

.details-text-item.slide-right {
    transform: translateX(80px);
}

.details-text-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delays */
.details-text-item:nth-child(1) {
    transition-delay: 0.2s;
}

.details-text-item:nth-child(2) {
    transition-delay: 0.4s;
}

.details-text-item:nth-child(3) {
    transition-delay: 0.6s;
}

.details-text-item.highlight {
    color: var(--gold-primary);
    font-style: italic;
    padding: 1.5rem 2rem;
    background: rgba(191, 139, 53, 0.1);
    border-left: 3px solid var(--gold-primary);
    border-right: 3px solid var(--gold-primary);
}

.details-section:hover .details-text-item.highlight {
    color: var(--gold-light);
    background: rgba(191, 139, 53, 0.15);
}

/* ========================================
   Services Section - Full Width
   ======================================== */
.services {
    padding: 8rem 0;
    background-color: var(--black-primary);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
    position: relative;
}

.services-bg-pattern {
    display: none;
}

.services-title {
    font-family: 'Playfair Display', var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.services-title .white {
    color: var(--white);
}

.services-title .gold {
    color: var(--gold-primary);
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    letter-spacing: 0.05em;
}

.services-subtitle .gold {
    color: var(--gold-primary);
}

/* Core Services - Full Width Grid */
.services-core {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 0;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 600px;
}

.service-card:hover .card-bg {
    transform: scale(1.08);
}

.service-card:hover .card-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.service-card::after {
    display: none;
}

.service-card-wide {
    grid-column: 1 / 2;
}

.service-card-square {
    grid-column: 2 / 3;
}

.service-card-tall {
    grid-column: 3 / 4;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.land-bg {
    background: linear-gradient(135deg, var(--black-tertiary) 0%, #1a1815 100%);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    transition: background-color 0.5s ease;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Playfair Display', var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-primary);
    opacity: 0.5;
}

.card-title {
    font-family: 'Playfair Display', var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.card-desc {
    font-family: 'Inter', var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    max-width: 450px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 1rem;
}

/* Extended Services - Clean Grid */
.services-extended {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--gold-muted);
}

.extended-card {
    padding: 4rem 3rem;
    background-color: var(--black-secondary);
    border-right: 1px solid var(--gold-muted);
    text-align: center;
    transition: background-color 0.3s ease;
}

.extended-card:last-child {
    border-right: none;
}

.extended-card:hover {
    background-color: var(--black-tertiary);
}

.extended-card:hover .extended-icon {
    color: var(--gold-primary);
}

.extended-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 2rem;
    color: var(--gray-medium);
    transition: color 0.3s ease;
}

.extended-icon svg {
    width: 100%;
    height: 100%;
}

.extended-title {
    font-family: 'Playfair Display', var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.extended-desc {
    font-family: 'Inter', var(--font-body);
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--gray-medium);
}

/* ========================================
   Press Section - Full Width Elegant
   ======================================== */
.press-section {
    padding: 8rem 2rem;
    background: var(--black-primary);
    position: relative;
}

.press-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.press-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.press-header {
    margin-bottom: 5rem;
}

.press-title {
    font-family: 'Playfair Display', var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.press-title .gold {
    color: var(--gold-primary);
}

.press-subtitle {
    font-size: 1rem;
    color: var(--gray-medium);
    letter-spacing: 0.1em;
}

.press-items {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4rem;
    flex-wrap: wrap;
}

.press-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.press-item.featured {
    transform: scale(1.08);
}

.press-item.featured .magazine-img {
    box-shadow: 0 20px 50px rgba(191, 139, 53, 0.3);
}

.press-info {
    text-align: center;
}

.press-name {
    font-family: 'Playfair Display', var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold-primary);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.press-date {
    font-size: 0.85rem;
    color: var(--gray-medium);
    font-weight: 300;
}

.press-magazine {
    position: relative;
    overflow: hidden;
}

.magazine-img {
    width: 200px;
    height: auto;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.magazine-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.6s ease;
}

.press-item:hover .magazine-shine {
    left: 100%;
}

.press-item:hover .magazine-img {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(191, 139, 53, 0.25);
}

.press-item:hover {
    z-index: 10;
}

/* Partners Section - Clean Bar */
.partners-container {
    max-width: 1200px;
    margin: 6rem auto 0;
    padding: 4rem;
    background: var(--black-secondary);
    border: 1px solid var(--gold-muted);
    position: relative;
}

.partners-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--gold-primary);
}

.partners-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.partners-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-logo {
    transition: all 0.3s ease;
    padding: 1.25rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
}

.partner-logo:hover {
    transform: scale(1.05);
    background-color: #ffffff;
    box-shadow: 0 5px 25px rgba(191, 139, 53, 0.2);
}

.partner-img {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Legacy styles for compatibility */
.image-placeholder,
.placeholder-content,
.placeholder-icon,
.placeholder-text,
.quote-block,
.quote-decoration,
.featured-quote,
.vision-block,
.vision-text,
.cta-section,
.cta-bg-pattern,
.cta-content,
.cta-title,
.cta-subtitle,
.cta-buttons,
.cta-line {
    display: none;
}

/* ========================================
   Responsive - Full Width Design
   ======================================== */
@media (max-width: 1200px) {
    .services-core {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-card {
        min-height: 450px;
    }
    
    .service-card-wide {
        grid-column: 1 / 3;
    }
    
    .service-card-square {
        grid-column: 1 / 2;
    }
    
    .service-card-tall {
        grid-column: 2 / 3;
    }
    
    .about-content {
        padding: 5rem 6%;
    }
}

@media (max-width: 992px) {
    .about-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .about-image {
        min-height: 50vh;
        order: 1;
    }
    
    .about-content {
        order: 2;
        padding: 4rem 6%;
    }
    
    .details-content-wrapper {
        padding: 4rem 2rem;
    }
    
    .details-title-block {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .details-text-item.slide-left,
    .details-text-item.slide-right {
        transform: translateY(40px);
    }
    
    .details-text-item.visible {
        transform: translateY(0);
    }
    
    .services-extended {
        grid-template-columns: 1fr;
    }
    
    .extended-card {
        border-right: none;
        border-bottom: 1px solid var(--gold-muted);
    }
    
    .extended-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }
    
    .hero-tagline {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .tagline-line {
        width: 40px;
    }
    
    .about-content {
        padding: 3rem 5%;
    }
    
    .details-bg {
        background-attachment: scroll;
    }
    
    .details-content-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .details-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .details-text-item {
        font-size: 1rem;
    }
    
    .details-text-item.highlight {
        padding: 1rem 1.5rem;
    }
    
    .services {
        padding: 5rem 0;
    }
    
    .services-core {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .service-card-wide,
    .service-card-square,
    .service-card-tall {
        grid-column: 1 / 2;
        min-height: 400px;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .card-title {
        font-size: 1.75rem;
    }
    
    .extended-card {
        padding: 3rem 2rem;
    }
    
    .press-section {
        padding: 5rem 1.5rem;
    }
    
    .press-items {
        gap: 2rem;
    }
    
    .press-item.featured {
        transform: scale(1);
    }
    
    .magazine-img {
        width: 150px;
    }
    
    .partners-container {
        padding: 2.5rem 1.5rem;
        margin: 4rem 1rem 0;
    }
    
    .partners-logos {
        gap: 1.5rem;
    }
    
    .partner-logo {
        padding: 1rem;
    }
    
    .partner-img {
        height: 45px;
        max-width: 150px;
    }
}

