:root {
    --primary: #e65100; /* Deep Terracotta */
    --secondary: #263238; /* Charcoal Slate */
    --accent: #ffb74d;
    --light: #f8f9fa;
    --dark: #101418;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo a {
    text-decoration-line: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
    background: linear-gradient(to right, rgba(16, 20, 24, 0.9), rgba(16, 20, 24, 0.4)),
                url('https://images.unsplash.com/photo-1589939705384-5185138a04b9?auto=format&fit=crop&q=80&w=2070'); /* Fallback pattern */
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    max-width: 600px;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-button {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
    background: #ff6d00;
    transform: translateY(-3px);
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.scroll-arrow {
  display: flex;               /* Activates flexbox */
  justify-content: center;    /* Centers horizontally */
  align-items: center;        /* Centers vertically */
  
  /* Positioning it at the bottom of the screen */
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  width: 100%;
}

.scroll-arrow span {
  width: 20px;
  height: 20px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
  40% { transform: translateY(-10px) rotate(45deg); }
  60% { transform: translateY(-5px) rotate(45deg); }
}
/* --- Features Section --- */
.features {
    padding: 8rem 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: var(--dark);
}

.card {
    background: var(--glass);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s ease;
}

.card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* --- About Section --- */
.about {
    padding: 2rem 10%;
    padding-top: 0.5rem;
    background: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary);
}

/* --- Contact Footer --- */
footer {
    padding: 4rem 10%;
    text-align: center;
    border-top: 1px solid var(--glass);
}

.contact-info {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { text-align: center; align-items: center; }
}
