@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #e91e63; /* Pink shade matching the logo's vibe */
    --secondary-color: #9c27b0; /* Purple accent */
    --dark-color: #6B46C1;
    --light-color: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(107, 70, 193, 0.85) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/login-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.4);
}

/* Features Section */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: #fff;
    border-radius: 0;
    padding: 0;
    margin-bottom: 30px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

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

.feature-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/11; /* More horizontal to fit the cards but enough height for screenshots */
    background: transparent;
    padding: 10px 10px 0 10px; /* Minimal padding at sides/top, none at bottom */
    display: flex;
    align-items: flex-start; /* Sit at the top to ensure visibility */
    justify-content: center;
}

.feature-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
    border-radius: 8px 8px 0 0; /* Rounded top corners only */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-card:hover .feature-img-wrapper img {
    transform: scale(1.05);
}

.feature-content {
    padding: 2rem;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Info Section (GDPR, etc.) */
.info-section {
    background: var(--light-color);
}

.info-box {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #6B46C1 0%, #4c2e91 100%);
    color: #fff;
    text-align: center;
}

/* Footer */
footer.bg-dark {
    background-color: var(--dark-color) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}
