* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Schoolbell', 'Indie Flower', cursive;
    background: linear-gradient(to bottom, #e3f2fd 0%, #fff9c4 100%);
    color: #2c3e50;
    min-height: 100vh;
    padding: 20px;
}
.container::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  opacity: 0.2;
  pointer-events: none;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 60px 40px 80px;
  border-radius: 10px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;

  background-image:
    repeating-linear-gradient(
      to bottom,
      white 0px,
      white 31px,
      #a8c9ff 31px,
      #a8c9ff 32px
    ),
    linear-gradient(
      to right,
      #ff6666 60px,
      transparent 60px
    );
  background-size: 100% 32px, 100% 100%;
  background-repeat: repeat, no-repeat;
  background-position: 0 8px, 0 0;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.site-title {
    font-family: 'Caveat', cursive;
    font-size: 4rem;
    color: #ff6b6b;
    font-weight: 700;
    text-shadow: 3px 3px 0px #ffe66d;
    margin-bottom: 25px;
}

.tagline {
    font-family: 'Indie Flower', cursive;
    font-size: 1.3rem;
}

main {
    margin-top: 30px;
}

section {
    margin-bottom: 50px;
}

h2 {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    text-align: center;
}

.shadow {
    box-shadow: 3px 2px 7px #33333377;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.video-placeholder {
  width: 100%;
  max-width: 600px; /* keeps it from getting too wide */
  aspect-ratio: 16 / 9; /* keeps consistent video shape */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the box cleanly */
  border-radius: 12px;
  display: block;
}

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

.placeholder-content svg {
    margin-bottom: 10px;
    opacity: 0.9;
}

.placeholder-content p {
    font-size: 1.2rem;
    font-family: 'Schoolbell', cursive;
}

.hero-text {
    text-align: center;
    margin-top: 8px;
}

.hero-text h2 {
    font-size: 2.2rem;
    margin-bottom: 27px;
}

.service-description {
    font-size: 1.3rem;
    line-height: 1.65;
    color: #34495e;
    max-width: 700px;
}

.pricing {
    margin-top: 20px;
}

.price {
    display: inline-block;
    font-size: 2.5rem;
    color: #3b9b94;
    background: #fff9c4;
    padding: 10px 5rem;
    border-radius: 50px;
    border: 3px solid #3b9b94;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight:bold;
}

.about-me {
    background: #c5fffa;
    padding: 30px;
    border-radius: 20px;
}

.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #2c3e50;
    flex-shrink: 0;
    overflow: hidden;
}
.photo-placeholder img {
    max-width: 100%;
}

.placeholder-icon {
    font-size: 4rem;
}

.photo-placeholder p {
    color: white;
    font-size: 0.9rem;
    margin-top: 10px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #2c3e50;
}

.saving-for {
    background: #fbffc4;
    padding: 30px;
    border-radius: 20px;
}

.goals {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.goal-item {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 150px;
}

.goal-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.goal-item p {
    font-size: 1.2rem;
    color: #2c3e50;
}

.savings-message {
    text-align: center;
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 20px;
}

.signup {
    margin-top: 50px;
}

.signup-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.signup-box h2 {
    color: white;
    margin-bottom: 15px;
}

.signup-box p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.signup-button {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    background: #ffe66d;
    color: #2c3e50;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-weight: 700;
}

.signup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    background: #ffd93d;
}

.signup-button:active {
    transform: translateY(0);
}

.secure-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 3px dashed #81d4fa;
    color: #7f8c8d;
    font-size: 1rem;
}

.success-page,
.cancel-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.success-box,
.cancel-box {
    text-align: center;
    background: rgba(255, 246, 143, 0.3);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid #ffe66d;
    max-width: 600px;
}

.success-icon,
.cancel-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.success-box h1,
.cancel-box h1 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.success-message,
.cancel-message {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border: 3px solid #3b9b94;
}

.next-steps h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #3b9b94;
    margin-bottom: 15px;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.back-button {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    background: #3b9b94;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: #45b7aa;
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }
    .container {
        padding: 20px 20px 20px 20px;
    }
    
    .site-title {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .hero {
        gap: 20px;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    
    .photo-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .goals {
        flex-direction: column;
    }
    
    .signup-button {
        font-size: 1.5rem;
        padding: 15px 35px;
    }
    
    .success-box,
    .cancel-box {
        padding: 30px;
    }
}
