@charset "utf-8";

:root {
  --primary-color: #1f1f1f;   
  --secondary-color: #2c2c2c; 
  --accent-color: #b9089e;    
  --bg-color: #121212;        
  --section-bg: #181818;     
  --card-bg: #1c1c1c;         
  --text-color: #e0e0e0;
  --btn-bg: #383838;
  --btn-hover-bg: #2c2c2c;
  --heading-font: 'Roboto', serif;
  --body-font: 'Roboto', sans-serif;
}

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

body {
  font-family: var(--body-font);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

.navbar {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 5px 0; 
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo a {
  font-family: 'Oswald', serif;
  font-size: 3.5rem;
  color: var(--text-color);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.8rem;
  transition: color 0.3s ease;
  padding: 5px 8px;
}

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

@media (max-width: 768px) {
  .logo a {
    font-size: 2rem;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links li a {
    font-size: 1.4rem;
    padding: 5px 6px;
  }
}

   #hero {
    background: url(../media/img-02.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
  
 
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
  }
  

.hero-container h1 {
  font-family: var(--heading-font);
  font-size: 5rem;
  margin-bottom: 5px;
  line-height: 1.1;
}

.hero-container p {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 0px;
  line-height: 1.1;
}

.hero-container .hello {
  margin-top: 0px;
  margin-bottom: 30px;
}


.btn {
  display: inline-block;
  background: var(--btn-bg);
  color: var(--text-color);
  background-color: #1489ff;
  padding: 15px 30px;
  font-size: 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: var(--btn-hover-bg);
  color: var(--text-color);
}

section {
  padding: 130px 20px;
  background-color: var(--bg-color);
  color: var(--text-color);
}

section h2 {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.about-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.picture img {
  max-width: 150px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-text {
  max-width: 600px;
  text-align: left;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}

#projects {
  background-color: #b3b1b1;
  padding: 80px 20px;
}

#projects .container h2 {
  font-size: 3.5rem;
  color: #333;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.project-card {
  border-radius: 30px;
  background: linear-gradient(145deg, #000000, #1a1a1a); 
  box-shadow: 
    20px 20px 40px rgba(0, 0, 0, 0.8),
    -20px -20px 40px rgba(255, 255, 255, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow:
    20px 20px 40px rgba(0, 0, 0, 0.9),
    -20px -20px 40px rgba(255, 255, 255, 0.15);
}

.project-card i {
  color: #9d4ea4;
}

.project-card h3 {
  font-family: var(--heading-font);
  margin: 0 0 15px 10px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}

.project-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #ccc;
}

.project-card a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.project-card a:hover {
  text-decoration: underline;
}

#contact {
  text-align: center;
  padding: 60px 0; 
  background-color: #111;
  color: #fff;
}

#contact h2 {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1); 
  border-radius: 8px;
}

#contact form input,
#contact form textarea {
  padding: 16px 20px;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #030303;
  outline: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#contact form input:focus,
#contact form textarea:focus {
  background-color: #444;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.3);
}

#contact form input::placeholder,
#contact form textarea::placeholder {
  font-size: 1.2rem;
  color: #999;
}

#contact form a input[type="button"] {
  background-color: #1489ff; 
  color: #fff;
  padding: 16px 20px;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#contact form a input[type="button"]:hover {
  background-color: #0f6ecb; 
  transform: translateY(-2px);
}


.contact-icons {
  display: inline-flex;
  gap: 20px; 
  justify-content: center;
  align-items: center;
}

.contact-icons a {
  font-size: 2.5rem;
  color: #ffffff;
  transition: color 0.3s;
}

.contact-icons a:hover {
  color: #5b2681;      
}

footer {
  background-color: var(--primary-color);
  color: var(--text-color);
  text-align: center;
  padding: 20px 0;
  font-size: 2rem;
}


form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

form input,
form textarea {
  padding: 10px 15px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

form textarea {
  height: 150px;
  resize: vertical;
}

form button {
  background-color: var(--accent-color, #4CAF50);
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #388e3c;
}

.bg-dark {
  background-color: #05084a;
}
