/* ===========================================
   COMPONENTS STYLES
   =========================================== */

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(55, 55, 55, 0.98);
    padding: 0 5%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px;
    box-sizing: border-box;
}

.logo {
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
    padding: 30px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary);
    color: var(--dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(223, 111, 87, 0.4);
    background-color: #e67e68;
}

.btn-outline {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-outline:hover {
    background-color: var(--light);
    color: var(--dark);
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ========== PAGE HEADER ========== */
.page-header {
    text-align: center;
    padding: 180px 5% 80px;
    position: relative;
    overflow: hidden;
    background-color: var(--dark);
}

.page-header h1 {
    color: var(--light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5em;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    animation: titleGlow 4s infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    100% {
        text-shadow: 0 5px 25px rgba(223, 111, 87, 0.4);
    }
}

.page-header p {
    color: var(--light);
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== SECTION STYLES ========== */
.section-block {
    margin-bottom: 80px;
}

.section-heading {
    color: var(--light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background-color: var(--primary);
    animation: linePulse 2s infinite alternate;
}

@keyframes linePulse {
    0% {
        width: 100px;
    }

    100% {
        width: 150px;
    }
}

.section-text {
    color: var(--light);
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 900px;
}

/* ========== ANIMATION CLASSES ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 70px 8%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.col h4 {
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 800;
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
}

.col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.col p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    opacity: 0.9;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    padding-left: 0;
}

.col p:hover {
    opacity: 1;
    transform: translateX(10px);
    color: var(--primary);
}

.col p::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s;
}

.col p:hover::before {
    opacity: 1;
    left: -15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons i {
    font-size: 1.5rem;
    transition: all 0.5s;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-icons i:hover {
    color: var(--primary);
    transform: translateY(-8px) rotate(360deg);
    background: rgba(223, 111, 87, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}