/* Frontend Common CSS - Custom styles to complement Tailwind CSS */
@import url('./branding-variables.css');
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

body {
    font-family: var(--branding-font-body);
    background-color: var(--branding-background);
    color: var(--branding-text-primary);
}

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

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

/* Branding Variables */

/* Base Branding Styles */
body {
    font-family: var(--branding-font-body);
    background-color: var(--branding-background);
    color: var(--branding-text-primary);
}

/* Header Branding */
.header-logo {
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Navigation Branding */
.nav-link {
    color: #F5F3E7;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: #F5F3E7;
    border: 2px solid var(--branding-primary);
    box-shadow: 0 4px 12px rgba(173, 231, 235, 0.4);
    transform: translateY(-2px);
}

/* Button Branding */
.btn-primary {
    background-color: var(--branding-primary);
    color: var(--branding-text-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--branding-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(173, 231, 235, 0.3);
}

/* Card Branding */
.card {
    background-color: var(--branding-surface);
    border: 1px solid var(--branding-border);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}


.course-title-text {
    color: #F5F3E7;
}

/* Form Branding */
.form-control {
    border: 1px solid var(--branding-border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-family: var(--branding-font-body);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--branding-primary);
    box-shadow: 0 0 0 3px rgba(173, 231, 235, 0.1);
    outline: none;
}

/* Typography Branding */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--branding-font-heading);
    font-weight: 600;
    color: var(--branding-text-primary);
}

h2{
    font-family: var(--branding-font-heading) !important;
    font-weight: 700 !important;
    font-style: Bold !important;
    font-size: 36px !important;
    line-height: 44px !important;
    letter-spacing: 0px !important;
    vertical-align: middle !important;

}

h3{
    font-family: var(--branding-font-heading) !important;
    font-weight: 600 !important;
    font-style: Medium !important;
    font-size: 24px !important;
    line-height: 32px !important;
    letter-spacing: 0px !important;
    vertical-align: middle !important;
}

@media (prefers-color-scheme: dark) {
    h2, h3, h4, h5, h6 {
        color: var(--text-color-custom-on-dark) !important;
        -webkit-text-fill-color: var(--text-color-custom-on-dark);
    }
}

/* Utility Classes */
.text-primary { color: var(--branding-primary) !important; }
.text-secondary { color: var(--branding-text-secondary) !important; }
.text-muted { color: var(--branding-text-muted) !important; }

.bg-primary { background-color: var(--branding-primary) !important; }
.bg-secondary { background-color: var(--branding-secondary) !important; }
.bg-surface { background-color: var(--branding-surface) !important; }

.border-primary { border-color: var(--branding-primary) !important; }
.border-secondary { border-color: var(--branding-secondary) !important; }

/* Responsive Branding */
@media (max-width: 768px) {
    .header-logo {
        width: 120px;
        height: 72px;
    }
    
    .footer-logo {
        width: 100px;
        height: 60px;
    }
}



/* Base Branding Styles */
body {
    font-family: var(--branding-font-body);
    background-color: var(--branding-background);
    color: var(--branding-text-primary);
}

/* Header Branding */
.header-logo {
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Navigation Branding */
.nav-link {
    color: #F5F3E7;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: #F5F3E7;
    border: 2px solid var(--branding-primary);
    box-shadow: 0 4px 12px rgba(173, 231, 235, 0.4);
    transform: translateY(-2px);
}

/* Button Branding */
.btn-primary {
    background-color: var(--branding-primary);
    color: var(--branding-text-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--branding-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(173, 231, 235, 0.3);
}

/* Card Branding */
.card {
    background-color: var(--branding-surface);
    border: 1px solid var(--branding-border);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Form Branding */
.form-control {
    border: 1px solid var(--branding-border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-family: var(--branding-font-body);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--branding-primary);
    box-shadow: 0 0 0 3px rgba(173, 231, 235, 0.1);
    outline: none;
}


/* Utility Classes */
.text-primary { color: var(--branding-primary) !important; }
.text-secondary { color: var(--branding-text-secondary) !important; }
.text-muted { color: var(--branding-text-muted) !important; }

.bg-primary { background-color: var(--branding-primary) !important; }
.bg-secondary { background-color: var(--branding-secondary) !important; }
.bg-surface { background-color: var(--branding-surface) !important; }

.border-primary { border-color: var(--branding-primary) !important; }
.border-secondary { border-color: var(--branding-secondary) !important; }

/* Responsive Branding */
@media (max-width: 768px) {
    .header-logo {
        width: 120px;
        height: 72px;
    }
    
    .footer-logo {
        width: 100px;
        height: 60px;
    }
}


.bg-primary-color {
    background-color: var(--primary-color);
}

/* Header Styles */
.header-logo {
    width: 150px;
    height: 90px;
    margin-top: 1rem;
}



/* Footer Styles */
#main-footer {
    background-color: #1a1a1a;
    color: #F5F3E7;
    padding: 3rem 0;
}

#main-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 2.0fr;
    gap: 1rem;
    align-items: start;
}

#main-footer .footer-column {
    display: flex;
    flex-direction: column;
}

