/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(145deg, #fdf8f5 0%, #fff5f0 100%);
  color: #4a3b2c;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f0e4dc;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d4a58e, #c28b72);
  border-radius: 10px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== NAVIGATION ========== */
nav {
  position: sticky;
  top: 0;
  background: rgba(255, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(210, 150, 130, 0.2);
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c28b72, #e8aa94);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s;
}

.logo:hover {
  transform: scale(1.05);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #6b4a38;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d9947e;
  transition: width 0.3s;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a:hover {
  color: #bc7a63;
  transform: translateY(-2px);
}

/* ========== HOME SECTION ========== */
#home {
  position: relative;
  background: linear-gradient(135deg, #fff5ef 0%, #ffe8df 25%, #ffe6dc 50%, #fff0e8 75%, #fff8f3 100%);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

#home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(232, 170, 148, 0.08) 2px, transparent 2px);
  background-size: 35px 35px;
  pointer-events: none;
}

.bg-decoration-1 {
  position: absolute;
  top: 5%;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 170, 148, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bg-decoration-2 {
  position: absolute;
  bottom: 0;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(217, 148, 126, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.corner-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
}

.corner-tl {
  top: 20px;
  left: 20px;
  border-top: 3px solid #d4a58e;
  border-left: 3px solid #d4a58e;
  width: 60px;
  height: 60px;
}

.corner-tr {
  top: 20px;
  right: 20px;
  border-top: 3px solid #d4a58e;
  border-right: 3px solid #d4a58e;
  width: 60px;
  height: 60px;
}

.corner-bl {
  bottom: 20px;
  left: 20px;
  border-bottom: 3px solid #d4a58e;
  border-left: 3px solid #d4a58e;
  width: 60px;
  height: 60px;
}

.corner-br {
  bottom: 20px;
  right: 20px;
  border-bottom: 3px solid #d4a58e;
  border-right: 3px solid #d4a58e;
  width: 60px;
  height: 60px;
}

.floating-petal {
  position: absolute;
  font-size: 22px;
  opacity: 0;
  pointer-events: none;
  animation: floatPetal 22s infinite linear;
  z-index: 1;
}

@keyframes floatPetal {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.2;
  }
  85% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* ========== SECTION STYLES ========== */
section {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  display: inline-block;
  background: linear-gradient(135deg, #8b5e4a, #c28b72);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-left: 5px solid #e8aa94;
  padding-left: 1.2rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e8aa94, transparent);
  border-radius: 3px;
}

/* ========== HERO SECTION ========== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: slideInLeft 1s ease;
  background: rgba(255, 248, 245, 0.65);
  backdrop-filter: blur(12px);
  padding: 2.5rem 3rem;
  border-radius: 80px;
  border: 1px solid rgba(232, 170, 148, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text h1 {
  font-size: 4rem;
  background: linear-gradient(135deg, #c2866e, #e6ab96);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: #9b7a68;
  max-width: 500px;
}

.hero-text .que-sera {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: #c28b72;
  font-weight: 500;
  margin-top: 0.5rem;
  display: inline-block;
  background: rgba(232, 170, 148, 0.2);
  padding: 0.2rem 0.8rem;
  border-radius: 40px;
}

.hero-img {
  animation: float 5s infinite ease-in-out;
  background: rgba(255, 245, 240, 0.3);
  backdrop-filter: blur(4px);
  padding: 1rem;
  border-radius: 50%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.profile-pic {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 25px 40px rgba(0,0,0,0.1);
  border: 4px solid white;
  transition: all 0.4s;
}

.profile-pic:hover {
  transform: scale(1.02) rotate(2deg);
}

/* ========== ABOUT SECTION ========== */
.about-container {
  background: white;
  border-radius: 48px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border: 1px solid #f5e0d6;
  transition: all 0.4s;
}

.about-container:hover {
  box-shadow: 0 25px 50px rgba(200, 130, 100, 0.12);
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.about-photo-side {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.cutout-image {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 8px 8px 0px 0px #e8aa94, 15px 15px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  border: 6px solid white;
}

.cutout-image:hover {
  transform: rotate(-2deg) scale(1.02);
  box-shadow: 12px 12px 0px 0px #d9947e, 20px 20px 30px rgba(0,0,0,0.15);
}

.about-info-side {
  flex: 2;
  min-width: 300px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.info-item {
  background: #fefaf7;
  padding: 1.2rem 1.5rem;
  border-radius: 24px;
  transition: all 0.3s;
  border: 1px solid #f5e0d6;
}

.info-item:hover {
  transform: translateY(-5px);
  border-color: #e8aa94;
  background: white;
}

.info-item i {
  font-size: 1.5rem;
  color: #d9947e;
  margin-right: 12px;
}

.info-item h3 {
  display: inline-block;
  font-size: 1.1rem;
  color: #6b4a38;
}

.info-item p {
  margin-top: 8px;
  color: #9b7a68;
  font-size: 0.95rem;
  padding-left: 34px;
  line-height: 1.5;
}

.bucket-list-container {
  margin-top: 12px;
}

.bucket-item {
  background: #fefaf7;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  transition: all 0.3s;
  border: 1px solid #f5e0d6;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.bucket-item:hover {
  transform: translateX(5px);
  background: white;
  border-color: #e8aa94;
}

.bucket-icon {
  width: 32px;
  text-align: center;
  font-size: 1.2rem;
  color: #d9947e;
  flex-shrink: 0;
}

.bucket-text {
  font-weight: 500;
  color: #4a3b2c;
  font-size: 0.9rem;
  flex: 1;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  background: linear-gradient(145deg, #fff9f6, #fff5ef);
  border-radius: 60px;
  padding: 1rem 0 3rem 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header p {
  color: #c28b72;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(232, 170, 148, 0.3), rgba(217, 148, 126, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 50px rgba(200, 130, 100, 0.25);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.zoom-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9947e;
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 3;
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.zoom-icon:hover {
  background: #e8aa94;
  color: white;
  transform: scale(1.1);
}

.gallery-divider {
  text-align: center;
  margin: 3rem 0 1rem 0;
  padding: 1rem 0;
}

.gallery-divider .divider-line {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  color: #d4a58e;
  opacity: 0.7;
}

.gallery-divider .divider-line .heart-icon {
  color: #e8aa94;
  font-size: 1rem;
  animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* ========== ACTIVITIES SECTION ========== */
.activities-wrapper {
  background: linear-gradient(145deg, #fff9f5, #fff5ef);
  border-radius: 48px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.premium-upload {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border: 1px solid rgba(232, 170, 148, 0.3);
  transition: all 0.4s;
}

.premium-upload:hover {
  border-color: #e8aa94;
  transform: translateY(-3px);
}

.upload-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.8rem;
}

.upload-header i {
  font-size: 2rem;
  color: #d9947e;
  background: #fef0ea;
  padding: 12px;
  border-radius: 20px;
}

.upload-header h3 {
  font-size: 1.5rem;
  color: #6b4a38;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c28b72;
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #f0dfd6;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  background: #fefcfb;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #e8aa94;
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 170, 148, 0.2);
}

.file-drop-zone {
  border: 2px dashed #e8aa94;
  border-radius: 28px;
  padding: 1.2rem;
  text-align: center;
  background: #fefaf7;
  cursor: pointer;
  transition: all 0.3s;
}

.file-drop-zone:hover {
  background: #fff5ef;
  border-color: #d9947e;
  transform: scale(1.01);
}

.file-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.file-badge {
  background: #fef0ea;
  border-radius: 40px;
  padding: 5px 12px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b4a38;
}

.remove-file {
  cursor: pointer;
  color: #d9947e;
  font-weight: bold;
  margin-left: 5px;
}

.upload-btn {
  background: linear-gradient(135deg, #e8aa94, #d9947e);
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
  margin-top: 1rem;
  width: 100%;
}

.upload-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(217, 148, 126, 0.4);
}

.upload-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.8rem;
}

.activity-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  border: 1px solid #f0dfd6;
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.12);
}

.activity-title {
  background: linear-gradient(135deg, #fff5ef, #fff0ea);
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #6b4a38;
  border-bottom: 1px solid #f0dfd6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.activity-header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.view-activity-btn {
  background: #fef0ea;
  border: none;
  color: #d9947e;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 5px 12px;
  border-radius: 40px;
  transition: all 0.3s;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.view-activity-btn:hover {
  background: #e8aa94;
  color: white;
  transform: scale(1.02);
}

.files-list {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
  overflow-y: auto;
}

.file-item {
  background: #fefaf7;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
  border: 1px solid #f5e0d6;
}

.file-item:hover {
  background: #fff5ef;
}

.file-icon {
  font-size: 1.6rem;
  color: #d9947e;
  width: 40px;
  text-align: center;
}

.file-info {
  flex: 1;
  min-width: 0;
}

.file-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: #4a3b2c;
  word-break: break-word;
}

.file-size {
  font-size: 0.7rem;
  color: #9b7a68;
}

.file-actions {
  display: flex;
  gap: 12px;
}

.download-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  transition: 0.2s;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #c28b72;
  background: #fef0ea;
}

.download-btn:hover {
  background: #f0e0d8;
  transform: scale(1.05);
}

.delete-activity {
  background: none;
  border: none;
  color: #d9947e;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 6px;
  border-radius: 50%;
}

.delete-activity:hover {
  background: #ffe0d4;
  transform: scale(1.05);
}

.empty-activities {
  text-align: center;
  padding: 3rem;
  background: #fefaf7;
  border-radius: 28px;
}

/* ========== VIEW MODAL ========== */
.view-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.view-modal.active {
  visibility: visible;
  opacity: 1;
}

.view-modal-content {
  background: white;
  border-radius: 32px;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 0;
  animation: modalPop 0.3s ease;
}

@keyframes modalPop {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.view-modal-header {
  background: linear-gradient(135deg, #fff5ef, #fff0ea);
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #f0dfd6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
  border-radius: 32px 32px 0 0;
}

.view-modal-header h3 {
  font-size: 1.3rem;
  color: #6b4a38;
}

.close-view-modal {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #d9947e;
}

.view-modal-body {
  padding: 1.5rem;
}

.view-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #f0dfd6;
  transition: 0.2s;
}

.view-file-item:hover {
  background: #fefaf7;
}

.view-file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.view-file-preview {
  width: 45px;
  height: 45px;
  background: #fef0ea;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #d9947e;
}

.view-file-details {
  flex: 1;
}

.view-file-name {
  font-weight: 500;
  color: #4a3b2c;
}

.view-file-size {
  font-size: 0.7rem;
  color: #9b7a68;
}

.view-actions {
  display: flex;
  gap: 10px;
}

.inline-view-btn {
  background: #e8aa94;
  color: white;
  border: none;
  padding: 5px 12px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.7rem;
  transition: 0.2s;
}

.inline-view-btn:hover {
  background: #d9947e;
}

/* ========== PREVIEW AREA ========== */
.preview-area {
  margin-top: 10px;
  padding: 15px;
  background: #fefaf7;
  border-radius: 16px;
  border: 1px solid #f0dfd6;
  display: none;
}

.preview-area code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.6;
}

.preview-area .code-preview {
  background: #2d2d2d;
  color: #f8f8f2;
  padding: 15px;
  border-radius: 12px;
  overflow: auto;
  max-height: 400px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-all;
}

.image-preview-area {
  margin-top: 15px;
  text-align: center;
  display: none;
}

.image-preview-area img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pdf-preview-area {
  margin-top: 15px;
  display: none;
}

.pdf-preview-area iframe {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  border: 1px solid #f0dfd6;
}

/* ========== PROJECTS TABLE SECTION ========== */
.projects-wrapper {
  background: white;
  border-radius: 48px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border: 1px solid #f5e0d6;
}

.projects-table {
  width: 100%;
  border-collapse: collapse;
  background: #fffefc;
  border-radius: 24px;
  overflow: hidden;
}

.projects-table th,
.projects-table td {
  border: 1px solid #f0dfd6;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.projects-table th {
  background: #fef5f0;
  color: #7b5440;
  font-weight: 600;
  font-size: 0.95rem;
}

.projects-table td {
  color: #5e4235;
}

.projects-table tfoot td {
  background: #fdf6f2;
  text-align: center;
  font-style: italic;
  color: #b78e76;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-progress {
  background: #ffe8df;
  color: #c28b72;
}

.status-ongoing {
  background: #fef0ea;
  color: #d9947e;
}

/* ========== SKILLS SECTION ========== */
.skills-showcase {
  background: linear-gradient(145deg, #fff5ef, #fff8f5);
  border-radius: 48px;
  padding: 2.5rem;
}

.skill-row {
  margin-bottom: 1.5rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-weight: 500;
}

.progress-container {
  background: #f0dfd6;
  border-radius: 30px;
  height: 10px;
  overflow: hidden;
}

.progress-fill-skill {
  background: linear-gradient(90deg, #e8aa94, #c28b72);
  height: 100%;
  width: 0%;
  border-radius: 30px;
  transition: width 1.2s cubic-bezier(0.22, 0.97, 0.36, 1);
}

/* ========== CONTACT SECTION ========== */
.contact-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.contact-card {
  flex: 1;
  background: white;
  border-radius: 32px;
  padding: 2rem;
  transition: all 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  border: 1px solid #f0dfd6;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(200, 130, 100, 0.12);
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-links a {
  background: #fef0ea;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #d9947e;
  font-size: 1.3rem;
  transition: all 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  background: #e8aa94;
  color: white;
  transform: translateY(-5px) rotate(360deg);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #f0dfd6;
  border-radius: 28px;
  margin-bottom: 1rem;
  font-family: 'Inter';
}

.contact-form button {
  background: linear-gradient(135deg, #e8aa94, #d9947e);
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

footer {
  background: #fef0ea;
  text-align: center;
  padding: 2rem;
  color: #aa8877;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 20px;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .profile-pic {
    width: 250px;
    height: 250px;
  }

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}