/* ===========================================
   Rebelle Beach - Shared Styles
   =========================================== */

body {
    background-color: #FDFBF7;
    color: #334155;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Decorative blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.4;
}

/* Polaroid photo frames */
.polaroid-frame {
    background: white;
    padding: 10px 10px 30px 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.polaroid-frame:hover {
    transform: scale(1.02) rotate(0deg) !important;
    z-index: 10;
}

/* Card hover effects */
.image-card {
    transition: all 0.4s ease;
}
.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.image-card img {
    transition: transform 0.6s ease;
}
.image-card:hover img {
    transform: scale(1.05);
}

/* Page fade-in */
.fade-in {
    animation: softFade 0.6s ease-out forwards;
}
@keyframes softFade {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Nav link underline effect */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -4px;
    left: 0;
    background-color: #FFB703;
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Schedule tables */
.rooster-table th,
.rooster-table td {
    padding: 14px 16px;
}
.rooster-table th {
    background-color: #f8fafc;
    color: #1e293b;
    font-weight: 600;
    border-bottom: 2px solid #E4161A;
}
.rooster-table tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s;
}
.rooster-table tr:hover {
    background-color: #ffe5e5;
}

/* Hero wave bottom */
.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.hero-wave-bottom svg {
    display: block;
    width: 100%;
    height: 3rem;
}
@media (min-width: 768px) {
    .hero-wave-bottom svg {
        height: 5rem;
    }
}

/* Footer wave top */
.footer-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg) translateY(99%);
}
.footer-wave-top svg {
    display: block;
    width: 100%;
    height: 2.5rem;
}
@media (min-width: 768px) {
    .footer-wave-top svg {
        height: 4rem;
    }
}

/* Pricing cards hover */
.pricing-card {
    transition: transform 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-8px);
}

/* Post-it note style */
.post-it {
    background: #FFFCE8;
    border: 1px solid #f0ecd1;
    position: relative;
}
.post-it::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #dc2626;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Responsive iframe container */
.form-container iframe {
    width: 100%;
    border: none;
    min-height: 80vh;
}
@media (min-width: 768px) {
    .form-container iframe {
        height: 1800px;
    }
}
@media (max-width: 767px) {
    .form-container iframe {
        height: 100vh;
    }
}