/* Gemstone Academy - Coloring Book Aesthetic Styles */
@font-face {
    font-family: 'Mokoto';
    src: url('resources/fonts/Mokoto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
}

body {
    font-family: 'Courier Prime', monospace;
    background: linear-gradient(135deg, #fef9e7 0%, #fef5e7 50%, #fff9e6 100%);
    background-attachment: fixed;
    color: #2c3e50;
    line-height: 1.8;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Paper texture effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px);
    pointer-events: none;
    z-index: -1;
}

/* Hero Gallery Section */
.hero-gallery {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    background: #2c3e50;
}

.gallery-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 40px;
    z-index: 3;
}

.slide-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    color: white;
    position: absolute;
    right: 40px;
    bottom: 35px;
    text-shadow: 
        2px 2px 0 #355c7d,
        4px 4px 0 #2c3e50,
        6px 6px 15px rgba(0,0,0,0.9),
        0 0 25px rgba(0,0,0,0.6);
    margin: 0;
    animation: slideInUp 0.8s ease;
    filter: drop-shadow(0 5px 12px rgba(0,0,0,0.8));
}

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

/* Hero Text Overlay - Top Positioned */
.hero-text-overlay {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: min(1000px, 90vw);
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
    padding: 60px 40px;
    border-radius: 30px;
}

.hero-title {
    font-family: 'Mokoto', cursive;
    font-size: 5rem;
    color: #e8d5f2;
    text-shadow: 
        2px 2px 0 #fff,
        4px 4px 0 #c06c84,
        7px 7px 0 #6c5b7b,
        10px 10px 0 #355c7d,
        13px 13px 25px rgba(0,0,0,0.9),
        0 0 40px rgba(108,91,123,0.5);
    margin-bottom: 20px;
    animation: fadeInScale 1.2s ease;
    line-height: 1.2;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
}

.hero-subtitle {
    font-family: 'Patrick Hand', cursive;
    font-size: 2.5rem;
    color: #ffd93d;
    text-shadow: 
        2px 2px 0 #fff,
        4px 4px 0 #ff6b9d,
        7px 7px 0 #c06c84,
        10px 10px 20px rgba(0,0,0,0.9),
        0 0 30px rgba(255,107,157,0.4);
    margin: 0;
    animation: fadeInScale 1.4s ease;
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.7));
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gallery Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,107,157,0.8);
    color: white;
    border: 4px solid white;
    font-size: 2.5rem;
    padding: 15px 25px;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    font-family: 'Bungee', cursive;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.gallery-nav:hover {
    background: rgba(255,107,157,1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

.gallery-nav.prev {
    left: 20px;
    border-radius: 0 25px 25px 0;
}

.gallery-nav.next {
    right: 20px;
    border-radius: 25px 0 0 25px;
}

/* Gallery Dots */
.gallery-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 15;   
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3); /* Increased transparency */
    border: 3px solid rgba(255,255,255,0.7); /* Border also a bit transparent */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.17); /* Subtle shadow, matches transparency */
    opacity: 0.7; /* Add overall dot transparency */
}

.dot:hover {
    background: rgba(255,217,61,0.5); /* Transparent yellow on hover */
    transform: scale(1.2);
    opacity: 1; /* Fully visible on hover */
}

.dot.active {
    background: rgba(255,217,61,0.65); /* Transparent golden when active */
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255,217,61,0.4);
    opacity: 1; /* Fully visible when active */
}

/* Gallery Top Left Message Overlay */
.gallery-top-message {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 15;
    max-width: 50vw;
    animation: fadeInSlide 1s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message-main {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 8px;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.8),
        0 0 15px rgba(0,0,0,0.6);
}

.message-subtext {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.8rem;
    color: white;
    font-weight: 600;
    text-shadow: 
        2px 2px 3px rgba(0,0,0,0.8),
        0 0 10px rgba(0,0,0,0.6);
}

/* PEP Approval Badge Stamp */
.pep-badge-stamp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 2000;
    width: 130px;
    height: 130px;
    animation: stampFloat 3s ease-in-out infinite, stampRotate 8s linear infinite;
}

@keyframes stampFloat {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-8px) rotate(-3deg); }
}

@keyframes stampRotate {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(-7deg); }
}

.stamp-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    border: 5px dashed #fff;
    border-radius: 50%;
    box-shadow: 
        0 0 0 4px #355c7d,
        0 0 0 8px rgba(255,107,157,0.3),
        0 8px 20px rgba(0,0,0,0.3),
        inset 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stamp-inner:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 0 0 4px #355c7d,
        0 0 0 8px rgba(255,107,157,0.5),
        0 12px 30px rgba(0,0,0,0.4),
        inset 0 2px 8px rgba(0,0,0,0.3),
        0 0 30px rgba(255,107,157,0.6);
}

