/* Custom styles extending Tailwind CSS */
:root {
    --brand-teal: #0ab9bb;
    --brand-gold: #c5a059;
    --dark-teal: #089395;
    --brand-dark: #1a202c;
    --bg-light: #f7fafc;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2d3748;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.font-serif-custom {
    font-family: 'Roboto', sans-serif;
}

.text-teal {
    color: var(--brand-teal);
}

.bg-teal {
    background-color: var(--brand-teal);
}

.hover\:bg-dark-teal:hover {
    background-color: var(--dark-teal);
}

.text-gold {
    color: var(--brand-gold);
}

.bg-gold {
    background-color: var(--brand-gold);
}

.border-gold {
    border-color: var(--brand-gold);
}

/* Gradients */
.hero-bg {
    background: linear-gradient(135deg, #f2fbfb 0%, #ffffff 100%);
}

.gradient-dark-teal {
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--dark-teal) 100%);
}

/* Animations & Transitions */
.cta-button {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(10, 185, 187, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 185, 187, 0.5);
}

.benefit-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.img-hover-effect {
    transition: all 0.5s ease;
}

.img-hover-effect:hover {
    transform: scale(1.02);
}

/* Pulse animation for CTA & play buttons */
@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.pulse-element::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 3px solid var(--brand-teal);
    border-radius: 9999px;
    animation: pulse-ring 2s infinite ease-out;
}

.pulse-element-gold::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 3px solid var(--brand-gold);
    border-radius: 9999px;
    animation: pulse-ring 2s infinite ease-out;
}

/* Video Placeholder Styling */
.video-placeholder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border: 4px solid white;
}

.video-placeholder-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--brand-teal);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--dark-teal);
}

.video-play-btn svg {
    margin-left: 5px; /* Offset to center the triangle visually */
}

/* Glassmorphism background */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Smooth Form inputs */
input:focus {
    box-shadow: 0 0 0 3px rgba(10, 185, 187, 0.25);
}

/* Countdown Styles */
.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(10, 185, 187, 0.3);
    backdrop-filter: blur(4px);
}
