/*
Theme Name: Angels Academy Jaipur
Theme URI: https://angelsacademy.edu
Author: Angels Academy
Author URI: https://angelsacademy.edu
Description: A warm and trustworthy theme for Angels Academy, Jaipur - Nurturing curious minds from Nursery to Grade 8. Features beautiful animations and child-friendly design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: angels-academy
Tags: education, school, academy, jaipur, nursery, elementary, animation

Angels Academy, Jaipur - Excellence in Education from Nursery to Grade 8.
*/

/* ===========================
   ANGELS ACADEMY - GLOBAL COLORS
   =========================== */
:root {
    --primary-color: #F6B6B6;        /* Jaipur Pink */
    --secondary-color: #24347A;      /* Deep Indigo */
    --text-color: #1F2B3A;           /* Neutral Dark */
    --background-color: #FAFBFF;     /* Neutral Light */
    --success-color: #28A745;        /* Success */
    --warning-color: #FFC107;        /* Warning/Attention */
    --white: #FFFFFF;
    --card-shadow: 0 4px 12px rgba(36, 52, 122, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

img:hover {
    transform: scale(1.02);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition-smooth);
    position: relative;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white);
}

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

/* ===========================
   HEADER
   =========================== */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 12px rgba(36, 52, 122, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(36, 52, 122, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
}

.site-branding {
    animation: fadeInLeft 0.8s ease-out;
    max-width: 30%;
    flex-shrink: 0;
}

/* Logo Styling - 30% of screen */
.custom-logo-link {
    display: block;
    width: 100%;
    max-width: 100%;
}

.custom-logo {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.custom-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.site-branding h1 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.site-branding h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.5s ease;
}

.site-branding h1:hover::after {
    width: 100%;
}

.site-branding p {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ===========================
   NAVIGATION
   =========================== */
.main-navigation {
    animation: fadeInRight 0.8s ease-out;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.5rem 0;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.main-navigation a:hover::before {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.main-navigation .current-menu-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.main-navigation .current-menu-item a::before {
    width: 100%;
}

/* ===========================
   HERO SECTION - ANGELS ACADEMY WITH PHOTO SUPPORT
   =========================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Hero with background image */
.hero-section.has-background-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay for better text readability over photos */
.hero-section.has-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(246, 182, 182, 0.85) 0%, rgba(36, 52, 122, 0.85) 100%);
    z-index: 1;
}

/* Animated background pattern (only show when no photo) */
.hero-section:not(.has-background-image)::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
    opacity: 0.3;
    z-index: 1;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
    width: 100%;
}

/* Hero image styling (if using img tag instead of background) */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: bounceIn 1s ease-out 0.5s both;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Hero Logo Styling */
.hero-logo {
    margin-bottom: 2rem;
    animation: bounceIn 1s ease-out;
}

.hero-logo-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    transition: var(--transition-smooth);
}

.hero-logo-image:hover {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.4));
}

.hero-logo-placeholder {
    margin-bottom: 2rem;
    text-align: center;
    animation: bounceIn 1s ease-out;
}

/* CTA Buttons in Hero */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background-color: var(--warning-color);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ===========================
   SECTIONS - ANGELS ACADEMY
   =========================== */
.content-section {
    padding: 5rem 0;
    position: relative;
    animation: fadeIn 0.8s ease-out;
}

.content-section:nth-child(even) {
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: fadeInDown 0.8s ease-out;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.3s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* ===========================
   GRID LAYOUT - ANIMATED CARDS
   =========================== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.grid-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

/* Staggered animation for grid items */
.grid-item:nth-child(1) { --item-index: 1; }
.grid-item:nth-child(2) { --item-index: 2; }
.grid-item:nth-child(3) { --item-index: 3; }
.grid-item:nth-child(4) { --item-index: 4; }
.grid-item:nth-child(5) { --item-index: 5; }
.grid-item:nth-child(6) { --item-index: 6; }

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.grid-item:hover::before {
    transform: scaleX(1);
}

.grid-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(36, 52, 122, 0.15);
}

