/* =========================================
   PREMIUM HERO SECTION - LUXURY DESIGN
   ========================================= */

/* Hero Section Container */
.gt-hero-premium {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #1c1c1c 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
}

/* Decorative Background Elements */
.gt-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(170, 132, 83, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.gt-hero-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(170, 132, 83, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Content Area */
.hero-premium-content {
    position: relative;
    z-index: 10;
    padding-right: 40px;
}

/* Welcome Text */
.hero-premium-welcome {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #D4AF37;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: 'Gilda Display', serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-premium-welcome::before {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #AA8453 100%);
}

.hero-premium-welcome img {
    width: 0px;
    height: auto;
}

/* Premium Title */
.hero-premium-title {
    font-family: 'Gilda Display', serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1.15;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Premium Description */
.hero-premium-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 40px;
    font-family: 'Gilda Display', serif;
}

/* CTA Buttons */
.hero-premium-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Gilda Display', serif;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 180px;
}

.hero-premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
    z-index: -1;
}

.hero-premium-btn:hover::before {
    left: 100%;
}

/* Primary Button */
.hero-premium-btn-primary {
    background: linear-gradient(135deg, #AA8453 0%, #D4AF37 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(170, 132, 83, 0.3);
}

.hero-premium-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

/* Secondary Button */
.hero-premium-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-premium-btn-secondary:hover {
    background: linear-gradient(135deg, #AA8453 0%, #D4AF37 100%);
    transform: translateY(-2px);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 25px rgba(170, 132, 83, 0.6);
}

/* Image Container with Skewed Effect */
.hero-premium-image-wrapper {
    position: relative;
    z-index: 5;
    padding: 20px 0 20px 40px;
}

.hero-premium-image-container {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin-left: auto;
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
    transition: transform 0.6s ease;
}

.hero-premium-image-container:hover {
    transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
}

/* Golden Border Frame */
.hero-premium-image-frame {
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, #AA8453 0%, #D4AF37 50%, #AA8453 100%);
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    box-shadow:
        0 10px 40px rgba(170, 132, 83, 0.3),
        0 0 80px rgba(170, 132, 83, 0.1);
}

/* Image Inner Container */
.hero-premium-image-inner {
    position: relative;
    overflow: hidden;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    background: #000;
}

.hero-premium-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.95) contrast(1.05);
}

.hero-premium-image-container:hover .hero-premium-image-inner img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

/* Decorative Corner Accent */
.hero-premium-accent {
    position: absolute;
    bottom: 30px;
    right: 40px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(170, 132, 83, 0.4);
    border-left: none;
    border-top: none;
    z-index: 10;
    pointer-events: none;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Fade In Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply Animations */
.hero-premium-welcome {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-premium-title {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-premium-description {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-premium-buttons {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-premium-image-container {
    animation: fadeInRight 1s ease-out 0.5s both;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Extra Large Screens */
@media (min-width: 1400px) {
    .hero-premium-title {
        font-size: 4.5rem;
    }

    .hero-premium-image-wrapper {
        padding-left: 60px;
    }
}

/* Large Screens */
@media (max-width: 1399px) {
    .hero-premium {
        padding: 100px 0 60px;
    }

    .hero-premium-title {
        font-size: 3.5rem;
    }

    .hero-premium-image-container {
        max-width: 650px;
    }
}

/* Medium Screens - Tablets */
@media (max-width: 1199px) {
    .hero-premium {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-premium-content {
        padding-right: 20px;
        margin-bottom: 40px;
    }

    .hero-premium-title {
        font-size: 3rem;
    }

    .hero-premium-image-wrapper {
        padding: 0;
    }

    .hero-premium-image-container {
        max-width: 100%;
        transform: perspective(1200px) rotateY(-2deg) rotateX(0.5deg);
    }
}

/* Small Tablets */
@media (max-width: 991px) {
    .hero-premium {
        padding: 60px 0 40px;
    }

    .hero-premium-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-premium-welcome,
    .hero-premium-description {
        text-align: center;
    }

    .hero-premium-welcome::before {
        display: none;
    }

    .hero-premium-description {
        max-width: 100%;
    }

    .hero-premium-buttons {
        justify-content: center;
    }

    .hero-premium-image-container {
        margin: 0 auto;
        max-width: 600px;
        transform: perspective(1000px) rotateY(-1deg);
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .hero-premium {
        padding: 40px 0 30px;
    }

    .hero-premium-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-premium-welcome {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .hero-premium-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-premium-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-premium-btn {
        width: 100%;
        padding: 16px 24px;
        min-width: auto;
    }

    .hero-premium-image-container {
        max-width: 100%;
        transform: none;
        margin-top: 40px;
    }

    .hero-premium-image-frame {
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    }

    .hero-premium-image-inner {
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    }

    .hero-premium-accent {
        display: none;
    }
}

/* Extra Small Devices */
@media (max-width: 575px) {
    .hero-premium-title {
        font-size: 1.75rem;
    }

    .hero-premium-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-premium-btn {
        padding: 14px 20px;
        font-size: 13px;
    }
}

/* =========================================
   ACCESSIBILITY & PERFORMANCE
   ========================================= */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    .hero-premium-image-container,
    .hero-premium-btn,
    .hero-premium-image-inner img {
        transition: none;
        animation: none;
    }

    .hero-premium-welcome,
    .hero-premium-title,
    .hero-premium-description,
    .hero-premium-buttons {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {

    .hero-premium-title,
    .hero-premium-description {
        text-shadow: none;
    }

    .hero-premium-btn-primary {
        border: 2px solid #AA8453;
    }
}