/* Vintage-inspiriertes Design mit Pastellfarben */
:root {
  --mint-green: #98c1a9;
  --powder-pink: #ebd2d1;
  --soft-yellow: #f7e8d0;
  --light-blue: #b7d7e8;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
}

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

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background-color: var(--soft-yellow);
  color: #333;
}

@media only screen and (max-width: 768px) {
  body {
    hyphens: auto;
  }
}

header {
  background-color: var(--powder-pink);
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  width: 100px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: "Sour Gummy", sans-serif;
  color: #2c3e50;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

@media only screen and (max-width: 768px) {
  nav ul {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

nav a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: bold;
  transition: color 0.3s, border-bottom 0.3s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--mint-green);
  border-bottom: 2px solid currentColor;
}

section {
  padding: 4rem 2rem;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.course-section {
  padding: 4rem 2rem;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#charleston,
.charleston-bg {
  background-color: var(--powder-pink);
}

#swing,
.swing-bg {
  background-color: var(--mint-green);
}

#lindyhop,
.lindyhop-bg {
  background-color: var(--light-blue);
}

.dance-info {
  max-width: 800px;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-align: center;
  font-family: "Sour Gummy", sans-serif;
}

footer {
  background-color: var(--powder-pink);
  text-align: center;
  padding: 1rem 2rem;
  color: #2c3e50;
}

/* Footer Styles */
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.social-media {
  display: flex;
  gap: 15px;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-content p {
  margin: 0;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  padding: 5px;
}

.footer-links a:hover {
  color: #8b4513;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 0;
  }

  .social-media {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    gap: 15px;
  }
}

/* Slider Styles */
.slider-container {
  position: relative;
  width: 80%;
  max-width: 1000px;
  height: 500px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
  .slider-container {
  width: 100%;
}
  
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.slider-info {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
  .slider-info {
  bottom: 0;
  right: 0;
  max-width: 100%;
}
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
}

.slider-controls button {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
}

.slider-controls button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.intro {
  background-color: var(--powder-pink);
  min-height: 10vh;
  padding: 4rem 2rem;
}

.intro-text {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  padding: 0 1rem;
}

.intro-text h2 {
  margin-bottom: 1rem;
}

.intro-text p {
  line-height: 1.6;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--powder-pink);
  color: #2c3e50;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

#backToTop:hover {
  background: var(--mint-green);
  transform: translateY(-3px);
}

.newsletter {
    background: linear-gradient(45deg, var(--powder-pink) 0%, var(--soft-yellow) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: url('../images/vintagestyle-high-resolution-logo-removebg-preview.png') center/contain no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.newsletter-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-container:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.newsletter h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.newsletter p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.newsletter-form input[type="email"] {
    padding: 1rem 1.5rem;
    width: 350px;
    border: 2px solid #eee;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--mint-green);
    box-shadow: 0 0 0 3px rgba(122, 179, 147, 0.2);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background-color: var(--mint-green);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background-color: #2c3e50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

@media only screen and (max-width: 768px) {
    .newsletter {
        padding: 4rem 1rem;
    }

    .newsletter-container {
        padding: 2rem 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
        max-width: 300px;
    }

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

.dance-highlights {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  max-width: 1000px;
}
@media only screen and (max-width: 768px) {
  .dance-highlights {
    flex-direction: column;
  }
}

.highlight {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 250px;
}

@media only screen and (max-width: 768px) {
  .highlight {
    max-width: 100%;
  }
}

.highlight i {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.highlight h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-family: "Sour Gummy", sans-serif;
}

.highlight p {
  font-size: 0.9rem;
  color: #666;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    position: relative;
    z-index: 2001;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    opacity: 0;
    animation: modalFadeIn 0.3s ease-out forwards;
}

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

.modal h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 1.8rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #2c3e50;
}

#anmeldeFormular {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

#anmeldeFormular input:not([type="radio"], [type="checkbox"]) {
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

#anmeldeFormular input:focus {
    outline: none;
    border-color: var(--mint-green);
}

.role-selection, .partner-section {
    background-color: #f8f9fa;
    padding: 1.2rem;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.role-selection label, .partner-section label {
    font-weight: 500;
    color: #2c3e50;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin: 0.8rem 0;
    padding: 0.5rem 0;
}

#partnerFields {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
}

input#partnerFirstName {
    margin-bottom: 1em;
}

#anmeldeFormular button[type="submit"] {
    background-color: var(--mint-green);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

#anmeldeFormular button[type="submit"]:hover {
    background-color: #7ab393;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Course Cards Styles */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

@media only screen and (max-width: 768px) {
    .course-grid {
        padding: 0;
    }
}

.course-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

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

.course-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: "Sour Gummy", sans-serif;
}

.course-card p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    font-size: 1.1rem;
}

.course-card p:last-of-type {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.signup-btn {
    background-color: var(--mint-green);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 80%;
    margin: 1rem auto 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.signup-btn:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.signup-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Gallery Styles */
.gallery-section {
    background: linear-gradient(90deg, 
        var(--powder-pink) 0%,
        var(--mint-green) 50%,
        var(--light-blue) 100%
    );
    padding: 4rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

@media only screen and (max-width: 768px) {
    .gallery-grid {
        padding: 0 !important
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 1rem;
    }
}

/* Vinyl Player Styles */
.vintage-player {
    width: 300px;
    margin: 2rem auto;
    text-align: center;
    position: relative;
}

.vinyl-record {
    width: 200px;
    height: 200px;
    background: #000000;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.vinyl-record::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;    background: 
        repeating-radial-gradient(
            circle at center,
            transparent 0,
            transparent 5px,
            rgba(255, 255, 255, 0.1) 6px,
            rgba(0, 0, 0, 0.8) 7px
        ),
        repeating-radial-gradient(
            circle at center,
            transparent 0,
            transparent 15px,
            rgba(255, 255, 255, 0.05) 16px,
            rgba(0, 0, 0, 0.8) 17px
        );
    border-radius: 50%;
}

.record-label {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    padding: 5px;
}

.record-label i {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.record-label span {
    font-size: 12px;
    color: #333;
    text-align: center;
    word-wrap: break-word;
    max-width: 90%;
}

.play-btn {
    background: var(--mint-green);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 1rem auto;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #7ab393;
}

.play-btn i {
    color: white;
    font-size: 1.2rem;
    margin-left: 3px;
}

.vintage-player.playing .vinyl-record {
    animation: vinylSpin 2s linear infinite;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Kontakt Seite Styles */
.contact {
    padding: 4rem 2rem;
}

.contact-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

@media only screen and (max-width: 768px) {
    .contact-container {
        padding: 0;
        flex-direction: column;
    }
}

.contact-info,
.contact-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: "Sour Gummy", sans-serif;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--mint-green);
    margin-top: 0.3rem;
}

.social-media {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: #2c3e50;
    font-size: 1.8rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--mint-green);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mint-green);
}

.submit-btn {
    background-color: var(--mint-green);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #7ab393;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media only screen and (max-width: 768px) {
    .map-container {
        padding: 0;
    }
}

.map {
    border-radius: 15px;
    overflow: hidden;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(51, 51, 51, 0.95);
  color: white;
  padding: 20px;
  display: none;
  z-index: 1000;
  text-align: center;
  font-size: 16px;
  box-sizing: border-box;
  width: 100%;
}

.cookie-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.cookie-buttons button {
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  min-width: 120px;
  flex: 0 1 auto;
  white-space: nowrap;
}

#accept-cookies {
  background-color: #4CAF50;
  color: white;
}

#reject-cookies {
  background-color: #f44336;
  color: white;
  font-family: 'Roboto', sans-serif;
}

.cookie-buttons button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 15px 10px;
    font-size: 14px;
    max-width: 100vw;
  }

  .cookie-buttons {
    gap: 10px;
    margin-top: 10px;
  }

  .cookie-buttons button {
    width: calc(50% - 5px);
    min-width: unset;
    padding: 8px 15px;
  }
}

