/* ========================================
FITORA TECH - HOME PAGE
======================================== */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, sans-serif;
background-color: #000;
color: #fff;
overflow-x: hidden;
}

/* ========================================
NAVIGATION
======================================== */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background-color: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 24px;
font-weight: 700;
letter-spacing: 4px;
color: #0B4F5F;
}

.nav-links {
display: flex;
list-style: none;
gap: 50px;
align-items: center;
}

.nav-link {
text-decoration: none;
color: #2C2C2C;
font-size: 16px;
font-weight: 400;
letter-spacing: 0.5px;
position: relative;
transition: color 0.3s ease;
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: #0B4F5F;
transition: width 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
width: 100%;
}

.nav-link:hover {
color: #0B4F5F;
}

.contact-btn {
padding: 12px 32px;
background-color: transparent;
color: #0B4F5F;
border: 2px solid #0B4F5F;
text-decoration: none;
font-size: 14px;
font-weight: 600;
letter-spacing: 1.5px;
transition: all 0.4s ease;
display: inline-block;
}

.contact-btn:hover {
background-color: #0B4F5F;
color: #fff;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(11, 79, 95, 0.3);
}

.mobile-menu-btn {
display: none;
flex-direction: column;
gap: 5px;
background: transparent;
border: none;
cursor: pointer;
padding: 5px;
}

.mobile-menu-btn span {
width: 25px;
height: 2px;
background-color: #0B4F5F;
transition: all 0.3s ease;
}

/* ========================================
HERO SECTION
======================================== */
.hero {
position: relative;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-image: url('../images/hero-bg.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding-top: 80px;
}

.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.7),
rgba(0, 0, 0, 0.6)
);
}

.hero-content {
position: relative;
z-index: 10;
text-align: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
animation: fadeInUp 1s ease;
transform: translateY(60px);
}

.hero-title {
font-size: 82px;
font-weight: 700;
letter-spacing: 14px;
color: #00B4D8;
margin-bottom: 45px;
animation: fadeInDown 1s ease 0.2s backwards;
}

.hero-subtitle {
font-size: 22px;
font-weight: 300;
line-height: 1.8;
color: #fff;
margin-bottom: 65px;
letter-spacing: 0.5px;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
animation: fadeIn 1s ease 0.4s backwards;
}

.cta-button {
display: inline-block;
padding: 20px 60px;
background-color: #fff;
color: #0B4F5F;
text-decoration: none;
font-size: 17px;
font-weight: 600;
letter-spacing: 2.5px;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
animation: fadeInUp 1s ease 0.6s backwards;
}

.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(11, 79, 95, 0.2),
transparent
);
transition: left 0.6s ease;
}

.cta-button:hover::before {
left: 100%;
}

.cta-button:hover {
background-color: #0B4F5F;
color: #fff;
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4);
}

/* ========================================
ANIMATIONS
======================================== */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

/* ========================================
RESPONSIVE
======================================== */
@media (max-width: 1024px) {
.nav-links {
gap: 35px;
}


.hero-title {
    font-size: 64px;
    letter-spacing: 10px;
}

.hero-subtitle {
    font-size: 20px;
}

.cta-button {
    padding: 18px 55px;
    font-size: 16px;
}


}

@media (max-width: 768px) {
.mobile-menu-btn {
display: flex;
}


.nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 30px 20px;
    gap: 25px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    transform: translateX(0);
}

.hero-title {
    font-size: 48px;
    letter-spacing: 7px;
}

.hero-subtitle {
    font-size: 18px;
}

.hero-subtitle br {
    display: none;
}

.cta-button {
    padding: 17px 45px;
    font-size: 15px;
}


}

@media (max-width: 480px) {
.logo {
font-size: 18px;
letter-spacing: 3px;
}


.nav-container {
    padding: 15px 20px;
}

.hero-title {
    font-size: 32px;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
}

.cta-button {
    padding: 14px 35px;
    font-size: 13px;
}

}