.stamp-inner img {
    width: 70px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 5px;
}

.stamp-text {
    font-family: 'Bungee', cursive;
    font-size: 0.85rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.5),
        0 0 10px rgba(255,255,255,0.3);
    font-weight: bold;
}

/* Navigation Bar */
nav {
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 50%, #6c5b7b 100%);
    padding: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-bottom: 5px solid #355c7d;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.navbar-title {
    font-family: 'Mokoto', 'Bungee Shade', cursive;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 
        2px 2px 0 #355c7d,
        3px 3px 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-title:hover {
    color: #fff;
    text-shadow: 
        2px 2px 0 #355c7d,
        3px 3px 15px rgba(255,255,255,0.6);
    transform: scale(1.05);
}

nav ul.nav-menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav ul.nav-menu li {
    position: relative;
}

nav ul.nav-menu li a {
    display: block;
    padding: 25px 35px;
    color: #fff;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: #ffd93d;
    transition: width 0.3s ease;
}

nav ul.nav-menu li a:hover::after {
    width: 80%;
}

nav ul.nav-menu li a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-menu span {
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: all;
}

body.menu-open {
    overflow: hidden;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    overflow: visible;
}

/* Header Section */
.header-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: white;
    border: 6px solid #355c7d;
    border-radius: 30px;
    box-shadow: 
        0 0 0 3px #ff6b9d,
        0 0 0 6px white,
        0 0 0 9px #ffd93d,
        0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    transform: rotate(-0.5deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(-0.5deg) translateY(0px); }
    50% { transform: rotate(0.5deg) translateY(-10px); }
}

h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 4.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 
        3px 3px 0 #ff6b9d,
        6px 6px 0 #ffd93d,
        9px 9px 0 #6c5b7b;
    line-height: 1.2;
    letter-spacing: 3px;
    font-weight: 900;
}

h2 {
    font-family: 'Patrick Hand', cursive;
    font-size: 2rem;
    color: #2c3e50;
    margin: 25px 0 15px 0;
}

h3 {
    font-family: 'Architects Daughter', cursive;
    font-size: 1.5rem;
    color: #c06c84;
    margin: 20px 0 10px 0;
    border-left: 8px solid #ffd93d;
    padding-left: 20px;
    background: rgba(255,217,61,0.2);
    padding: 15px 20px;
    border-radius: 0 15px 15px 0;
}

p {
    font-family: 'Courier Prime', monospace;
    font-size: 1.2rem;
    margin: 20px 0;
    padding: 15px 25px;
    background: white;
    border: 3px dashed #c06c84;
    border-radius: 15px;
    line-height: 1.9;
    color: #e74c3c;
}

p b {
    font-family: 'Fredoka', sans-serif;
    color: #e74c3c;
    font-size: 1.3em;
}

p i {
    font-family: 'Dancing Script', cursive;
    font-size: 1.15em;
    color: #6c5b7b;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 50px 0 30px 0;
    flex-wrap: wrap;
}

.tab-button {
    padding: 20px 40px;
    border: 4px solid #355c7d;
    background: linear-gradient(135deg, #ffd93d 0%, #ffb347 100%);
    color: #2c3e50;
    font-family: 'Bungee', cursive;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 0 #355c7d, 0 8px 20px rgba(0,0,0,0.2);
    position: relative;
    top: 0;
}

.tab-button:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 10px 0 #355c7d, 0 15px 30px rgba(0,0,0,0.3);
}

.tab-button:active,
.tab-button.active {
    top: 4px;
    box-shadow: 0 2px 0 #355c7d, 0 4px 10px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    color: white;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
    padding: 40px;
    background: white;
    border: 6px solid #6c5b7b;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 40px;
}

.tab-content.active {
    display: block;
}

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

