/* --- BOW IMAGE --- */
.home-bow {
  width: 100px;             
  display: block;           
  margin: 0 auto 20px;      
  align-items: center;
}

/* --- RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #EBB4BF 40%, #4C1513 90%);
  color: #4C1513;
  font-family: 'Bitter', serif;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* --- TOPBAR --- */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(235, 180, 191, 0.5);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 2px solid #4C1513;
  transition: background 0.3s ease;
}

.topbar:hover {
  background: rgba(235, 180, 191, 0.75);
}

.logo {
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  color: #4C1513;
  letter-spacing: 1.2px;
  font-weight: 600;
  user-select: none;
}

.nav {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav a {
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  color: #4C1513;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #4C1513;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  width: 100%;
}

/* --- HOME SECTION --- */
.home {
  min-height: 90vh;
  display: flex;
  flex-direction: column;      /* stack bow + content */
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #4C1513 40%, #6b1f1c 90%);
  color: #EBB4BF;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
  animation: fadeInUp 1.2s ease forwards;
}

.home-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  animation: float 6s ease-in-out infinite;
}

.home h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px;
  letter-spacing: 3px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(235, 180, 191, 0.6);
}

.home p {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  margin-top: 10px;
  color: #f4ccd7cc;
  text-shadow: 0 0 8px rgba(235, 180, 191, 0.7);
}

/* --- IMAGE SECTIONS --- */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* --- GENERAL SECTIONS --- */
section {
  padding: 80px 10%;
  text-align: center;
  background: #EBB4BF;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(76, 21, 19, 0.2);
  margin: 40px auto;
  max-width: 1100px;
  animation: fadeInUp 1.5s ease forwards;
}

h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin-bottom: 45px;
  color: #4C1513;
  font-size: 36px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(76, 21, 19, 0.5);
}

/* --- FLEXBOX --- */
.flex {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

/* --- PHOTO CARDS --- */
.photo-card {
  width: 220px;
  text-decoration: none;
  color: #4C1513;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(76, 21, 19, 0.12);
  backdrop-filter: saturate(180%) blur(12px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  user-select: none;
}

.photo-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 50px rgba(76, 21, 19, 0.3);
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.photo-card img:hover {
  transform: scale(1.1);
}

.photo-card p {
  margin-top: 15px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
}

/* --- SKILLS --- */
.skills {
  background: #4C1513;
  padding: 80px 10%;
  text-align: center;
}

.skills h2 {
  color: #EBB4BF;
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.skill-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.skill-list button {
  background: rgba(235, 180, 191, 0.15);
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  color: #EBB4BF;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(235, 180, 191, 0.2);
}

.skill-list button:hover {
  background: #EBB4BF;
  color: #4C1513;
  box-shadow: 0 4px 12px rgba(76, 21, 19, 0.6);
}

/* --- DEMO REEL --- */
.demo {
  background: #EBB4BF;
  padding: 80px 10%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(76, 21, 19, 0.15);
  margin: 40px auto;
  max-width: 1100px;
  animation: fadeInUp 1.7s ease forwards;
}

.video-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.video-box video {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(76, 21, 19, 0.3);
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.video-box video:hover {
  transform: scale(1.05);
}

/* --- PROJECTS --- */
#projects {
  background: #4C1513;
  padding: 80px 20px;
  text-align: center;
}

#projects h2 {
  color: #ffffff;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.project {
  background: #f5c2c7;
  padding: 30px 20px;
  width: 220px;
  border-radius: 20px;
  font-family: 'Bitter', serif;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  text-align: center;
  margin: auto;
  color: #4C1513;
}

.project:hover {
  transform: scale(1.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* --- CONTACT --- */
.contact {
  background: #EBB4BF;
  padding: 80px 10%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(76, 21, 19, 0.15);
  max-width: 1100px;
  margin: 40px auto 80px auto;
  animation: fadeInUp 1.9s ease forwards;
}

.contact p {
  font-size: 18px;
  font-weight: 600;
  color: #4C1513cc;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  user-select: text;
}

.soon {
  margin-top: 40px;
  font-family: 'Pacifico', cursive;
  font-size: 30px;
  color: #4C1513cc;
  opacity: 0.9;
  letter-spacing: 2px;
  user-select: none;
}

/* --- MOBILE --- */
@media (max-width: 768px){
  .topbar{
    flex-direction: column;
    gap: 10px;
  }

  .nav{
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .home-content{
    flex-direction: column;
  }

  .home h1{
    font-size: 34px;
  }

  .home p{
    font-size: 18px;
  }

  .image {
    max-width: 90%;
  }

  section{
    padding: 60px 6%;
  }

  .flex{
    flex-direction: column;
    align-items: center;
  }

  .photo-card{
    width: 85%;
  }

  .project{
    width: 85%;
  }
}

/* --- FOOTER CONTAINER --- */
.footer {
  display: flex;
  align-items: center;   
  justify-content: center; 
  height: 80px;
  background: #4C1513;   
  color: #EBB4BF;        
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  border-top: 2px solid #EBB4BF; 
  
}

/* --- THE TEXT & ICON WRAPPER --- */
.footer p {
  margin: 0;
  font-size: 14px;
  display: flex;        
  align-items: center;    
  gap: 8px;           
}

.footer-icon {
  font-size: 1.2em;    
}
}