/*
Theme Name: Solaire Productions
Theme URI: https://solaireproductions.com
Author: Solaire Productions
Author URI: https://solaireproductions.com
Description: A professional yet playful portfolio theme for media makers
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: solaire-productions
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF1493;
    --secondary-color: #9D4EDD;
    --accent-color: #FF69B4;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --text-color: #333;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Fredoka One', 'Comic Sans MS', 'Chalkboard SE', cursive;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

h3 {
    font-size: 1.75rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Header */
.site-header {
    background: linear-gradient(135deg, #9D4EDD 0%, #FF1493 100%) !important;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.3);
    backdrop-filter: blur(10px);
}

.site-header * {
    color: white !important;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #FFFFFF !important;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5), 0 0 30px rgba(255,255,255,0.3);
    font-family: 'Fredoka One', cursive !important;
    -webkit-text-fill-color: white;
    opacity: 1;
}

.site-title a {
    color: #FFFFFF !important;
    position: relative;
    display: inline-block;
    text-decoration: none;
    -webkit-text-fill-color: white !important;
    opacity: 1 !important;
}

.site-title a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FFD700;
    transition: var(--transition);
}

.site-title a:hover::after {
    width: 100%;
}

.site-title a:hover {
    color: white !important;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.main-navigation a {
    color: #FFFFFF !important;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    font-family: 'Poppins', sans-serif !important;
    -webkit-text-fill-color: white !important;
    opacity: 1 !important;
}

.main-navigation a:hover,
.main-navigation a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FF1493 0%, #9D4EDD 50%, #7B2CBF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 30s infinite linear;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: floatBubble 20s infinite ease-in-out;
}

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

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, -50px) scale(1.2); }
    50% { transform: translate(200px, 50px) scale(0.8); }
    75% { transform: translate(50px, 100px) scale(1.1); }
}

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: white;
    -webkit-text-fill-color: white;
    font-size: 6rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease, bounce 2s infinite ease-in-out 2s;
    text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 40px rgba(157,78,221,0.3);
    letter-spacing: 2px;
}

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

.hero-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-weight: 400;
}

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

/* Homepage Page Content Section */
.homepage-page-content {
    background: white;
    padding: 4rem 0;
    margin: 0;
}

.homepage-page-content .container {
    padding: 2rem;
}

.homepage-page-content .page-content {
    max-width: 900px;
    margin: 0 auto;
}

.homepage-page-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.homepage-page-content .content {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.homepage-page-content .content p {
    margin-bottom: 1.5rem;
}

.homepage-page-content .content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.homepage-page-content .content ul,
.homepage-page-content .content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.homepage-page-content .content li {
    margin-bottom: 0.5rem;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    border: 3px solid transparent;
}

.portfolio-item:hover {
    transform: translateY(-15px) rotate(2deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(157, 78, 221, 0.3);
    border-color: var(--accent-color);
}

.portfolio-item:nth-child(even):hover {
    transform: translateY(-15px) rotate(-2deg) scale(1.02);
}

.portfolio-item-thumbnail {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-item-thumbnail::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite ease-in-out;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.portfolio-item-thumbnail img,
.portfolio-item-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnail Map Grid - speelse layout zoals shapes */
.thumbnail-map-grid {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 10px;
}

.thumbnail-map-item {
    position: absolute;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Speelse positionering voor elk thumbnail */
.thumbnail-map-item:nth-child(1) {
    width: 45%;
    height: 55%;
    top: 5%;
    left: 5%;
    transform: rotate(-8deg);
    z-index: 4;
    animation: float-gentle 6s infinite ease-in-out;
}

.thumbnail-map-item:nth-child(2) {
    width: 40%;
    height: 50%;
    top: 8%;
    right: 8%;
    transform: rotate(5deg);
    z-index: 3;
    animation: float-gentle 7s infinite ease-in-out reverse;
}

.thumbnail-map-item:nth-child(3) {
    width: 42%;
    height: 48%;
    bottom: 10%;
    left: 8%;
    transform: rotate(3deg);
    z-index: 2;
    animation: float-gentle 8s infinite ease-in-out;
}

.thumbnail-map-item:nth-child(4) {
    width: 38%;
    height: 45%;
    bottom: 12%;
    right: 10%;
    transform: rotate(-6deg);
    z-index: 1;
    animation: float-gentle 9s infinite ease-in-out reverse;
}

.thumbnail-map-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.thumbnail-map-item:hover {
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 10 !important;
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.5);
}

.thumbnail-map-item:hover img {
    transform: scale(1.05);
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-placeholder::after {
    content: '📷';
    font-size: 2rem;
    opacity: 0.3;
}

/* Gentle floating animation */
@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotate-start, 0deg));
    }
    50% {
        transform: translateY(-10px) rotate(var(--rotate-end, 0deg));
    }
}

