/* Global Styles for Franknights Group */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f8fafc;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.brand-font {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
}

:root {
    --bs-primary: #1a365d;
    --bs-primary-rgb: 26, 54, 93;
    --accent-color: #d4af37;
    --accent-rgb: 212, 175, 55;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-accent {
    background-color: rgba(var(--accent-rgb), var(--bs-bg-opacity, 1)) !important;
}

/* Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}
.navbar-custom .nav-link {
    font-weight: 500;
    color: #475569;
    padding: 10px 15px;
    transition: color 0.3s;
}
.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
    color: #1a365d;
}
.navbar-brand {
    font-weight: 800;
    letter-spacing: 1px;
    color: #0f172a;
}

/* Hero Sections */
.hero-wrapper {
    background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
    color: white;
    padding: 120px 0 80px;
    position: relative;
}
.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 60px;
    background: #f8fafc;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    color: #1e293b; /* Ensure text is dark and visible */
}
.glass-card h1, .glass-card h2, .glass-card h3, .glass-card h4, .glass-card h5, .glass-card h6 {
    color: #0f172a;
}
.glass-card:hover {
    transform: translateY(-5px);
}

/* Section Titles */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
}
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Footer */
.footer-main {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
}
.footer-main h5 {
    color: white;
    margin-bottom: 20px;
}
.footer-main a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-main a:hover {
    color: white;
}

/* Utilities */
.btn-primary-custom {
    background-color: #1a365d;
    border-color: #1a365d;
    color: white;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
    transition: all 0.3s;
}
.btn-primary-custom:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.text-hover-white:hover {
    color: #ffffff !important;
}