/* FAQ Styles */
.faq {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #8b4513;
  margin-bottom: 10px;
  font-family: "Sour Gummy", sans-serif;
}

/* Legal Content Styles */
.impressum,
.datenschutz {
  align-items: flex-start;
  background-color: var(--soft-yellow);
  min-height: calc(100vh - 200px);
  padding: 2rem;
}

.legal-content {
  max-width: 1200px;
  margin: 40px auto;
  font-family: "Roboto", sans-serif;
}

.legal-content h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 1.5rem;
  font-family: "Sour Gummy", sans-serif;
  font-weight: normal;
}

.legal-content h3 {
  color: var(--mint-green);
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 1rem;
  font-family: "Sour Gummy", sans-serif;
  font-weight: normal;
}

.legal-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #4a4a4a;
}

.legal-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #4a4a4a;
}

/* Testimonials Styles */
.testimonials {
  padding: 4rem 2rem;
  background-color: var(--soft-yellow);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  text-align: center;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 3px solid var(--powder-pink);
}

.testimonial blockquote {
  font-style: italic;
  color: #555;
  margin: 1rem 0;
  line-height: 1.6;
}

.testimonial-author {
  color: #666;
  font-weight: 600;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .testimonials-container {
    grid-template-columns: 1fr;
  }
  
  .testimonial {
    margin-bottom: 1.5rem;
  }
}

/* Video Tutorial Styles */
.video-tutorial {
  margin: 2rem auto;
  max-width: 800px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-tutorial h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: "Sour Gummy", sans-serif;
  text-align: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .video-tutorial {
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 10px;
  }
}

/* Events Styles */
.events {
  padding: 4rem 2rem;
  background-color: var(--powder-pink);
}

.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.event-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-date {
  background: var(--mint-green);
  padding: 1.5rem;
  text-align: center;
  color: white;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date .day {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.event-date .month {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.event-info {
  padding: 1.5rem;
  flex: 1;
}

.event-info h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: "Sour Gummy", sans-serif;
}

.event-time,
.event-location {
  color: #666;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.event-time i,
.event-location i {
  margin-right: 0.5rem;
  color: var(--mint-green);
}

.event-description {
  margin: 1rem 0;
  color: #4a4a4a;
}

.event-card .signup-btn {
  width: auto;
  padding: 0.8rem 1.5rem;
  margin: 0;
  background-color: var(--mint-green);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.event-card .signup-btn:hover {
  background-color: #7ab393;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .events-container {
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  
  .event-card {
    flex-direction: column;
    margin: 0 1rem;
  }
  
  .event-date {
    padding: 1rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  
  .event-date .month {
    margin-top: 0;
  }
}

