@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root {
  /* Color Variables */
  --primary-color: #6d4300;
  --text-dark: #040404;
  --text-light: #ffffff;
  --bg-gradient: linear-gradient(to right, rgb(255,255,255), rgb(254,215,173));
  --transition: all 0.3s ease;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-gradient);
  line-height: 1.6;
}

/* Navigation Styles */
nav {
  width: 100%;
  height: 10vh;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}

.nav-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

.logo {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 700;
}

.logo span {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  position: relative;
  font-size: 1.1rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
}

.contact-btn {
  background-color: transparent;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
}

.contact-btn:hover {
  background-color: var(--primary-color);
}

.contact-btn:hover .nav-link {
  color: var(--text-light);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  cursor: pointer;
  font-size: 2rem;
  color: var(--text-dark);
  z-index: 1100;
}

.dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 1000;
}

.dropdown.active {
  transform: translateY(0);
}

.dropdown-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.5rem;
  margin: 1rem 0;
  padding: 0.5rem 2rem;
  transition: var(--transition);
}

.dropdown-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  width: 100%;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 5%;
}

.hero-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  color: var(--text-dark);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title span {
  color: var(--primary-color);
}

.typewriter {
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

.typewriter-text {
  color: var(--primary-color);
  position: relative;
}

.typewriter-text::after {
  content: "|";
  position: absolute;
  right: -10px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin: 1.5rem 0;
  opacity: 0.9;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-5px);
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(109, 67, 0, 0.3);
}

/* Button */
.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(109, 67, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .typewriter {
    font-size: 1.5rem;
  }
  
  .social-link {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.7rem 1.5rem;
  }
}