/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fefefe;
  color: #2e2e2e;
  line-height: 1.7;
  font-size: 1rem;
}

/* Header */
header {
  background: #b3e5cc;
  color: #2b2b2b;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #d4f0e3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header h1 a {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  color: #2e2e2e;
  transition: color 0.3s ease;
}

header h1 a:hover {
  color: #4da99c;
}

nav {
  display: flex;
  gap: 0.5rem;
}

nav a {
  color: #2e2e2e;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ff9776;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #b3e5cc 0%, #d4f0e3 100%);
  padding: 6rem 2rem;
  text-align: center;
  border-bottom: 3px solid #a8dcc4;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.3rem;
  color: #444;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Section */
.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.center {
  text-align: center;
}

.section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #2b2b2b;
  margin-bottom: 1rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 2rem;
}

p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
}

/* About Section */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content > p {
  text-align: left;
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
  line-height: 1.9;
}

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

.skill-category {
  background: #f8fcfa;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #e0f2eb;
  transition: all 0.3s ease;
}

.skill-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(77, 169, 156, 0.15);
  border-color: #b3e5cc;
}

.skill-category h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #2b2b2b;
}

.skill-category p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Photography Gallery */
.gallery {
  column-count: 1;
  column-gap: 1rem;
  margin-top: 2rem;
}

@media(min-width: 600px) {
  .gallery {
    column-count: 2;
  }
}

@media(min-width: 900px) {
  .gallery {
    column-count: 3;
  }
}

.gallery img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: block;
  break-inside: avoid;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}

/* CTA Button */
.cta-button-container {
  text-align: center;
  margin-top: 3rem;
}

.cta-button {
  display: inline-block;
  background: #4da99c;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(77, 169, 156, 0.3);
}

.cta-button:hover {
  background: #3d8a7f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(77, 169, 156, 0.4);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background: #f8fcfa;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #e0f2eb;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(77, 169, 156, 0.2);
  border-color: #b3e5cc;
}

.project-card h3 {
  font-size: 1.5rem;
  color: #2b2b2b;
  margin-bottom: 1rem;
}

.project-card p {
  color: #555;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: #d4f0e3;
  color: #2b2b2b;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.project-link {
  color: #4da99c;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.project-link:hover {
  color: #ff9776;
}

/* Music Section */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem auto;
  max-width: 900px;
}

.music-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8fcfa;
  border-radius: 16px;
  border: 2px solid #e0f2eb;
  transition: all 0.3s ease;
}

.music-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(77, 169, 156, 0.15);
  border-color: #b3e5cc;
}

.music-placeholder {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #b3e5cc, #ff9776);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.music-item h4 {
  font-size: 1.1rem;
  color: #2b2b2b;
  margin-bottom: 0.3rem;
}

.music-item p {
  font-size: 0.95rem;
  color: #666;
}

.music-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: #666;
}

/* Contact Section */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
  align-items: stretch;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background: #f8fcfa;
  border: 2px solid #e0f2eb;
  border-radius: 12px;
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #b3e5cc;
  border-color: #a8dcc4;
  transform: translateX(8px);
}

.contact-item .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Links */
a {
  color: #4da99c;
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff9776;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  color: #888;
  font-size: 0.95rem;
  border-top: 2px solid #e0f2eb;
  margin-top: 4rem;
  background: #f8fcfa;
}

/* Mobile Responsiveness */
@media(max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    padding: 0.4rem 0.8rem;
    font-size: 0.95rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .music-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 500px) {
  .hero {
    padding: 4rem 1.5rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .music-grid {
    grid-template-columns: 1fr;
  }
}
