/*
Theme Name: Segue Custom Theme
Theme URI: https://segueyachts.com
Author: Antigravity
Author URI: https://google.com
Description: A custom pixel-perfect theme for Segue Yachts.
Version: 1.0
*/

/* Custom CSS moved from HTML head */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.shimmer-text {
    background: linear-gradient(90deg, #fff 0%, #c59f59 50%, #fff 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ocean-bg {
    background-image: url(Map-outline-Segue.webp);
    /* Updated path assumption if needed, or inline style */
    background-size: cover;
    background-position: center;
}

.trinity-col {
    transition: flex 1s cubic-bezier(0.22, 1, 0.36, 1);
    flex: 1;
    /* Default state for non-first items */
}

/* Container overrides */
.trinity-container:hover .trinity-col {
    flex: 1;
    /* Reset all when hovering container */
}

.trinity-container .trinity-col:hover {
    flex: 3 !important;
    /* Active item grows */
}

/* First Child Default State (when no interaction) */
.trinity-container:not(:hover) .trinity-col:first-child {
    flex: 3;
}

/* Content Visibility Transitions */
.trinity-col .col-content {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.7s ease-out;
}

.trinity-col:hover .col-content {
    opacity: 1;
    transform: translateY(0);
}

/* First child content visible by default */
.trinity-container:not(:hover) .trinity-col:first-child .col-content {
    opacity: 1;
    transform: translateY(0);
}

.trinity-col:hover .overlay-gradient {
    opacity: 0.4;
}

.trinity-col:hover .model-title {
    opacity: 0;
    transform: translateY(-20px);
}

/* First child title hidden by default */
.trinity-container:not(:hover) .trinity-col:first-child .model-title {
    opacity: 0;
    transform: translateY(-20px);
}

@keyframes ken-burns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.animate-ken-burns {
    animation: ken-burns 20s ease-out infinite alternate;
}

.accordion-content {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

.series-title {
    font-family: "Outfit", sans-serif;
    font-size: 5rem;
    line-height: 1;
    font-weight: 400;
    color: #b0b0b0;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
}

.legacy-title {
    font-family: "Outfit", sans-serif !important;
    font-size: 110px !important;
    line-height: 110px !important;
    font-weight: 300 !important;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.legacy-paragraph {
    font-family: "Outfit", sans-serif !important;
    font-size: 35px !important;
    line-height: 45px !important;
    font-weight: 300 !important;
}

.arrow-icon-refined {
    font-variation-settings: 'FILL' 0, 'wght' 200, 'grad' 0, 'opsz' 24 !important;
}

.accordion-item.active .series-title {
    color: #1a1a1a;
}

.coming-soon {
    font-size: 10px;
    color: #999;
    text-transform: lowercase;
    margin-top: -2px;
    display: block;
}

.model-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.model-link.disabled {
    color: #b0b0b0;
    cursor: not-allowed;
}

/* Video Lightbox Classes */
#video-lightbox {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#video-container iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}