/* ===================================
   Custom Styles for Teman Jogja
   =================================== */

/* Hero Banner Section */
#hero-banner {
    min-height: 100vh;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
}

/* Hero Video Background */
#hero-banner .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Hero Overlay */
#hero-banner .bg-overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Brand Name */
.hero-brand-name {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 1200px;
    z-index: 10;
    margin-top: -80px;
    padding: 0 20px;
}

/* Hero Tagline */
.hero-tagline {
    font-size: clamp(1rem, 4vw, 2rem);
    font-weight: 300;
    letter-spacing: clamp(0.05em, 0.15em, 0.15em);
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 1200px;
    z-index: 10;
    margin-top: clamp(10px, 3vh, 20px);
    padding: 0 20px;
}

/* Hero Button Container */
.hero-button-container {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    margin-top: clamp(80px, 15vh, 120px);
    padding: 0 20px;
}

/* Hero Scroll Button */
.scroll-to-section {
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1.5rem, 4vw, 3rem);
    font-size: clamp(0.875rem, 2vw, 1.125rem);
}

.scroll-to-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ===================================
   PDF Download Section Styles
   =================================== */

.bg-gradient-light {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bg-gradient-light:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: rgba(59, 130, 246, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

/* Gap utility for flexbox */
.gap-2 {
    gap: 0.5rem;
}

/* Text sizing utilities */
.text-sm {
    font-size: 0.875rem;
}

.font-weight-500 {
    font-weight: 500;
}

/* Rounded pill button adjustments */
.btn.rounded-pill {
    transition: all 0.3s ease;
}

.btn-primary.rounded-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

/* Border opacity support for older browsers */
.border-opacity-20 {
    border-color: rgba(59, 130, 246, 0.2) !important;
}