/* Logo Styles */
#main-footer .footer-logo {
    margin-bottom: 4rem;
}

#main-footer .logo-container {
    /* background: linear-gradient(135deg, #87CEEB, #ADD8E6); */
    border-radius: 12px;
    padding: 1.5rem;
    display: inline-block;
    /* margin-bottom: 1rem; */
}

#main-footer .footer-logo-image {
    width: 200px;
    height: 150px;
}

/* Address Styles */
#main-footer .footer-address {
    margin-bottom: 2rem;
}

#main-footer .address-label {
    font-size: 1rem;
    font-weight: 600;
    color: #F5F3E7;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

#main-footer .address-text {
    color: #cccccc;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Social Media Icons */
#main-footer .footer-social {
    display: flex;
    gap: 1rem;
}

#main-footer .social-icon {
    width: 40px;
    height: 40px;
    /* background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5F3E7;
    text-decoration: none;
    transition: all 0.3s ease;
}

#main-footer .social-icon:hover {
    background-color: var(--primary-color);
    color: #1a1a1a;
    transform: translateY(-2px);
}

#main-footer .social-icon i {
    font-size: 1.5rem;
}

/* Footer Headings */
#main-footer .footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #F5F3E7;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Links */
#main-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

#main-footer .footer-links li {
    margin-bottom: 0.75rem;
}

#main-footer .footer-link {
    color: #F5F3E7;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

#main-footer .footer-link:hover {
    color: #A6E17F;
}

/* Newsletter Styles */
#main-footer .newsletter-container {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#main-footer .newsletter-message {
    color: #F5F3E7;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

#main-footer .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#main-footer .newsletter-input {
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #F5F3E7;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.3s ease;
}

#main-footer .newsletter-input::placeholder {
    color: #888;
}

#main-footer .newsletter-input:focus {
    border-color: var(--primary-color);
}

#main-footer .newsletter-button {
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: #F5F3E7;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#main-footer .newsletter-button:hover {
    background-color: var(--primary-color);
    color: #1a1a1a;
    border-color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    #main-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    #main-footer .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    #main-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #main-footer .footer-column:first-child {
        grid-column: 1;
    }
    
    #main-footer .logo-container {
        padding: 1rem;
    }
    
    #main-footer .logo-main {
        font-size: 1.25rem;
    }
    
    #main-footer .logo-sub span {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    #main-footer {
        padding: 2rem 0;
    }
    
    #main-footer .footer-social {
        gap: 0.75rem;
    }
    
    #main-footer .social-icon {
        width: 35px;
        height: 35px;
    }
    
    #main-footer .newsletter-container {
        padding: 1rem;
    }
}


/* Home Page Styles */

.web-home-page .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.web-home-page .section-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-color-custom-on-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.web-home-page .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color-custom-on-dark);
    line-height: 1.6;
    max-width: 100%;
    font-weight: 500;
    font-style: Medium !important;
    line-height: 32px;
    letter-spacing: 0px;

}


/* Newsletter Section Styles */
.newsletter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.newsletter-card {
    background-color: rgba(61, 109, 110, 1);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 100%;
    width: 100%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.6;
    filter: blur(2px);
}

