/* =========================================================
   General Styles
   ========================================================= */
:root {
    --primary-color: #2C5697;
    --secondary-color: #16A4B8;
    --accent-color: #7ED8D2;
    --light-bg: #F6FBFC;
    --secondary-bg: #EBF5F7;
    --dark-text: #1A2C42;
    --medium-text: #516078;
    --light-text: #8295A9;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: var(--dark-text);
}

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

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

.uk-button-primary {
    background: var(--gradient);
    border: none;
    transition: all 0.3s ease;
}

.uk-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 86, 151, 0.2);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.uk-button-secondary {
    background-color: var(--secondary-color);
}

/* =========================================================
   Header
   ========================================================= */
.uk-header {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.uk-navbar-container:not(.uk-navbar-transparent) {
    background: transparent;
}

.uk-navbar-nav > li > a {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li.uk-active > a {
    color: var(--secondary-color);
    position: relative;
}

.uk-navbar-nav > li.uk-active > a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.cookie-settings-button {
    color: var(--medium-text);
    font-size: 0.9rem;
}

/* =========================================================
   Hero Section
   ========================================================= */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content .uk-text-lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}


.circular-focus {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-outer {
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(22, 164, 184, 0.15);
}

.circle-inner {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.sub-hero-section {
    position: relative;
}

.content-circle {
    width: 400px;
    height: 150px;
    border-radius: 75px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* =========================================================
   Content Sections
   ========================================================= */
.card-icon {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.content-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.guide-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.guide-card h3 {
    color: var(--primary-color);
    border-bottom: 1px solid var(--secondary-bg);
    padding-bottom: 10px;
    margin-bottom: 15px;
}


.tool-rating {
    margin-bottom: 10px;
}

.tool-rating span {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.rating-bar {
    height: 6px;
    background-color: var(--secondary-bg);
    border-radius: 3px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--gradient);
}


.prompt-box {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    overflow-wrap: break-word;
}

.prompt-highlight {
    background-color: rgba(126, 216, 210, 0.2);
    padding: 2px 0;
}

/* =========================================================
   Contact Form
   ========================================================= */
.contact-form label {
    font-weight: 600;
    color: var(--dark-text);
}

.contact-list li {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    flex: 0 0 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-right: 20px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
}

.direction-card {
    height: 100%;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

/* =========================================================
   Thank You Page
   ========================================================= */
.thank-you-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* =========================================================
   Discussions Page
   ========================================================= */
.discussion-card {
    margin-bottom: 30px;
}

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

.thread-reply {
    border-left: 3px solid var(--secondary-color);
    padding-left: 20px;
    margin-bottom: 25px;
}

.reply-meta {
    margin-bottom: 10px;
    color: var(--medium-text);
}

/* =========================================================
   Prompt Library
   ========================================================= */
.prompt-item {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.prompt-header {
    padding: 15px 20px;
    background: var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prompt-header h3 {
    margin: 0;
}

.prompt-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
}

.prompt-content {
    padding: 20px;
}

.prompt-analysis h4 {
    color: var(--primary-color);
    margin-top: 20px;
}

.prompt-analysis ul {
    margin-top: 10px;
}

.experiment-category-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.experiment-category-card:hover {
    transform: translateY(-5px);
}

.experiment-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.experiment-category-card h3 {
    margin-bottom: 10px;
}

.participation-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}

.participation-card h4 {
    color: white;
    margin-top: 0;
}

.gallery-item .uk-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item .uk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   AI in Design Page
   ========================================================= */
.section-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.use-case-card, .principle-card {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    height: 100%;
}

.prompt-example {
    margin-bottom: 15px;
}

.prompt-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.step-process {
    margin-top: 30px;
}

.step {
    display: flex;
    margin-bottom: 20px;
}

.step-number {
    flex: 0 0 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    margin-right: 15px;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin: 0 0 5px 0;
}

.advanced-case {
    margin-bottom: 20px;
}

.advanced-case h4 {
    color: var(--primary-color);
}

.case-study-card {
    margin-bottom: 40px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-study-image {
    height: 250px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    padding: 20px;
}

.color-palette-example {
    display: flex;
    margin: 15px 0;
}

.color-swatch {
    flex: 1;
    height: 40px;
    border-radius: 3px;
    margin: 0 2px;
}

/* =========================================================
   Policy Pages
   ========================================================= */
.policy-content h2 {
    margin-top: 40px;
    color: var(--primary-color);
}

.policy-content h3 {
    margin-top: 25px;
    color: var(--dark-text);
}

/* =========================================================
   Footer
   ========================================================= */
.uk-section-secondary {
    background: var(--dark-text);
}

.footer-about img {
    filter: brightness(0) invert(1);
}

.uk-section-secondary h4 {
    color: white;
}

/* =========================================================
   Cookie Consent
   ========================================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* =========================================================
   Responsive Adjustments
   ========================================================= */
@media (max-width: 960px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content .uk-text-lead {
        font-size: 1.2rem;
    }
    
    .circle-outer {
        width: 400px;
        height: 400px;
    }
    
    .circle-inner {
        width: 320px;
        height: 320px;
    }
    
    .content-circle {
        width: 320px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content .uk-text-lead {
        font-size: 1.1rem;
    }
    
    .circle-outer {
        width: 300px;
        height: 300px;
    }
    
    .circle-inner {
        width: 250px;
        height: 250px;
        padding: 15px;
    }
    
    .content-circle {
        width: 280px;
        height: 130px;
    }
}


.iti {
    width: 100%;
}


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

.animate-float {
    animation: float 4s ease-in-out infinite;
}