/* Whimsi-Q Website Styles */

:root {
    --primary-color: #008B8B;
    --secondary-color: #20B2AA;
    --accent-color: #C0C0C0;
    --wood-color: #708090;
    --silver: #C0C0C0;
    --silver-light: #E6E6FA;
    --teal-dark: #006666;
    --teal-light: #40E0D0;
    --sparkle: #F0F8FF;
    --text-dark: #2F4F4F;
    --text-light: #708090;
    --bg-light: #F0F8FF;
    --white: #ffffff;
    --shadow: 0 4px 8px rgba(0,139,139,0.15);
    --shadow-hover: 0 8px 16px rgba(0,139,139,0.25);
    --sparkle-shadow: 0 0 20px rgba(64,224,208,0.3);
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0,139,139,0.4));
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--primary-color) 50%, var(--teal-dark) 100%);
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20" opacity="0.1">✨</text></svg>') repeat;
    animation: float 20s infinite linear;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(192,192,192,0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(240,248,255,0.4) 0%, transparent 50%);
    animation: sparkle 4s ease-in-out infinite alternate;
}

@keyframes sparkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

@keyframes float {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
    animation: logoFloat 3s ease-in-out infinite alternate, logoGlow 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(255,255,255,0.6)) drop-shadow(0 0 40px rgba(64,224,208,0.4)); }
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(47,79,79,0.4), 0 0 20px rgba(192,192,192,0.6);
    animation: bounce 2s ease-in-out infinite alternate, shimmer 3s ease-in-out infinite;
    display: none; /* Hide text title since we're using logo */
}

@keyframes shimmer {
    0%, 100% { text-shadow: 2px 2px 4px rgba(47,79,79,0.4), 0 0 20px rgba(192,192,192,0.6); }
    50% { text-shadow: 2px 2px 4px rgba(47,79,79,0.4), 0 0 30px rgba(240,248,255,0.8), 0 0 40px rgba(64,224,208,0.4); }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-icons {
    font-size: 2rem;
    margin: 2rem 0;
    color: var(--white);
}

.hero-icons i {
    margin: 0 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--silver) 0%, var(--white) 50%, var(--silver) 100%);
    color: var(--primary-color);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.6);
    border: 2px solid var(--silver);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--sparkle-shadow), var(--shadow-hover);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--teal-light) 50%, var(--primary-color) 100%);
    color: var(--white);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Fredoka One', cursive;
}

h2 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
section {
    padding: 80px 0;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--teal-dark) 100%);
    padding: 2rem;
    border-radius: 20px;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid var(--silver);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(192,192,192,0.3), transparent);
    transform: rotate(45deg);
    animation: sparkle-sweep 3s infinite;
}

@keyframes sparkle-sweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: var(--sparkle-shadow);
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--silver-light) 0%, var(--bg-light) 50%, var(--white) 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(64,224,208,0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(192,192,192,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--silver), var(--secondary-color), var(--primary-color), var(--silver));
    animation: shimmer-bar 3s ease-in-out infinite;
}

@keyframes shimmer-bar {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; box-shadow: 0 0 10px rgba(64,224,208,0.5); }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), var(--sparkle-shadow);
    background: linear-gradient(135deg, var(--white) 0%, var(--sparkle) 50%, var(--white) 100%);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
}

.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: var(--sparkle-shadow);
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover), var(--sparkle-shadow);
}

.gallery-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--silver) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(240,248,255,0.3), transparent);
    animation: sparkle-sweep 4s infinite;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.gallery-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    color: #856404;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--silver-light) 50%, var(--white) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0,139,139,0.1) 0%, transparent 60%),
                radial-gradient(circle at 30% 70%, rgba(192,192,192,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
    min-width: 2rem;
}

.contact-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item small {
    color: var(--accent-color);
    font-style: italic;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

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

.form-group label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

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

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

.submit-btn {
    background: linear-gradient(135deg, var(--silver) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    width: 100%;
    box-shadow: var(--shadow);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover), var(--sparkle-shadow);
}

.submit-btn:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #222 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(64,224,208,0.6));
}

.footer-brand h3 {
    color: var(--teal-light);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(64,224,208,0.5);
    display: none; /* Hide text since we're using logo */
}

.footer-links h4,
.footer-contact h4 {
    color: var(--silver);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal-light);
    text-shadow: 0 0 5px rgba(64,224,208,0.5);
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--teal-light);
    margin-right: 0.5rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--teal-light);
    text-shadow: 0 0 10px rgba(64,224,208,0.6);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

.footer-note {
    color: var(--teal-light);
    font-style: italic;
    margin-top: 0.5rem;
    text-shadow: 0 0 5px rgba(64,224,208,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-logo {
        height: 40px;
    }
    
    .hero {
        padding: 100px 0 60px;
        margin-top: 100px;
    }
    
    .hero-logo-img {
        height: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        height: 35px;
    }
    
    .hero-logo-img {
        height: 60px;
    }
    
    .footer-logo {
        height: 45px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}