/* styles.css */

:root {
    --primary: #ffffff;
    --secondary: #aaaaaa;
    --accent: #e63946;
    --background: #0d0d0d;
    --card-bg: #1a1a1a;
    --overlay: rgba(0, 0, 0, 0.7);
    --mist-color: rgba(255, 255, 255, 0.03);
    --glow: 0 0 10px rgba(230, 57, 70, 0.5);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', sans-serif;
  }
  
  body {
    background-color: var(--background);
    color: var(--primary);
    line-height: 1.6;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .hero__video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
  }
  
  .mist {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
  }
  
  .mist-layer {
    width: 100%;
    height: 100%;
    background: var(--mist-color);
    animation: mistMove 60s linear infinite;
  }
  
  @keyframes mistMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
  
  .hero-overlay {
    background: var(--overlay);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .site-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    z-index: 2;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(-20px);
    opacity: 0;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
    text-shadow: var(--glow);
  }
  
  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .main-nav a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
  }
  
  .main-nav a:hover {
    color: var(--accent);
  }
  
  .hero-content {
    margin-top: 100px;
  }
  
  .hero-title {
    font-size: 3rem;
    text-shadow: var(--glow);
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-top: 10px;
  }
  
  /* Section Common */
  .section {
    padding: 80px 40px;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
    text-shadow: var(--glow);
  }
  
  .section-header p {
    color: var(--secondary);
    margin-bottom: 40px;
  }
  
  /* Services */
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 10px #000;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .service-icon {
    fill: var(--accent);
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    margin-bottom: 10px;
  }
  
  .service-card p {
    color: var(--secondary);
  }
  
  /* Process */
  .process-steps {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
  }
  
  .process-steps li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 30px;
  }
  
  .step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
    min-width: 50px;
  }
  
  .step-content h3 {
    margin-bottom: 5px;
  }
  
  .step-content p {
    color: var(--secondary);
  }
  
  /* Contact */
  form.commission-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
  }
  
  .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  input, select, textarea {
    width: 100%;
    padding: 10px;
    background: #111;
    color: var(--primary);
    border: 1px solid #333;
    border-radius: 8px;
  }
  
  input:focus, textarea:focus, select:focus {
    border-color: var(--accent);
    outline: none;
  }
  
  .cta-button {
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    margin-top: 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #ff5964;
  }
  
  /* Footer */
  .site-footer {
    background-color: #111;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-content {
    margin-bottom: 20px;
  }
  
  .footer-content .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    text-shadow: var(--glow);
  }
  
  .tagline {
    color: var(--secondary);
    margin-top: 10px;
  }
  
  .social-links a {
    margin: 0 10px;
    display: inline-block;
    color: var(--primary);
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: var(--accent);
  }
  
  footer p {
    color: var(--secondary);
    font-size: 0.9rem;
  }
  /* === Mobile Responsive === */
@media (max-width: 768px) {
  /* Header Adjustments */
  header {
    padding: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .logo {
    font-size: 1.4rem;
    order: 1;
    flex: 1;
  }
  
  /* Navigation Menu */
  .main-nav {
    order: 3;
    width: 100%;
    margin-top: 0.5rem;
  }
  .main-nav ul {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
  }
  .main-nav a {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }

  /* Hero Section */
  .hero-content {
    padding-top: 4rem;
  }
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    line-height: 1.3;
  }
  .hero-text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .btn {
    margin: 0;
    width: 100%;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Intro Section */
  .intro {
    padding: 2rem 1rem;
    gap: 2rem;
  }
  .intro-text h1 {
    font-size: 2rem;
  }
  .intro-text p {
    font-size: 0.95rem;
  }

  /* Experience Table */
  .experience {
    font-size: 14px;
  }
  .experience td {
    padding: 12px 0;
  }

  /* Footer */
  .footer {
    padding: 2rem 1rem;
  }
  .footer h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .main-nav ul {
    gap: 0.5rem;
  }
  .main-nav a {
    font-size: 0.8rem;
  }
  .hero-subtitle {
    font-size: 0.75rem;
  }
  .intro-text h1 {
    font-size: 1.8rem;
  }
}