.portfolio-item-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.portfolio-item-content {
    padding: 2rem;
    background: linear-gradient(to bottom, white 0%, #fafafa 100%);
}

.portfolio-item h3 {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.portfolio-item:hover h3 {
    color: var(--primary-color);
}

.portfolio-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Modal/Lightbox */
.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 2rem;
    overflow-y: auto;
}

.portfolio-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-body h2 {
    margin-bottom: 1.5rem;
}

/* Video Player */
.video-player {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
}

/* PDF Viewer */
.pdf-viewer {
    width: 100%;
    height: 80vh;
    border: none;
    background: white;
}

.pdf-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* File Tabs for Multiple Files */
.file-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    flex-wrap: wrap;
}

.file-tab {
    padding: 0.75rem 1.5rem;
    background: #f5f5f5;
    border: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.file-tab .tab-thumbnail {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.file-tab:hover {
    background: #e8e8e8;
    color: var(--primary-color);
}

.file-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
}

.file-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.file-content {
    position: relative;
}

.file-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.file-panel.active {
    display: block;
}

/* Thumbnail Gallery in Modal */
.modal-thumbnail-gallery {
    padding: 1rem 0;
}

.thumbnail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.gallery-thumbnail-item {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-thumbnail-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.3);
}

.gallery-thumbnail-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.gallery-thumbnail-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-thumbnail-item:hover .gallery-thumbnail-overlay {
    opacity: 1;
}

.gallery-file-type {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-thumbnail-info {
    padding: 1rem;
    background: white;
}

.gallery-file-name {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* File Viewer */
.modal-file-viewer {
    padding: 1rem 0;
}

.back-to-gallery-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.back-to-gallery-btn:hover {
    background: var(--secondary-color);
    transform: translateX(-5px);
}

#modal-file-content {
    margin-top: 1rem;
}

/* Single Portfolio Gallery */
.single-portfolio-gallery {
    margin: 2rem 0;
}

.single-file-viewer {
    margin: 2rem 0;
}

.single-file-content {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Category Sections */
.category-section {
    margin-bottom: 6rem;
    padding: 3rem 0;
    position: relative;
}

.category-section:nth-child(even) {
    background: linear-gradient(to bottom, transparent 0%, rgba(157, 78, 221, 0.03) 50%, transparent 100%);
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.category-header h2 {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 50px;
    position: relative;
    animation: fadeInUp 0.6s ease;
}

.category-header::after {
    content: '';
    display: block;
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    margin: 1.5rem auto;
    border-radius: 10px;
    animation: expandWidth 0.8s ease;
}

@keyframes expandWidth {
    from { width: 0; opacity: 0; }
    to { width: 150px; opacity: 1; }
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 5rem;
}

.site-footer p {
    margin: 0;
    opacity: 0.8;
}

/* Playful Elements */
.playful-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float-shape 20s infinite ease-in-out;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, 100px) rotate(90deg); }
    50% { transform: translate(0, 200px) rotate(180deg); }
    75% { transform: translate(-100px, 100px) rotate(270deg); }
}

/* Fun decorative shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.2;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    right: 15%;
    animation: morph 8s infinite ease-in-out, float-slow 12s infinite ease-in-out;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00FFFF, #0080FF);
    border-radius: 50%;
    bottom: 20%;
    left: 10%;
    animation: pulse 4s infinite ease-in-out, float-slow 10s infinite ease-in-out reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(225deg, #FF69B4, #FF1493);
    border-radius: 20% 80% 20% 80% / 80% 20% 80% 20%;
    top: 60%;
    right: 20%;
    animation: rotate-slow 15s infinite linear, pulse 3s infinite ease-in-out;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(315deg, #ADFF2F, #32CD32);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 30%;
    left: 5%;
    animation: morph 10s infinite ease-in-out reverse, float-slow 14s infinite ease-in-out;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

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

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Sparkle effect */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 3s infinite ease-in-out;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 2rem 1rem;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .shape {
        display: none;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--dark-color);
}

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