/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Primary Button Styles */
.btn-primary {
    background-color: #D92525;
    border-color: #D92525;
    color: white;
    font-weight: 600;
    padding: 10px 24px;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.btn-primary:hover {
    background-color: #B91C1C;
    border-color: #B91C1C;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(217, 37, 37, 0.25);
}

.btn-primary:focus,
.btn-primary:active {
    background-color: #991B1B;
    border-color: #991B1B;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(217, 37, 37, 0.25);
}

.btn-lg {
    padding: 12px 32px;
    font-size: 0.9375rem;
}

/* ── Header / Navigation ── */

/* Push content below fixed header by default */
#wrapper { padding-top: 80px; }
/* Hero is fullscreen, so no padding needed */
.has-hero #wrapper { padding-top: 0; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.97);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* When hero is the first section, start transparent */
.has-hero .site-header:not(.scrolled) {
    background: transparent;
}

.site-header.scrolled {
    background: rgba(18, 18, 18, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.site-nav .container { max-width: 1200px; }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    transition: height 0.3s ease;
}

.site-header.scrolled .nav-inner { height: 64px; }

.nav-logo img {
    height: 62px;
    width: auto;
    transition: height 0.3s ease;
}

.site-header.scrolled .nav-logo img { height: 40px; }

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* Hamburger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        gap: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li a {
        font-size: 1.25rem;
        padding: 1rem 1.5rem;
        text-align: center;
        border-radius: 8px;
    }

    .nav-menu li a:hover { background: rgba(217, 37, 37, 0.15); color: #D92525; }
}

/* ── Hero Section ── */
.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 620px;
    padding: 0 1rem;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #D92525;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 520px;
}

.hero-cta {
    padding: 14px 36px;
}

/* Responsive Design */
@media (min-width: 1400px) {
    .hero-section {
        min-height: 90vh;
        max-height: 850px;
    }
    .hero-description { font-size: 1rem; }
}

@media (min-width: 1900px) {
    .hero-section {
        min-height: 80vh;
        max-height: 900px;
    }
}

@media (max-width: 992px) {
    .hero-subtitle { font-size: 0.75rem; letter-spacing: 2px; }
    .hero-description { font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
        text-align: center;
        background-attachment: scroll; /* fix iOS parallax */
    }
    .hero-content {
        max-width: 100%;
        padding: 0 1.25rem;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.875rem;
    }
    .hero-cta {
        width: 100%;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.6875rem;
        letter-spacing: 1.5px;
    }
    .hero-description { font-size: 0.8125rem; }
}

/* Footer Styles */
.footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0 0;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-title {
    color: #D92525;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 2px 0;
}

.footer-nav a:hover {
    color: #D92525;
}

.footer-contact {
    color: #cccccc;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-icon {
    color: #D92525;
    font-size: 1.1rem;
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #D92525;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #D92525;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333333;
    margin-top: 50px;
    padding: 25px 0;
}

.footer-copyright {
    margin: 0;
    color: #888888;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D92525;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0 0;
    }
    
    .footer-logo-img {
        max-width: 150px;
    }
    
    .footer-links {
        justify-content: flex-start;
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-bottom: 8px;
        margin-right: 0;
    }
}
