/* Premium Design System for One Business Office */

:root {
    --primary-gold: #c5a059;
    --dark-bg: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --premium-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Premium Utilities */
.premium-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--premium-shadow);
}

.glass-morphism {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, #000 0%, #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gallery Hover Effects */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Section Titles Enhancement */
.section-title-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-premium h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.section-title-premium .subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Center Page Base Styles */
.center-page { font-family: inherit; color: #333; }
.center-hero h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; color: #fff; text-transform: uppercase; }
.center-hero p { color: #fff; font-size: 1.6rem; margin-bottom: 0; }

.section-intro h2 { font-size: 3rem; font-weight: 900; margin-bottom: 30px; color: #000; text-transform: uppercase; }
.section-intro p { font-size: 1.6rem; color: #000; }

/* Micro-animations */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInSlideUp 0.8s ease forwards;
}

/* Specific Page Enhancements */


/* Hero Framed Look */
.golf-hero, .podcast-hero, .center-hero {
    border-radius: 40px;
    overflow: hidden;
    margin: 20px auto !important;
    width: 92%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-premium {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}
.btn-premium:hover {
    background: var(--primary-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* Utility: visible only on mobile */
@media all and (min-width: 1081px) {
    .mobile-only { display: none !important; }
}

/* Owl Carousel Premium Arrows */
.owl-carousel {
    position: relative;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    display: block !important; /* Ensure it's not hidden */
}

.owl-carousel .owl-nav button {
    pointer-events: auto;
    position: absolute;
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    color: #333 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer;
}

.owl-carousel .owl-nav button i {
    font-size: 24px;
    line-height: 1;
}

.owl-carousel .owl-nav button:hover {
    background: #c5a059 !important; /* Gold color */
    color: #fff !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4) !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 10px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 10px;
}

/* Dots hidden by default as requested */
.owl-carousel .owl-dots {
    display: none !important;
}

@media (max-width: 1300px) {
    .owl-carousel .owl-nav button.owl-prev {
        left: 10px;
    }
    .owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }
}
