/* === GLOBAL STYLES === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

a {
  color: #3a3a9a;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

/* === NAVIGATION === */
nav {
  background-color: #2e2a69;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

nav ul li {
  display: inline-block;
  flex-shrink: 0;
}

nav ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #ffffff;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

nav ul li a:hover {
  background-color: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  transform: translateY(-2px);
}

/* === MOBILE HERO SECTION === */
.hero-section {
  background: linear-gradient(135deg, #2a2a6c 0%, #4a4a8a 50%, #d4af37 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
}

.hero-content {
  text-align: center;
  color: white;
}

.hero-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.05);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s ease;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease;
}

.hero-button {
  background-color: #ffd700;
  color: #2a2a6c;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-button:hover {
  background-color: #fff;
  color: #2a2a6c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.hero-button-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-button-secondary:hover {
  background-color: white;
  color: #2a2a6c;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === GLASSMORPHISM CARDS === */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
}

/* === MAIN CONTENT === */
main {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* === SECTION HEADINGS === */
h2 {
  color: #2a2a6c;
  font-family: 'Playfair Display', serif;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* === EXPLORE GRID === */
.explore {
  margin-top: 3rem;
}

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

.explore-card {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8f0 100%);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  color: #222;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(42, 42, 108, 0.2);
  border-color: #ffd700;
}

.explore-card h3 {
  color: #2a2a6c;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

/* === CALL TO ACTION SECTION === */
.cta-section {
  background: linear-gradient(135deg, #2a2a6c 0%, #4a4a8a 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(42, 42, 108, 0.3);
}

.cta-section h2 {
  color: white;
  margin-top: 0;
}

.cta-button {
  display: inline-block;
  background-color: #ffd700;
  color: #2a2a6c;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* === CONTACT PAGE STYLES === */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

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

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-card {
  text-align: center;
  padding: 2rem;
}

.contact-card h3 {
  color: #2a2a6c;
  margin-bottom: 0.5rem;
}

.contact-options {
  margin-top: 2rem;
}

.contact-options ul {
  list-style: none;
  padding-left: 0;
}

.contact-options li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.contact-options li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

.contact-aside {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.contact-aside img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* === DIGITAL BUSINESS CARD / QR CODE === */
.digital-card-section {
  margin-top: 2rem;
  text-align: center;
}

.digital-card-section h3 {
  color: #2a2a6c;
  margin-bottom: 1rem;
}

.qr-container {
  background: white;
  padding: 2rem;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  border: 3px solid #f0f0f0;
  box-shadow: 0 8px 32px rgba(42, 42, 108, 0.15);
  transition: all 0.3s ease;
}

.qr-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(42, 42, 108, 0.25);
  border-color: #ffd700;
}

.qr-label {
  font-weight: bold;
  color: #2a2a6c;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.qr-code-image {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
  padding: 0.5rem;
  background: white;
}

.qr-url {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
  font-family: monospace;
  word-break: break-all;
}


/* === MEDIA/VIDEO GRID === */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.video-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-item iframe {
  width: 100%;
  height: 180px;
  border: none;
}

.video-item p {
  text-align: center;
  font-weight: bold;
  font-family: 'Source Sans Pro', sans-serif;
  margin: 1rem;
  color: #2a2a6c;
}

/* === PROJECT SECTIONS === */
.project {
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #ffd700;
  transition: all 0.3s ease;
}

.project:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.project h2 {
  margin-top: 0;
  color: #2a2a6c;
}

/* === IMAGES === */
img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.bio-image {
  display: block;
  margin: 0 auto 2rem auto;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.bio-image:hover {
  transform: scale(1.02);
}


/* === FOOTER === */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #2a2a6c 0%, #1a1a4c 100%);
  color: white;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
}

.footer-content p {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icon {
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
  transform: translateY(-3px);
  color: #ffd700;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-quote {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-button {
    width: 100%;
    max-width: 300px;
  }

  nav ul {
    justify-content: flex-start;
    padding: 0 1rem;
  }

  nav ul li a {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

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

  .contact-container {
    flex-direction: column;
  }
}

/* === SMOOTH SCROLLING === */
html {
  scroll-behavior: smooth;
}

/* === BUTTON STYLES === */
button,
input[type="submit"] {
  background-color: #3a3a9a;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(58, 58, 154, 0.3);
}

button:hover,
input[type="submit"]:hover {
  background-color: #2a2a6c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58, 58, 154, 0.4);
}

/* === FORM ELEMENTS === */
input,
textarea,
select {
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}