/* Video Section */
.video-section {
    margin: 50px 0;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.intro-video-container {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.intro-video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #eee;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-video-wrapper video {
    border-radius: 18px;
    display: block;
    background: #eee;
}

.intro-video-container p {
    margin-top: 12px;
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 5px solid #2c3e50;
    border-radius: 20px;
    padding: 10% 5%;
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.video-placeholder:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Image Gallery */
.image-gallery {
    margin: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.image-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: 5px solid #2c3e50;
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '🎨';
    position: absolute;
    font-size: 5rem;
    opacity: 0.2;
}

.image-placeholder:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.image-placeholder[onclick] {
    transition: all 0.3s ease;
}

.image-placeholder[onclick]:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    filter: brightness(1.1);
}

.image-placeholder[onclick]:active {
    transform: scale(1.02) rotate(-1deg);
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    border: 5px solid;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:nth-child(1) {
    border-color: #ff6b9d;
    transform: rotate(-1deg);
}

.feature-card:nth-child(2) {
    border-color: #ffd93d;
    transform: rotate(1deg);
}

.feature-card:nth-child(3) {
    border-color: #6c5b7b;
    transform: rotate(-0.5deg);
}

.feature-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.feature-card h3 {
    font-family: 'Bungee', cursive;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #2c3e50;
    background: transparent;
    border: none;
}

/* Showcase Items */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 30px;
}

.showcase-item {
    background: white;
    border: 6px double #c06c84;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.showcase-item p {
    color: #2c3e50;
    background: transparent;
    border: none;
}

.showcase-item:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    border-style: solid;
}

.showcase-item h4 {
    font-family: 'Architects Daughter', cursive;
    font-size: 1.8rem;
    color: #355c7d;
    margin-bottom: 15px;
}

.view-project-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 15px;
    border: 3px solid #355c7d;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #355c7d, 0 6px 15px rgba(0,0,0,0.2);
    position: relative;
    top: 0;
}

.view-project-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 0 #355c7d, 0 10px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffd93d 0%, #ffb347 100%);
    color: #2c3e50;
}

.view-project-btn:active {
    top: 3px;
    box-shadow: 0 1px 0 #355c7d, 0 3px 10px rgba(0,0,0,0.2);
}

/* Pricing Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.plan-card {
    background: white;
    border: 6px solid;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
    animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.plan-card:nth-child(1) { border-color: #ff6b9d; }
.plan-card:nth-child(2) { border-color: #ffd93d; }
.plan-card:nth-child(3) { border-color: #6c5b7b; }

.plan-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.plan-card h4 {
    font-family: 'Bungee', cursive;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.plan-card .price {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    color: #c06c84;
    margin: 20px 0;
}

.plan-card ul {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.plan-card ul li {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 2px dotted #ddd;
}

.plan-card ul li::before {
    content: '✓ ';
    color: #27ae60;
    font-weight: bold;
    font-size: 1.4rem;
    margin-right: 10px;
}

.plan-card p {
    color: #2c3e50;
    background: transparent;
    border: none;
}

/* Blog Posts */
.blog-post {
    background: white;
    border-left: 8px solid #ff6b9d;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.blog-post h4 {
    font-family: 'Bungee', cursive;
    font-size: 1.8rem;
    color: #355c7d;
    margin-bottom: 15px;
}

.blog-post .date {
    font-family: 'Courier Prime', monospace;
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 15px;
}

.blog-post p {
    border: none;
    padding: 0;
    background: transparent;
    color: #2c3e50;
}

/* Decorative Elements */
.doodle {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.doodle-1 {
    top: 10%;
    left: 5%;
    font-size: 5rem;
    animation: rotate 20s linear infinite;
}

.doodle-2 {
    top: 30%;
    right: 5%;
    font-size: 4rem;
    animation: rotate 15s linear infinite reverse;
}

.doodle-3 {
    bottom: 20%;
    left: 8%;
    font-size: 6rem;
    animation: rotate 25s linear infinite;
}

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

/* Registration Form */
.signup-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border: 6px solid #ff6b9d;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 
        0 0 0 3px #ffd93d,
        0 0 0 6px white,
        0 0 0 9px #6c5b7b,
        0 15px 40px rgba(0,0,0,0.2);
    position: relative;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.signup-form:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 
        0 0 0 3px #ffd93d,
        0 0 0 6px white,
        0 0 0 9px #6c5b7b,
        0 20px 50px rgba(0,0,0,0.3);
}

.signup-form h4 {
    font-family: 'Bungee', cursive;
    font-size: 2.2rem;
    color: #355c7d;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 
        2px 2px 0 #ffd93d,
        4px 4px 0 #ff6b9d;
}

