/* Custom styles for UrConneX */
body {
    background-color: #cccccc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* Logo styling */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Hero section styling */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Typography adjustments */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

.lead {
    font-size: 1.25rem;
}

/* Smartphone placeholder styling */
.smartphone-placeholder {
    width: 280px;
    height: 500px;
    background-color: #333;
    border-radius: 30px;
    padding: 10px;
    position: relative;
    border: 8px solid #222;
}

.smartphone-screen {
    background-color: #fff;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.app-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    height: 50px;
    background-color: #FF8C00;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.app-body {
    flex: 1;
    padding: 15px;
    background-color: #f8f9fa;
}

.message-bubble {
    background-color: #e9ecef;
    border-radius: 18px;
    padding: 10px 15px;
    margin-bottom: 10px;
    width: 70%;
}

.message-bubble:nth-child(even) {
    background-color: #d6e4ff;
    margin-left: auto;
}

.video-preview {
    height: 150px;
    background-color: #333;
    border-radius: 8px;
    margin-top: 20px;
}

/* How It Works Section */
.how-it-works {
    margin-top: -30px;
}

.how-it-works .card {
    border: none;
    border-radius: 15px;
}

.how-it-works h2 {
    color: #333;
    font-weight: 600;
}

.how-it-works p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px !important;
        min-height: auto;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .smartphone-placeholder {
        width: 220px;
        height: 400px;
    }
    
    .how-it-works {
        margin-top: 0;
    }
    
    .how-it-works p {
        font-size: 1rem;
    }
}

.login-container {
    max-width: 450px;
    margin: auto;
    padding: 2rem;
}

.login-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-btn {
    background-color: #212529;
    color: white;
    border-radius: 5px;
}

.forgot-password {
    text-align: center;
    margin-top: 1rem;
}

.content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}