/*
Theme Name: Dynamic Delight
Theme URI: https://example.com/dynamic-delight
Author: Your Name
Author URI: https://example.com
Description: A modern WordPress theme with dynamic components
Version: 1.0
Text Domain: dynamic-delight
*/

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

:root {
    --primary-color: #4f46e5;
    --secondary-color: #10b981;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-color);
    color: #374151;
    line-height: 1.6;
}

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

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* WordPress Core Alignment */
.aligncenter {
    display: block;
    margin: 1em auto;
}

.alignleft {
    float: left;
    margin-right: 1em;
}

.alignright {
    float: right;
    margin-left: 1em;
}

.wp-block-image img {
    height: auto;
    max-width: 100%;
}

/* Responsive iframes */
iframe {
    max-width: 100%;
}