/*
Theme Name:   Silverline Child
Description:  Hello Elementor Child Theme for Silverline International
Author:       Silverline Solutions
Template:     hello-elementor
Version:      1.0.0
Text Domain:  silverline-child
*/

/* Add your custom CSS below this line */

:root {
    --primary-color: #072A4A;
    --dark-navy: #041B30;
    --gold-accent: #D4A64A;
    --silver-gray: #BFC6CF;
    --background-color: #F7F9FC;
    --shop-green: #2E9E55;
}

/* 
  Example: 
  You can put your custom styles here, and they won't be deleted when Hello Elementor updates! 
*/
body {
    background-color: var(--background-color);
    color: var(--primary-color);
}

/* ============================================== */
/* 1. HERO SECTION                                */
/* ============================================== */
.silverline-hero {
    position: relative;
    padding: 120px 5% 150px; /* Extra bottom padding for the overlapping feature bar */
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--background-color);
}

.silverline-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center right;
    z-index: 1;
}

/* Gradient overlay to make text readable on the left and blend image */
.silverline-hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, var(--background-color) 0%, var(--background-color) 35%, rgba(247,249,252,0) 70%);
}

.silverline-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-eyebrow {
    color: var(--gold-accent);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-eyebrow .line {
    height: 2px;
    width: 40px;
    background-color: var(--gold-accent);
    display: inline-block;
}

.hero-headline {
    color: var(--dark-navy);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif; /* Assuming a modern font like Inter */
}

.hero-subtext {
    font-size: 18px;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--dark-navy);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: #fff;
    color: var(--dark-navy);
    border: 1px solid var(--silver-gray);
}

.btn-outline:hover {
    border-color: var(--dark-navy);
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* Floating Badge */
.hero-badge {
    position: absolute;
    right: 5%;
    bottom: 25%;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 5px solid #E32636; /* Red for Canada flag accent */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-badge .badge-text {
    font-size: 13px;
    color: var(--dark-navy);
    line-height: 1.4;
}

.hero-badge .badge-flag {
    width: 32px;
    height: auto;
    border-radius: 50%;
}

/* ============================================== */
/* 2. FEATURES BAR                                */
/* ============================================== */
.silverline-features-bar {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 30px 40px;
    margin: -60px 5% 0; /* Pulls it up over the hero */
    position: relative;
    z-index: 10;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 15px;
}

.feature-item i {
    color: var(--gold-accent);
    font-size: 24px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-headline { font-size: 52px; }
}
@media (max-width: 992px) {
    .silverline-features-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    .hero-badge { display: none; }
    .silverline-hero-bg::after {
        background: linear-gradient(90deg, rgba(247,249,252,0.95) 0%, rgba(247,249,252,0.85) 100%);
    }
}
@media (max-width: 768px) {
    .hero-headline { font-size: 42px; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
}