.signup-form label {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    color: #2c3e50;
    display: block;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.signup-form input,
.signup-form select {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Courier Prime', monospace;
    font-size: 1.1rem;
    border: 4px solid #355c7d;
    border-radius: 15px;
    background: #fef9e7;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.signup-form input:focus,
.signup-form select:focus {
    outline: none;
    border-color: #ff6b9d;
    background: white;
    box-shadow: 0 0 0 3px rgba(255,107,157,0.2);
    transform: translateX(5px);
}

.signup-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23355c7d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.submit-button {
    width: 100%;
    margin-top: 35px;
    padding: 20px 40px;
    border: 5px solid #355c7d;
    background: linear-gradient(135deg, #ffd93d 0%, #ffb347 100%);
    color: #2c3e50;
    font-family: 'Bungee', cursive;
    font-size: 1.4rem;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 0 #355c7d, 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    top: 0;
}

.submit-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 13px 0 #355c7d, 0 18px 35px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    color: white;
}

.submit-button:active {
    top: 6px;
    box-shadow: 0 2px 0 #355c7d, 0 4px 15px rgba(0,0,0,0.2);
}

.form-note {
    font-family: 'Patrick Hand', cursive;
    font-size: 1rem;
    color: #95a5a6;
    text-align: center;
    margin-top: 20px;
    padding: 0;
    background: transparent;
    border: none;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .hero-gallery {
        height: 50vh;
        min-height: 400px;
        max-width: 100vw;
    }
    
    .gallery-top-message {
        top: 15px;
        left: 15px;
        max-width: calc(100vw - 160px);
    }
    
    .message-main {
        font-size: 1rem;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }
    
    .message-subtext {
        font-size: 0.85rem;
    }
    
    .container {
        padding: 20px 15px;
        max-width: 100vw;
    }
    
    .hero-text-overlay {
        width: 95%;
        padding: 40px 20px;
        max-width: 95vw;
    }
    
    .hero-title {
        font-size: 3.5rem;
        text-shadow:
            2px 2px 0 #fff,
            4px 4px 0 #c06c84,
            7px 7px 0 #6c5b7b,
            10px 10px 18px rgba(0,0,0,0.9),
            0 0 30px rgba(108,91,123,0.4);
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        text-shadow: 
            2px 2px 0 #fff,
            4px 4px 0 #ff6b9d,
            6px 6px 12px rgba(0,0,0,0.9),
            0 0 20px rgba(255,107,157,0.4);
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .slide-title {
        font-size: 1.0rem;
        text-shadow: 
            2px 2px 0 #355c7d,
            4px 4px 10px rgba(0,0,0,0.9),
            0 0 20px rgba(0,0,0,0.6);
    }
    
    .slide-overlay {
        padding: 20px 15px;
    }
    
    .gallery-nav {
        font-size: 1.8rem;
        padding: 10px 18px;
    }
    
    .gallery-nav.prev {
        left: 5px;
    }
    
    .gallery-nav.next {
        right: 5px;
    }
    
    .pep-badge-stamp {
        bottom: 10px;
        left: 10px;
        width: 90px;
        height: 90px;
    }
    
    .stamp-inner {
        border: 3px dashed #fff;
        box-shadow: 
            0 0 0 3px #355c7d,
            0 0 0 6px rgba(255,107,157,0.3),
            0 5px 15px rgba(0,0,0,0.3),
            inset 0 2px 6px rgba(0,0,0,0.2);
    }
    
    .stamp-inner img {
        width: 45px;
    }
    
    .stamp-text {
        font-size: 0.65rem;
    }
    
    h1 {
        font-size: 2.5rem;
        text-shadow: 2px 2px 0 #ff6b9d, 4px 4px 0 #ffd93d, 6px 6px 0 #6c5b7b;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .navbar-container {
        padding: 15px 20px;
        position: relative;
    }
    
    .navbar-title {
        font-size: 1.5rem;
        padding: 10px 0;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    nav ul.nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 50%, #6c5b7b 100%);
        width: 75%;
        max-width: 300px;
        height: 100vh;
        padding: 80px 0 20px 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav ul.nav-menu.active {
        right: 0;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    nav ul li a {
        padding: 20px 25px;
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }
    
    nav ul li a::after {
        display: none;
    }
    
    .video-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .header-section {
        margin: 30px 10px;
        padding: 20px;
    }
    
    .video-grid,
    .gallery-grid,
    .feature-cards,
    .showcase-grid,
    .plans-grid {
        padding: 0;
    }
    
    p {
        padding: 15px;
        word-wrap: break-word;
    }
    
    .signup-form {
        padding: 30px 20px;
        margin: 0 10px;
        box-shadow: 
            0 0 0 3px #ffd93d,
            0 0 0 6px white,
            0 0 0 9px #6c5b7b,
            0 10px 30px rgba(0,0,0,0.2);
    }
    
    .signup-form h4 {
        font-size: 1.8rem;
    }
    
    .signup-form label {
        font-size: 1.1rem;
        margin-top: 20px;
    }
    
    .signup-form input,
    .signup-form select {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .submit-button {
        font-size: 1.2rem;
        padding: 18px 30px;
    }
}

/* Additional Animation */
.wiggle {
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

