/* Frosted Mermaid Website Styles */

:root {
    --primary-pink: #ec4899;
    --primary-pink-hover: #be185d;
    --primary-pink-light: #fce7f3;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Utility Classes */
/* Hero gradient is defined in topbanner.css */
.hero-gradient {
    background: linear-gradient(270deg, #87CEEB, #FFD700, #FF69B4);
    background-size: 600% 600%;
    animation: gradient 15s ease infinite;
    position: relative;
}



@keyframes gradient {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.text-shadow {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

.section-divider {
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, #f5f7fa 50%), 
                linear-gradient(to bottom left, transparent 49%, #f5f7fa 50%);
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-position: left, right;
}

/* Card Components */
.card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-padding {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content {
    flex-grow: 1;
}

.card-footer {
    margin-top: auto;
    width: 100%;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(to right, var(--primary-pink), var(--primary-pink-hover));
    color: white;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-primary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.btn-secondary {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: white;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Table Styles */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-table th {
    background: var(--primary-pink);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:nth-child(even) {
    background: #f9fafb;
}

/* Quote Styles */
.quote {
    position: relative;
    font-style: italic;
    color: var(--text-gray);
    padding-left: 2rem;
}

.quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.25rem;
    font-size: 2rem;
    color: var(--primary-pink);
    opacity: 0.5;
}

/* Feature List Styles */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.feature-list li i {
    color: var(--primary-pink);
    margin-right: 0.75rem;
    width: 1rem;
}

/* Navigation Enhancements */
.nav-link {
    color: var(--primary-pink);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-pink-hover);
}

/* Footer active link */
footer .current-page {
    color: white;
    font-weight: bold;
    position: relative;
}

footer .current-page::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-pink);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    z-index: 50;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--primary-pink);
    text-decoration: none;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu a:hover {
    background: var(--primary-pink-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-gradient {
        padding: 3rem 0;
    }
    
    .card-padding {
        padding: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .pricing-table {
        font-size: 0.875rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.message-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.message-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Instagram Feed Styles */
.instagram-embed-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.instagram-embed-container iframe {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 1200px !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .instagram-embed-container iframe {
        height: 600px !important;
    }
}

@media (max-width: 640px) {
    .instagram-embed-container iframe {
        height: 500px !important;
    }
}

/* Gallery Page Instagram Styles */
.instagram-gallery-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.instagram-gallery-container iframe {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 800px !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .instagram-gallery-container iframe {
        height: 700px !important;
    }
}

@media (max-width: 640px) {
    .instagram-gallery-container iframe {
        height: 600px !important;
    }
} 