/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
  --color: #CD7F32;
  --hover: #DA8A67;
  --bg-dark: #0b0b0c;
  --accent-gold: #e6b422;
  --text-light: #f5f5f5;
  --glass: rgba(255, 255, 255, 0.05);
  --transition: all 0.3s ease-in-out;
}

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

body {
  background: radial-gradient(circle at center, #141414, #0b0b0c);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------------- Header ---------------- */
header {
  background: var(--glass);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(230, 180, 34, 0.2);
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.logo {
  height: 50px;
  filter: drop-shadow(0 0 5px var(--hover));
}

/* ---------------- Navigation ---------------- */
nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav a {
  color: var(--text-light);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--hover);
  transition: var(--transition);
}

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

nav a:hover::after {
  width: 100%;
}

/* ---------------- Hero Section ---------------- */
main {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

main h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(230, 180, 34, 0.6);
  animation: glow 2.5s infinite alternate;
}

main p {
  font-size: 1.3rem;
  max-width: 700px;
  color: #d6d6d6;
}

/* ---------------- Buttons ---------------- */
.button {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  background: var(--hover);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(230, 180, 34, 0.6);
}

.button:hover {
  background: #fff3c0;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(230, 180, 34, 1);
}

/* ---------------- Footer ---------------- */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #999;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
}

/* ---------------- Animations ---------------- */
@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(230, 180, 34, 0.2);
  }
  to {
    text-shadow: 0 0 20px rgba(230, 180, 34, 0.9);
  }
}

/*Other stuffz*/
/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Section defaults */
section {
  width: 100%;
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Hero stays centered */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* About section */
.about {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-top: 4rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--hover);
  text-align: center;
}

/* Connect section */
.connect {
  background: rgba(230, 180, 34, 0.05);
  border-radius: 12px;
  margin-top: 4rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.connect h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--hover);
  text-align: center;
}

.connect a {
  color: var(--hover);
  font-weight: 600;
  transition: var(--transition);
}

.connect a:hover {
  color: #fff3c0;
}