.newsletter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F5F5F5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: left;
}

.newsletter-message {
    font-size: 1rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    background-color: rgba(47, 79, 79, 0.8);
    border: 2px solid #A0A0A0;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #F5F5F5;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-input::placeholder {
    color: #A0A0A0;
    opacity: 0.8;
}

.newsletter-input:focus {
    outline: none;
    border-color: #F5F5F5;
    background-color: rgba(47, 79, 79, 0.9);
    box-shadow: 0 0 0 3px rgba(245, 245, 245, 0.1);
}

.newsletter-input:hover {
    border-color: #CCCCCC;
    background-color: rgba(47, 79, 79, 0.9);
}

.newsletter-button {
    background-color: #1A1A1A;
    color: #F5F5F5;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.newsletter-button::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.newsletter-button:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.newsletter-button:hover::before {
    opacity: 1;
}

.newsletter-button:active {
    transform: translateY(0);
}

/* Responsive Newsletter */
@media (max-width: 768px) {
    .newsletter-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .newsletter-title {
        font-size: 1.25rem;
    }
    
    .newsletter-message {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-input,
    .newsletter-button {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .newsletter-card {
        padding: 1.5rem;
    }
    
    .newsletter-title {
        font-size: 1.125rem;
    }
    
    .newsletter-message {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .newsletter-input,
    .newsletter-button {
        padding: 0.75rem 0.875rem;
        font-size: 0.8rem;
    }
}



/* Custom Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #4b5563);
}

.bg-gradient-daw {
    background: linear-gradient(135deg, var(--daw-yellow), var(--daw-orange));
}

.bg-gradient-daw-blue {
    background: linear-gradient(135deg, var(--daw-blue), var(--daw-purple));
}

.bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: #eeeff1;
}

.bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: #181818E5 !important;
}

/* Navigation Styles */
.nav-link {
    color: #d1d5db;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #F5F3E7;
}

.nav-link.active {
    color: #d1d5db;
    /*background-color: var(--branding-primary);*/
    border-radius: 0.5rem;
    border: 2px solid var(--branding-primary);
    box-shadow: 0 6px 18px rgba(173, 231, 235, 0.35);
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

.nav-link-mobile {
    color: #F5F3E7;
    background-color: transparent;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    transition: all 0.2s ease;
}

.nav-link-mobile:hover {
    color: #F5F3E7;
    background-color: #1f2937;
}

.nav-link-mobile.active {
    color: #F5F3E7;
    background-color: #1f2937;
    border-left: 4px solid var(--branding-primary);
    padding-left: calc(0.75rem - 4px);
    font-weight: 600;
    box-shadow: inset 2px 0 12px rgba(173, 231, 235, 0.25);
}

.nav-button {
    border: 1px solid #d1d5db;
    color: #d1d5db;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-left: 1rem;
    transition: all 0.2s ease;
}

.nav-button:hover {
    background-color: white;
    color: #111827;
}

.user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--daw-yellow), var(--daw-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5F3E7;
    font-size: 0.875rem;
    font-weight: 500;
}

.user-menu {
    position: absolute;
    right: 0;
    margin-top: 0.5rem;
    width: 12rem;
    background-color: white;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 50;
}

.user-menu-item {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    transition: background-color 0.2s ease;
}

.user-menu-item:hover {
    background-color: #f9fafb;
}

.mobile-menu-button {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 0.5rem;
    border-radius: 0.375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-menu-button:hover {
    color: white;
    background-color: #374151;
}

.mobile-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
}

.mobile-menu-section {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
    border-top: 1px solid #374151;
}

.mobile-menu-divider {
    margin: 0.25rem 0;
    border-color: #e5e7eb;
}

/* Alert Styles */
.alert-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 1rem;
}

.alert-success {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    position: relative;
}

.alert-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    position: relative;
}

.alert-close-button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 0.75rem 1rem;
    cursor: pointer;
}

.alert-close-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

/* Button Variations */
.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.2s ease;
}

.btn-outline-white:hover {
    background-color: white;
    color: #111827;
}

