/* Modern Landing Page Styles inspired by monday.com */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body.landing-page {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;

    /* Spinner Theme Overrides to match landing page branding */
    --spinner-color-1: #B08D68;
    --spinner-color-2: #C9AD8D;
    --spinner-color-3: #E0CEB5;
    --spinner-overlay-bg: rgba(255, 255, 255, 0.9);
}

/* Navbar */
.landing-navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.landing-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.landing-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.landing-brand:hover {
    color: #2c3e50;
}

.nav-link-custom {
    font-weight: 500;
    color: #333;
    margin: 0 10px;
    transition: color 0.2s;
}

.nav-link-custom:hover {
    color: #B08D68;
}

.btn-landing-primary {
    background-color: #B08D68;
    color: white;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.btn-landing-primary:hover {
    background-color: #9A7B5B;
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(176, 141, 104, 0.3);
}

.btn-landing-outline {
    background-color: transparent;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-landing-outline:hover {
    border-color: #333;
    background-color: transparent;
    color: #333;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #2c3e50, #B08D68);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    width: 100%;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

/* Features */
.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.feature-box {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(176, 141, 104, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #B08D68;
    font-size: 1.5rem;
}

/* Pricing */
.pricing-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-header {
    padding: 2rem;
    background-color: white;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-body {
    padding: 2rem;
    background-color: white;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
}

.price-period {
    color: #999;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: #2ecc71;
    margin-right: 10px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

/* Footer */
.landing-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: white;
}

/* Auth Pages - Simplified */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    width: 100%;
    background-color: #f8f9fa; /* Light background for the whole page */
    justify-content: center;
    align-items: center;
}

/* Removed split layout styles */
.auth-left {
    display: none; /* Hide the left marketing side */
}

.auth-right {
    width: 100%;
    max-width: 500px; /* Limit width for a centered card look */
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin: 20px;
}

.auth-form-container {
    width: 100%;
}

.auth-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2d3436;
    font-size: 1.75rem;
    text-align: center;
}

.auth-subtitle {
    color: #636e72;
    margin-bottom: 2rem;
    text-align: center;
}

.form-control-modern {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #dfe6e9;
    background-color: #fcfcfc;
    transition: all 0.3s;
    width: 100%;
}

.form-control-modern:focus {
    border-color: #B08D68;
    box-shadow: 0 0 0 3px rgba(176, 141, 104, 0.1);
    background-color: white;
    outline: none;
}

.btn-auth {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    background-color: #B08D68;
    color: white;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-auth:hover {
    background-color: #9A7B5B;
    transform: translateY(-1px);
    color: white;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    color: #636e72;
}

.auth-footer a {
    color: #B08D68;
    text-decoration: none;
    font-weight: 500;
}

.auth-back-link {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: #636e72;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 0.9rem;
}

.auth-back-link:hover {
    color: #2d3436;
}

/* Logo in auth card */
.auth-logo {
    display: block;
    margin: 0 auto 1.5rem;
    height: 40px;
}

@media (max-width: 576px) {
    .auth-right {
        padding: 2rem;
        box-shadow: none;
        background: transparent;
    }
    .auth-title {
        font-size: 1.5rem;
    }
}
