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

body {
  background-color: #000;
  color: #fff;
  font-family: "Amazon Ember", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(120,119,198,0.3) 0%, transparent 30%),
              radial-gradient(circle at 80% 20%, rgba(255,99,132,0.15) 0%, transparent 40%),
              radial-gradient(circle at 40% 40%, rgba(54,162,235,0.1) 0%, transparent 1%);
  z-index: -1;
}

/* Central container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px;
}

/* Section spacing */
.hero, .about-me, .fun-facts, .aws-journey, .contact-form {
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
}

/* Hero */
.hero {
  text-align: center;
}
.hero h1 {
  color: #03A9F4;
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 700;
  margin: 20px 0 8px 0;
  letter-spacing: -0.02em;
  animation: animate ease-in-out 1s infinite alternate;
}

@keyframes animate {
  from {
    text-shadow: 0 0 20px #ff9900;
  }
  to {
    text-shadow: 0 0 30px #fff, 0 0 10px #ff9900;
  }
}

.tagline {
  font-size: 18px;
  margin-bottom: 16px;
}
.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e5e7eb;
  margin: 0 auto 20px auto;
  display: block;
}
.links {
  margin-top: px;
}

/* Buttons */
.aws-link, .cta-button {
  display: inline-block;
  margin:;
  padding: 2px 4px;
  background-color: #FF9900;
  color: #000;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.aws-link:hover, .cta-button:hover {
  background-color: #e68a00;
  transform: translateY(-1px);
}

/* About Me */
.about-me p {
  text-align: justify;
  margin-bottom: 16px;
}
.about-me ul {
  padding-left: 20px;
  line-height: 1.6;
}

/* Fun Facts */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.fact-card {
  border: 3px solid #ff9900;
  padding: 60px;
  border-radius: 20px;
}
.fact-card h4 {
  font-size: 18px;
  margin-bottom: 1px;
  color: #03A9F4;
}
.fact-card p {
  font-size: 16px;
}

/* AWS Journey */
.aws-journey h3 {
  font-size: 32px;
  margin-bottom: px;
}
.aws-journey p {
  font-size: 16px;
  margin-bottom: 16px;
  max-width: px;
  margin-left: auto;
  margin-right: auto;
}

/* CONTACT FORM STYLES - Added for contact form functionality */
.contact-form {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Contact form decorative element */
.contact-form::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, 0%, #be185d 100%);
    border-radius: 6px;
    opacity: 0.9;
}

.contact-form h3 {
    color: #232f3e;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-align: center;
}

.contact-form > p {
    font-size: 16px;
    color: #687078;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.6;
}

/* Contact form container and layout */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Form message styles for success/error notifications */
.form-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 8px;
    font-size: 16px;
}

/* Contact form input and textarea styles */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7e;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7877c6;
    background: white;
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact form submit button */
.contact-submit-btn {
    background: #7877c6;
    color: white;
    padding: 12px 32px;
    border: 3px solid #ff9900;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    margin: 0 auto;
}

.contact-submit-btn:hover {
    background: #6b6ab8;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    /* Contact form mobile styles */
    .contact-form {
        padding: 24px;
    }

    /* Contact form mobile heading */
    .contact-form h3 {
        font-size: 24px;
    }
}

/* END CONTACT FORM STYLES */