.grid-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.grid-item:hover h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.grid-item p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Icon in grid items */
.grid-item-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

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

/* ===========================
   FOOTER - ANGELS ACADEMY
   =========================== */
.site-footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2554 100%);
    color: var(--white);
    padding: 4rem 0 1rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent, var(--primary-color));
}

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

.footer-section {
    animation: fadeInUp 0.8s ease-out both;
    animation-delay: calc(var(--footer-index, 0) * 0.2s);
}

.footer-section:nth-child(1) { --footer-index: 1; }
.footer-section:nth-child(2) { --footer-index: 2; }
.footer-section:nth-child(3) { --footer-index: 3; }
.footer-section:nth-child(4) { --footer-index: 4; }

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255, 255, 255, 0.7);
    animation: fadeIn 1s ease-out 1s both;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Social icons animation */
.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition-bounce);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(246, 182, 182, 0.4);
}

/* ===========================
   COMMON ANIMATIONS
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

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

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE - ANGELS ACADEMY
   =========================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
    }
    
    /* Logo - Larger on mobile for better visibility */
    .site-branding {
        max-width: 50%;
        margin-bottom: 1rem;
    }
    
    .site-branding h1 {
        font-size: 1.5rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Hero Logo Mobile */
    .hero-logo-image {
        max-width: 280px;
    }
    
    .hero-logo-placeholder div {
        padding: 1.5rem 2rem !important;
        font-size: 0.9rem;
    }
    
    .hero-logo-placeholder h1 {
        font-size: 1.8rem !important;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .grid-item {
        padding: 2rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .grid-item {
        padding: 1.5rem;
    }
}

/* ============================================
   WordPress Block Editor Styles
   ============================================ */

/* Custom Block Content Area */
.custom-content-area {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.wp-block-content {
    max-width: 900px;
    margin: 0 auto;
}

/* WordPress Core Block Styles */
.wp-block-content .wp-block-gallery {
    margin: 2rem 0;
}

.wp-block-content .wp-block-image {
    margin: 2rem 0;
}

.wp-block-content .wp-block-quote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-color);
}

.wp-block-content .wp-block-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.wp-block-content .wp-block-quote cite {
    color: var(--secondary-color);
    font-style: normal;
    font-weight: 600;
    display: block;
    margin-top: 1rem;
}

.wp-block-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.wp-block-content .wp-block-paragraph {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.wp-block-content .wp-block-heading,
.wp-block-content h1,
.wp-block-content h2,
.wp-block-content h3,
.wp-block-content h4 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.wp-block-content .wp-block-calendar {
    margin: 2rem 0;
}

.wp-block-content .wp-block-calendar table {
    width: 100%;
    border-collapse: collapse;
}

.wp-block-content .wp-block-calendar th,
.wp-block-content .wp-block-calendar td {
    padding: 0.5rem;
    text-align: center;
    border: 1px solid #eee;
}

.wp-block-content .wp-block-calendar caption {
    caption-side: top;
    padding: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.wp-block-content .wp-block-categories {
    list-style: none;
    padding: 0;
}

.wp-block-content .wp-block-categories li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.wp-block-content .wp-block-categories a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wp-block-content .wp-block-categories a:hover {
    color: var(--secondary-color);
}

/* Block Alignment Support */
.wp-block-content .alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.wp-block-content .alignfull {
    max-width: 100%;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Block Gallery Styles */
.wp-block-content .wp-block-gallery .blocks-gallery-grid,
.wp-block-content .wp-block-gallery .blocks-gallery-item {
    list-style: none;
}

.wp-block-content .wp-block-gallery.has-nested-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* Additional Block Styles for Contact Page */

/* Pullquote Block */
.wp-block-content .wp-block-pullquote {
    border-left: 4px solid var(--primary-color);
    border-top: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 3rem 0;
    background-color: rgba(78, 205, 196, 0.05);
    border-radius: 8px;
}

.wp-block-content .wp-block-pullquote p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.wp-block-content .wp-block-pullquote cite {
    color: var(--text-color);
    font-size: 1rem;
    font-style: normal;
}

/* Verse Block */
.wp-block-content .wp-block-verse {
    background-color: var(--background-color);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    font-family: 'Inter', sans-serif;
    white-space: pre-wrap;
    color: var(--text-color);
    line-height: 1.8;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Preformatted Block */
.wp-block-content .wp-block-preformatted {
    background-color: #f8f9fa;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color);
    overflow-x: auto;
    margin: 2rem 0;
}

/* Code Block */
.wp-block-content .wp-block-code {
    background-color: #2d2d2d;
    border-radius: 8px;
    margin: 2rem 0;
}

.wp-block-content .wp-block-code code {
    color: #f8f8f2;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    display: block;
    padding: 1.5rem;
    overflow-x: auto;
    line-height: 1.6;
}

/* Table Block */
.wp-block-content .wp-block-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.wp-block-content .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.wp-block-content .wp-block-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.wp-block-content .wp-block-table thead th {
    color: var(--white);
    font-weight: 600;
    text-align: left;
    padding: 1rem;
    border: none;
}

.wp-block-content .wp-block-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: var(--text-color);
}

.wp-block-content .wp-block-table tbody tr:last-child td {
    border-bottom: none;
}

.wp-block-content .wp-block-table tbody tr:hover {
    background-color: rgba(78, 205, 196, 0.05);
}

/* List Block Enhanced */
.wp-block-content .wp-block-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.wp-block-content .wp-block-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    color: var(--text-color);
}

.wp-block-content .wp-block-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Ordered List */
.wp-block-content ol.wp-block-list {
    counter-reset: item;
}

.wp-block-content ol.wp-block-list li {
    counter-increment: item;
}

.wp-block-content ol.wp-block-list li::before {
    content: counter(item) ".";
    color: var(--secondary-color);
    font-weight: 600;
}

/* Group Block */
.wp-block-content .wp-block-group {
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    background-color: var(--background-color);
    border: 1px solid #e0e0e0;
}

/* Columns Block */
.wp-block-content .wp-block-columns {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.wp-block-content .wp-block-column {
    flex: 1;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Buttons Block */
.wp-block-content .wp-block-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.wp-block-content .wp-block-button__link {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.wp-block-content .wp-block-button__link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Separator Block */
.wp-block-content .wp-block-separator {
    border: none;
    border-top: 2px solid var(--primary-color);
    margin: 3rem auto;
    max-width: 100px;
}

/* Spacer Block */
.wp-block-content .wp-block-spacer {
    margin: 2rem 0;
}

/* Contact Info Specific Styles */
.wp-block-content .has-primary-color {
    color: var(--primary-color);
}

.wp-block-content .has-secondary-color {
    color: var(--secondary-color);
}

.wp-block-content .has-primary-background-color {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
}

.wp-block-content .has-secondary-background-color {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
}

/* Highlighted Contact Info */
.wp-block-content p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.wp-block-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wp-block-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Block Styles */
@media (max-width: 768px) {
    .wp-block-content {
        padding: 0 1rem;
    }
    
    .wp-block-content .wp-block-paragraph {
        font-size: 1rem;
    }
    
    .wp-block-content .wp-block-quote p {
        font-size: 1.1rem;
    }
    
    .wp-block-content .wp-block-pullquote p {
        font-size: 1.1rem;
    }
    
    .wp-block-content .wp-block-columns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wp-block-content .wp-block-table {
        font-size: 0.9rem;
    }
    
    .wp-block-content .wp-block-table th,
    .wp-block-content .wp-block-table td {
        padding: 0.5rem;
    }
    
    .wp-block-content .wp-block-preformatted,
    .wp-block-content .wp-block-code code {
        font-size: 0.85rem;
    }
}

