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

body {
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
  color: #fff;
  background: #000;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* BRAND COLORS */
:root {
  --gradient: linear-gradient(180deg, #f00b0b 45%, #3b1010 100%);
  --red: #f00b0b;
  --deep-red: #3b1010;
  --light: #fff;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  transition: background 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo img {
  height: 85px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.logo .brand-name {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
}

.nav a:hover,
.nav a.active {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HERO */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .gradient-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 2rem;
  z-index: 2;
  animation: fadeUp 1s ease-out both;
}

.hero-text h1.hero-heading {
  font-size: 3.2rem;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.hero-text p.hero-subtext {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

/* Hero fade-up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn,
.contact-form button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--gradient);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn:hover,
.contact-form button:hover {
  opacity: 0.85;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* SECTION TITLES */
.section-title {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

/* ABOUT */
.about {
  background: #111;
  padding: 6rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  color: #ddd;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* SERVICES */
.services {
  padding: 6rem 0;
  background: #000;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #111;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 20px rgba(255,0,0,0.2);
  background: #151515;
}

.service-card h3 {
  margin: 1rem 0 0.5rem;
}

.service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.15);
}

/* CONTACT */
.contact {
  padding: 6rem 0;
  background: #111;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-info ul {
  list-style: none;
  margin-top: 1rem;
}

.contact-info li {
  margin-bottom: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  border: none;
  border-radius: 4px;
  background: #222;
  color: #fff;
}

.contact-form textarea {
  resize: none;
}

/* FOOTER */
.footer {
  background: #000;
  color: #bbb;
  padding: 1.5rem;
  text-align: center;
}

/* FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SUCCESS/ERROR BANNER */
.form-message {
  display: none;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  position: sticky;
  top: 0;
  z-index: 2000;
}

.form-message.success {
  display: block;
  background: rgba(0, 128, 0, 0.2);
  color: #0f0;
}

.form-message.error {
  display: block;
  background: rgba(128, 0, 0, 0.2);
  color: #f33;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .header-content {
    flex-direction: column;
  }
  .hero-text h1 {
    font-size: 2.4rem;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
}








