/*
Theme Name: OFSAqua
Theme URI: https://www.ofs.net.tr
Description: Modern Aqua Sohbet Teması - Profesyonel Glassmorphism Tasarım
Author: fLayer
Author URI: https://www.ofs.net.tr
Version: 1.0.0
Text Domain: ofsaqua
Tags: responsive, bootstrap, chat, sohbet, modern, glassmorphism, aqua, teal
*/

/* OFSAqua - MODERN GLASSMORPHISM DESIGN */
/* Renk Paleti: Aqua Teal #00ACC1, Fresh Green #4CAF50, Accent #FF9800 */

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif !important;
    background: linear-gradient(135deg, #00ACC1 0%, #4CAF50 100%) !important;
    background-attachment: fixed !important;
    color: #2C3E50 !important;
    padding: 0 !important;
    margin: 0 !important;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* GLASSMORPHISM CARDS */
.card, .z-depth-1, .cerceve, .icerik {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 172, 193, 0.2) !important;
    transition: all 0.4s ease !important;
}

.card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(0, 172, 193, 0.3) !important;
}

/* NAVBAR */
.navbar {
    background: rgba(55, 71, 79, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    padding: 8px 15px !important;
    margin: 15px 20px 15px auto !important;
    max-width: 750px !important;
    display: flex !important;
    justify-content: flex-end !important;
}

.navbar .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
}

.navbar .nav-item {
    margin: 0 2px !important;
}

.navbar .nav-link {
    color: #ECEFF1 !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.4s ease !important;
}

.navbar .nav-link:hover,
.navbar .nav-item.active .nav-link {
    background: rgba(76, 175, 80, 0.9) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* BUTTONS */
.btn {
    border-radius: 10px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    transition: all 0.4s ease !important;
}

.btn-primary {
    background: linear-gradient(135deg, #00ACC1, #00BCD4) !important;
    border: none !important;
    color: white !important;
}

.btn-success {
    background: linear-gradient(135deg, #4CAF50, #66BB6A) !important;
    border: none !important;
    color: white !important;
}

.btn-warning {
    background: linear-gradient(135deg, #FF9800, #FFA726) !important;
    border: none !important;
    color: white !important;
}

.btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

/* FOOTER */
.page-footer {
    background: rgba(55, 71, 79, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 16px !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.page-footer a:hover {
    color: #4CAF50 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
}

/* HEADER LOGO */
.header-logo span {
    background: linear-gradient(135deg, #FFFFFF 0%, #ECEFF1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CONTAINER */
.container, .container-fluid {
    position: relative;
    z-index: 1;
}

/* TEXT COLORS */
.text-primary {
    color: #00ACC1 !important;
}

.text-secondary {
    color: #4CAF50 !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .navbar {
        max-width: 100% !important;
        margin: 10px !important;
    }
}

