/* Landing Page Custom CSS Framework (Playo Inspired) */

:root {
    --brand-primary: #00d289; /* Playo/Modern Green */
    --brand-primary-dark: #00a66c;
    --brand-dark: #1f2937;
    --brand-light: #f8fafc;
    --brand-gray: #64748b;
    --brand-gray-light: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--brand-light);
    color: var(--brand-dark);
}

/* --- Dynamic Navbar --- */
.navbar-landing {
    transition: all 0.4s ease;
    padding: 1.5rem 0;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar-landing.scrolled {
    background: white;
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: none;
}
.navbar-landing .nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s;
}
.navbar-landing .nav-link:hover {
    color: var(--brand-primary) !important;
}
.navbar-landing.scrolled .nav-link {
    color: var(--brand-dark) !important;
}
.navbar-landing.scrolled .nav-link:hover {
    color: var(--brand-primary) !important;
}
.navbar-landing .navbar-brand {
    color: white !important;
}
.navbar-landing.scrolled .navbar-brand {
    color: var(--brand-primary) !important;
}

.btn-brand-primary {
    background-color: var(--brand-primary);
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}
.btn-brand-primary:hover {
    background-color: var(--brand-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 137, 0.4);
}

.btn-brand-outline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}
.btn-brand-outline:hover {
    background-color: white;
    color: var(--brand-dark);
}
.navbar-landing.scrolled .btn-brand-outline {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}
.navbar-landing.scrolled .btn-brand-outline:hover {
    background-color: var(--brand-primary);
    color: white;
}

/* --- Hero Section --- */
.hero-wrapper {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1518605368461-1ee7e168ae08?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}
.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    letter-spacing: -1px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
}

/* --- Floating Search Box --- */
.hero-search-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.hero-search-input {
    background: transparent;
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    width: 100%;
    font-size: 1.1rem;
    outline: none;
}
.hero-search-input::placeholder {
    color: rgba(255,255,255,0.7);
}
.hero-search-btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
}

/* --- Features Grid (Playo style circles) --- */
.feature-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    font-size: 2rem;
    color: var(--brand-primary);
}
.feature-wrapper:hover .feature-circle {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 210, 137, 0.2);
    background: var(--brand-primary);
    color: white;
}
.feature-title {
    font-weight: 600;
    color: var(--brand-dark);
}

/* --- Section Headings --- */
.section-title {
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: var(--brand-gray);
    font-size: 1.1rem;
}

/* --- Venue Cards --- */
.venue-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--brand-gray-light);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    cursor: pointer;
}
.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: transparent;
}
.venue-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.venue-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.venue-card:hover .venue-image-wrapper img {
    transform: scale(1.08);
}
.venue-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}
.venue-price-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--brand-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,210,137,0.3);
    z-index: 2;
}
.venue-details {
    padding: 1.8rem 1.25rem 1.25rem;
}
.venue-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.venue-location {
    color: var(--brand-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

/* --- Mobile App Section --- */
.app-section {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.app-mockup {
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 8px solid #374151;
    transform: rotate(-10deg) translateY(20px);
    max-width: 100%;
}
.store-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: black;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    transition: transform 0.2s;
    font-weight: 600;
}
.store-btn:hover {
    transform: translateY(-3px);
}

/* --- Standardize Media --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-search-box { flex-direction: column; border-radius: 16px; padding: 1rem; }
    .hero-search-input { margin-bottom: 1rem; text-align: center; }
    .hero-search-btn { width: 100%; border-radius: 8px; }
    .app-mockup { transform: rotate(0) translateY(0); margin-top: 2rem; }
}