.btn-outline-white-border {
    border-color: white;
    color: white;
}

.btn-outline-white-border:hover {
    background-color: white;
    color: #111827;
}

/* Layout Utilities */
.container-max {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 5rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
}

.section-margin {
    margin-top: 4rem;
}

.text-center-large {
    text-align: center;
}

.text-center-large h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.text-center-large p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.grid-responsive {
    display: grid;
    gap: 2rem;
}

.grid-responsive-1 {
    grid-template-columns: 1fr;
}

.grid-responsive-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-responsive-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-responsive-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 640px) {
    .grid-responsive-2,
    .grid-responsive-3,
    .grid-responsive-4 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .grid-responsive-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-responsive-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-responsive-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card Variations */
.card-dark {
    background-color: #1f2937;
    color: white;
    padding: 1.5rem;
}

.card-thumbnail {
    width: 100%;
    height: 12rem;
    background-color: #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 500;
}

.card-thumbnail-placeholder {
    color: #6b7280;
    font-weight: 500;
}
/* 
.card-content {
    padding: 1.5rem;
} */

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-meta {
    margin-bottom: 1.5rem;
}

.card-meta-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.card-meta-item:last-child {
    margin-bottom: 0;
}

/* Badge Variations */
.badge-enrollment {
    background-color: #d1fae5;
    color: #065f46;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Icon Container Variations */
.icon-container-small {
    width: 1rem;
    height: 1rem;
}

.icon-container-medium {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-container-large {
    width: 2rem;
    height: 2rem;
}

.icon-container-xl {
    width: 3rem;
    height: 3rem;
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0,-8px,0); }
    70% { transform: translate3d(0,-4px,0); }
    90% { transform: translate3d(0,-2px,0); }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 0 30px rgba(251, 191, 36, 0.8); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

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

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hover-scale {
    transition: transform 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Custom Button Styles */
.btn-custom {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 400;
    transition: all 0.2s ease;
    outline: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
}

.btn-custom-outline {
    border: 2px solid #ADE7EB !important;
}

.btn-custom-outline:hover {
    background-color: #ADE7EB;
    color: #111827;
    border: 2px solid #111827 !important;
}

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

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.btn-secondary-custom:hover {
    background-color: #4b5563;
    transform: translateY(-1px);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.btn-daw {
    background: var(--bg-gradient-daw);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-daw:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Custom Card Styles */
.card-custom {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 1px 1px 6.8px 1px #C5C1B8;
}

.card-hover {
    transition: all 0.2s ease;
}

.card-hover:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--light-bg);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--light-bg);
}

/* DAW Specific Card Styles */
.card-daw {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-daw:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-daw-dark {
    background: var(--daw-gray-dark);
    color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Custom Form Styles */
.form-input-custom {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    outline: none;
}

.form-input-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-label-custom {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-error {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-success {
    color: var(--success-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Custom Alert Styles */
.alert-custom {
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid;
    margin-bottom: 1rem;
}

.alert-info {
    background-color: #eff6ff;
    border-color: #60a5fa;
    color: #1e40af;
}

.alert-success {
    background-color: #ecfdf5;
    border-color: #34d399;
    color: #065f46;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: #fbbf24;
    color: #92400e;
}

.alert-error {
    background-color: #fef2f2;
    border-color: #f87171;
    color: #991b1b;
}

/* Tooltip Styles */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #1f2937;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Tooltip positions */
.tooltip-top .tooltiptext {
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
}

.tooltip-bottom .tooltiptext {
    top: 125%;
    bottom: auto;
    left: 50%;
    margin-left: -100px;
}

.tooltip-bottom .tooltiptext::after {
    top: auto;
    bottom: 100%;
    border-color: transparent transparent #1f2937 transparent;
}

.tooltip-left .tooltiptext {
    right: 125%;
    top: 50%;
    left: auto;
    bottom: auto;
    margin-left: 0;
    margin-top: -20px;
}

.tooltip-left .tooltiptext::after {
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-color: transparent transparent transparent #1f2937;
}

.tooltip-right .tooltiptext {
    left: 125%;
    top: 50%;
    bottom: auto;
    margin-left: 0;
    margin-top: -20px;
}

.tooltip-right .tooltiptext::after {
    top: 50%;
    right: 100%;
    left: auto;
    margin-top: -5px;
    border-color: transparent #1f2937 transparent transparent;
}

/* Alert with tooltip */
.alert-with-tooltip {
    position: relative;
}

.alert-tooltip {
    position: absolute;
    top: 10px;
    right: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    font-size: 12px;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.alert-tooltip:hover {
    opacity: 1;
}

.alert-tooltip .tooltiptext {
    width: 250px;
    margin-left: -125px;
    font-size: 13px;
}

/* Toast notification styles */
.toast-container {
    position: fixed;
    z-index: 9999;
    max-width: 400px;
    pointer-events: none;
}

.toast-container-top-right {
    top: 20px;
    right: 20px;
}

.toast-container-top-left {
    top: 20px;
    left: 20px;
}

.toast-container-bottom-right {
    bottom: 20px;
    right: 20px;
}

.toast-container-bottom-left {
    bottom: 20px;
    left: 20px;
}

.toast {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    padding: 16px;
    border-left: 4px solid;
    position: relative;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
}

/* Animation for different positions */
.toast-container-top-left .toast {
    transform: translateX(-100%);
}

.toast-container-bottom-right .toast {
    transform: translateX(100%);
}

.toast-container-bottom-left .toast {
    transform: translateX(-100%);
}

.toast.show {
    transform: translateX(0) !important;
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.toast-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.toast-message {
    font-size: 14px;
    line-height: 1.4;
    color: #374151;
}

.toast-success {
    border-left-color: #10b981;
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-warning {
    border-left-color: #f59e0b;
}

.toast-info {
    border-left-color: #3b82f6;
}

.toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.toast-close:hover {
    opacity: 1;
}

/* Custom Badge Styles */
.badge-custom {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.badge-custom:hover::before {
    left: 100%;
}

.badge-primary {
    background-color: #dbeafe;
    color: #1e40af;
    animation: glow-pulse-blue 4s ease-in-out infinite;
}

.badge-primary:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    transform: scale(1.1);
}

.badge-success {
    background-color: #A6E17F;
    color: #181818;
    animation: glow-pulse-green 4s ease-in-out infinite;
}

.badge-success:hover {
    box-shadow: 0 0 20px rgba(166, 225, 127, 0.6);
    transform: scale(1.1);
}

@keyframes glow-pulse-blue {
    0%, 100% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
        opacity: 0.4;
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
        opacity: 1;
    }
}

@keyframes glow-pulse-green {
    0%, 100% {
        box-shadow: 0 0 5px rgba(166, 225, 127, 0.3);
        opacity: 0.4;
    }
    50% {
        box-shadow: 0 0 20px rgba(166, 225, 127, 0.6);
        opacity: 1;
    }
}

.badge-warning {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-secondary {
    background-color: #f3f4f6;
    color: #374151;
}

/* Custom Loading Spinner */
.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid #d1d5db;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-lg {
    width: 2rem;
    height: 2rem;
    border-width: 4px;
}

.spinner-sm {
    width: 0.75rem;
    height: 0.75rem;
    border-width: 1px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Custom Focus Styles */
.focus-ring {
    outline: none;
}

.focus-ring:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Custom Transitions */
.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-fast {
    transition: all 0.15s ease-in-out;
}

.transition-slow {
    transition: all 0.5s ease-in-out;
}

/* Custom Shadows */
.shadow-soft {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.shadow-medium {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.shadow-strong {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.shadow-daw {
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

/* Custom Border Radius */
.rounded-soft {
    border-radius: 12px;
}

.rounded-medium {
    border-radius: 16px;
}

.rounded-strong {
    border-radius: 20px;
}

/* Custom Text Shadows */
.text-shadow-soft {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.text-shadow-medium {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Custom Backdrop Blur */
.backdrop-blur-custom {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Custom Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* DAW Specific Styles */
.hero-gradient {
    background: linear-gradient(135deg, var(--daw-gray-dark) 0%, #111827 100%);
}

.hero-text-shadow {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.icon-container {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-container.blue {
    background-color: #dbeafe;
    color: #1e40af;
}

.icon-container.green {
    background-color: #d1fae5;
    color: #065f46;
}

.icon-container.purple {
    background-color: #e9d5ff;
    color: #7c3aed;
}

.icon-container.yellow {
    background-color: #fef3c7;
    color: #92400e;
}

.icon-container.red {
    background-color: #fee2e2;
    color: #991b1b;
}

.icon-container.indigo {
    background-color: #e0e7ff;
    color: #3730a3;
}

.icon-container.pink {
    background-color: #fce7f3;
    color: #be185d;
}

.icon-container.teal {
    background-color: #ccfbf1;
    color: #0f766e;
}

/* Responsive Utilities */
@media (max-width: 640px) {
    .mobile-hidden {
        display: none;
    }
    
    .mobile-full {
        width: 100%;
    }
    
    .mobile-center {
        text-align: center;
    }
    
    .btn-custom {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .desktop-hidden {
        display: none;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-break {
        page-break-before: always;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .high-contrast-border {
        border: 2px solid currentColor;
    }
    
    .high-contrast-text {
        color: #000000;
        background: #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .animate-fade-in,
    .animate-slide-in-left,
    .animate-slide-in-right,
    .animate-bounce,
    .animate-float,
    .animate-pulse-glow {
        animation: none;
    }
    
    .transition-smooth,
    .transition-fast,
    .transition-slow {
        transition: none;
    }
    
    .hover-lift:hover,
    .hover-scale:hover,
    .hover-rotate:hover {
        transform: none;
    }
}

/* ===== BRANDING STYLES ===== */
/* Header Branding */
.header-logo {
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Navigation Branding */
.nav-link {
    color: #F5F3E7;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: #F5F3E7;
    border: 2px solid var(--branding-primary);
    box-shadow: 0 4px 12px rgba(173, 231, 235, 0.4);
    transform: translateY(-2px);
}

/* Button Branding */
.btn-primary {
    background-color: var(--branding-primary);
    color: var(--branding-text-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--branding-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(173, 231, 235, 0.3);
}

.btn-secondary {
    background-color: var(--branding-secondary);
    color: #F5F3E7;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

/* Card Branding */
.card {
    background-color: var(--branding-surface);
    border: 1px solid var(--branding-border);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Form Branding */
.form-control {
    border: 1px solid var(--branding-border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-family: var(--branding-font-body);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--branding-primary);
    box-shadow: 0 0 0 3px rgba(173, 231, 235, 0.1);
    outline: none;
}


/* Utility Classes */
.text-primary { color: var(--branding-primary) !important; }
.text-secondary { color: var(--branding-text-secondary) !important; }
.text-muted { color: var(--branding-text-muted) !important; }

.bg-primary { background-color: var(--branding-primary) !important; }
.bg-secondary { background-color: var(--branding-secondary) !important; }
.bg-surface { background-color: var(--branding-surface) !important; }

.border-primary { border-color: var(--branding-primary) !important; }
.border-secondary { border-color: var(--branding-secondary) !important; }

/* Footer Branding */
#main-footer {
    background-color: #181818;
    color: #F5F3E7;
}

.footer-logo {
    width: auto;
    height: 72px;
    object-fit: contain;
}

/* Responsive Branding */
@media (max-width: 768px) {
    .header-logo {
        width: 120px;
        height: 72px;
    }
    
    .footer-logo {
        width: 100px;
        height: 60px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --branding-background: #1f2937;
        --branding-surface: #374151;
        --branding-text-primary: #f9fafb;
        --branding-text-secondary: #d1d5db;
        --branding-border: #4b5563;
    }
}

/* Website Button Primary */
.website-button-primary {
    background-color: #181818;
    color: #F5F3E7;
    border: 2px solid rgba(173, 231, 235, 0.57);
    padding: 1em 1.5em;
    border-radius: 10px;
    font-family: var(--branding-font-body, 'Inter', Arial, sans-serif);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(173, 231, 235, 0.57);
    transition: 
        box-shadow 0.2s cubic-bezier(0.4,0,0.2,1),
        transform 0.15s cubic-bezier(0.4,0,0.2,1),
        background 0.2s cubic-bezier(0.4,0,0.2,1),
        border-color 0.2s cubic-bezier(0.4,0,0.2,1);
    /* box-shadow: 0 0 0 4px #b6eaff80, 0 2px 12px 0 #0002; */
    min-width: 210px;
    letter-spacing: 0.01em;
}

.website-button-primary:hover,
.website-button-primary:focus {
    background-color: #232323;
    border-color: #b6eaff;
    color: #f9f7ef;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 0 6px #b6eaff80, 0 4px 24px 0 #0003;
    text-decoration: none;
    outline: none;
}

.website-button-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 0 0 3px #b6eaff80, 0 1px 6px 0 #0002;
}

/* Website Button Primary - Outline Variant */
.website-button-primary-outline {
    background-color: transparent;
    color: #181818;
    border: 3px solid #b6eaff;
    padding: 1em 1.5em;
    border-radius: 20px;
    font-family: var(--branding-font-body, 'Inter', Arial, sans-serif);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: 
        box-shadow 0.2s cubic-bezier(0.4,0,0.2,1),
        transform 0.15s cubic-bezier(0.4,0,0.2,1),
        background 0.2s cubic-bezier(0.4,0,0.2,1),
        border-color 0.2s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 0 0 4px #b6eaff80, 0 2px 12px 0 #0002;
    min-width: 240px;
    letter-spacing: 0.01em;
}

.website-button-primary-outline:hover,
.website-button-primary-outline:focus {
    background-color: #181818;
    color: #f9f7ef;
    border-color: #b6eaff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 0 6px #b6eaff80, 0 4px 24px 0 #0003;
    text-decoration: none;
    outline: none;
}

.website-button-primary-outline:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 0 0 3px #b6eaff80, 0 1px 6px 0 #0002;
}

/* Website Button Primary - Small Variant */
.website-button-primary-sm {
    background-color: #181818;
    color: #f9f7ef;
    border: 2px solid #b6eaff;
    padding: 1em 1.5em;
    border-radius: 14px;
    font-family: var(--branding-font-body, 'Inter', Arial, sans-serif);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: 
        box-shadow 0.2s cubic-bezier(0.4,0,0.2,1),
        transform 0.15s cubic-bezier(0.4,0,0.2,1),
        background 0.2s cubic-bezier(0.4,0,0.2,1),
        border-color 0.2s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 0 0 2px #b6eaff80, 0 1px 6px 0 #0002;
    min-width: 100px;
    letter-spacing: 0.01em;
}

.website-button-primary-sm:hover,
.website-button-primary-sm:focus {
    background-color: #232323;
    border-color: #b6eaff;
    color: #f9f7ef;
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 0 0 3px #b6eaff80, 0 2px 12px 0 #0003;
    text-decoration: none;
    outline: none;
}

.website-button-primary-sm:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 0 0 1px #b6eaff80, 0 1px 4px 0 #0002;
}

/* Website Button Primary - Large Variant */
.website-button-primary-lg {
    background-color: #181818;
    color: #f9f7ef;
    border: 3px solid #b6eaff;
    padding: 1em 1.5em;
    border-radius: 28px;
    font-family: var(--branding-font-body, 'Inter', Arial, sans-serif);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: 
        box-shadow 0.2s cubic-bezier(0.4,0,0.2,1),
        transform 0.15s cubic-bezier(0.4,0,0.2,1),
        background 0.2s cubic-bezier(0.4,0,0.2,1),
        border-color 0.2s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 0 0 6px #b6eaff80, 0 6px 32px 0 #0002;
    min-width: 300px;
    letter-spacing: 0.01em;
}

.website-button-primary-lg:hover,
.website-button-primary-lg:focus {
    background-color: #232323;
    border-color: #b6eaff;
    color: #f9f7ef;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 0 8px #b6eaff80, 0 8px 40px 0 #0003;
    text-decoration: none;
    outline: none;
}

.website-button-primary-lg:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 0 0 4px #b6eaff80, 0 4px 24px 0 #0002;
}

