/* Hugues & Fils Professional Styles */

:root {
    --primary: #003cb4;
    --primary-light: #4f8cff;
    --accent: #00b4d8;
    --background: #f6fafd;
    --section-bg: #f0f4fa;
    --dark: #1a2233;
    --gray: #6c757d;
    --white: #fff;
    --shadow: 0 4px 24px rgba(0,60,180,0.08);
    --radius: 1.2rem;
}

body {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: var(--background);
    color: var(--dark);
    margin: 0;
    padding: 0;
    font-size: 1.08rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.01em;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary);
    letter-spacing: 0.01em;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: var(--accent);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: background 0.3s, box-shadow 0.2s;
}
.btn-primary:hover {
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
    box-shadow: 0 8px 32px rgba(0,60,180,0.12);
}

.container {
    max-width: 1140px;
}

.hero-section {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(0,60,180,0.7) 0%, rgba(0,180,216,0.4) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.2s both;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: none; }
}

.card, .shadow-sm {
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
    border: none !important;
}

.card-check {
    color: #28a745;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.rounded-img {
    border-radius: 1.2rem !important;
    box-shadow: var(--shadow);
}

.bg-section {
    background: var(--section-bg);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
}

/* Navbar */
.navbar {
    background: rgba(255,255,255,0.95) !important;
    box-shadow: 0 2px 12px rgba(0,60,180,0.06);
    transition: background 0.3s, box-shadow 0.3s;
}
.navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
}
.navbar .navbar-brand img {
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,60,180,0.08);
    margin-right: 0.7rem;
}
.navbar .nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin-left: 0.7rem;
    border-radius: 0.7rem;
    padding: 0.5rem 1rem;
    transition: background 0.2s, color 0.2s;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
    background: var(--primary-light);
    color: var(--white) !important;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    box-shadow: 0 -2px 12px rgba(0,60,180,0.08);
}
footer a {
    color: var(--accent);
}
footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Animations & Transitions */
img, .card, .shadow-sm, .rounded-img, .btn, .nav-link {
    transition: all 0.2s cubic-bezier(.23,1.01,.32,1);
}
img:hover, .rounded-img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(0,60,180,0.12);
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .container { max-width: 96vw; }
    .section-title { font-size: 1.7rem; }
}
@media (max-width: 768px) {
    .hero-section { min-height: 40vh; }
    .section-title { font-size: 1.2rem; }
    .bg-section { padding: 1.2rem 0.7rem; }
} 