/* Main Styles for IrishBantr */

body {
    font-family: 'Nunito', sans-serif;
    padding-bottom: 0;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.jumbotron {
    background: linear-gradient(rgba(0,100,0,0.7), rgba(0,100,0,0.7)), url('../img/ireland-landscape.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 2rem;
}

.card {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    margin-bottom: 20px;
}

.card-header {
    border-bottom: none;
}

footer {
    margin-top: 50px;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Profile styles */
.profile-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Dating module styles */
.dating-card {
    transition: transform 0.3s ease;
}

.dating-card:hover {
    transform: translateY(-5px);
}

.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

/* Classifieds styles */
.classified-item {
    transition: all 0.2s ease;
}

.classified-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.classified-image {
    height: 200px;
    object-fit: cover;
}

/* Forum styles */
.forum-topic {
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.forum-topic:hover {
    background-color: #f8f9fa;
}

/* Chat styles */
.chat-message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
}

.chat-message.sent {
    background-color: #dcf8c6;
    margin-left: auto;
}

.chat-message.received {
    background-color: #f1f0f0;
}

.chat-time {
    font-size: 0.75rem;
    text-align: right;
    color: #999;
    display: block;
}
