@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  height: 100%;
}

body#about {
  background: #EEE;
}

#wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

header {
  position: relative;
}

header h1 {
  text-align: center;
  padding: 1rem;
  font-size: 2rem;
}

header h1 a {
  color: #333;
}

#navBtn {
  display: none;
}

.open {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  z-index: 100;
  width: 40px;
  height: 40px;
  border: 1px solid #CCC;
  border-radius: 2px;
}

.open::before,
.open::after {
  content: "";
}

.open span,
.open::before,
.open::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 30%;
  width: 40%;
  border-bottom: 2px solid #333;
  transition: transform .5s;
}

.open::before {
  transform: translateY(-8px);
}

.open::after {
  transform: translateY(8px);
}

#navBtn:checked + .open {
  background: #555;
}

#navBtn:checked + .open span {
  transform: scaleX(0);
}

#navBtn:checked + .open::before {
  transform: rotate(45deg);
}

#navBtn:checked + .open::after {
  transform: rotate(-45deg);
}

#navBtn:checked + .open span,
#navBtn:checked + .open::before,
#navBtn:checked + .open::after {
  border-bottom-color: #EEE;
}

nav {
  height: 100vh;
  width: 300px;
  position: absolute;
  top: 0;
  right: -300px;
  z-index: 50;
  background-color: rgba(0, 0, 0, .5);
  transition: transform .5s;
}

#navBtn:checked ~ nav {
  display: block;
  transform: translateX(-300px);
}

nav ul {
  list-style: none;
  padding-bottom: 1rem;
  text-align: center;
}

nav ul li {
  margin: 0 10px;
  padding: 10px 0;
}

nav ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  color: #EEE;
}

main {
  padding: 1rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  flex-grow: 1;
}

section {
  padding: 20px;
  background: #fff;
  width: 100%;
}

.container{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  width: 100%;
}

@media all and (min-width: 600px) {
  .container {
    grid-template-columns: 1fr 1fr;
  }
}

@media all and (min-width: 1025px) {
  header h1 {
    font-size: 4rem;
  }

  nav {
    display: block;
    height: auto;
    width: 100%;
    position: static;
    background-color: transparent;
  }
  
  nav ul li {
    display: inline-block;
    padding: 0;
  }

  nav ul li a {
    color: #333;
  }

  #navBtn,
  .open {
    display: none;
  }

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

}
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f0f0f0;
}

.image-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

.image-item img {
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.image-item img:hover {
  transform: scale(1.02);
}
.detail-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.detail-overlay.active {
  display: flex;
}

.detail-content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 90%;
  animation: fadeIn 0.4s ease;
}

.detail-content img {
  width: 100%;
  display: block;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

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

body {
  font-family: sans-serif;
  background-color: #f5f5f5;
  padding: 40px;
}

.profile {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.profile-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffb6c1;
  display: block;
  margin: 0 auto;
}

.profile-text {
  flex: 1;
}

.profile-text h2 {
  margin-top: 0;
  color: #333;
}

.profile-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}


.profile-text h2 {
  margin-top: 0;
  color: #333;
}




body {
  background-color: #fffaf3;
  color: #3d3d3d;
  font-family: "Quicksand", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
  padding: 40px 20px;
}
h1, h2, h3 {
  color: #f7b733;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
a {
  color: #f17da0;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #f55;
}
.box {
  background-color: #fffaf0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}
.btn {
  display: inline-block;
  background-color: #ffeaa7;
  color: #3d3d3d;
  padding: 12px 20px;
  border-radius: 24px;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn:hover {
  background-color: #f7d77b;
  transform: translateY(-2px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000;
  transition: transform 0.3s ease;
}

.video-wrapper:hover {
  transform: scale(1.02);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.insta-contact {
  text-align: center;
  margin: 40px 0;
}

.insta-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f7b733;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s;
}

.insta-contact a:hover {
  background: #f9c544;
}

.insta-icon {
  width: 24px;
  height: 24px;
}
