/* assets/css/style.css */
:root {
    --bg-dark: #121212;
    --bg-darker: #1E1E1E;
    --text-light: #E0E0E0;
    --text-lighter: #FFFFFF;
    --accent: #F7931A;
    --accent-dark: #E07C00;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Header Styles */
header {
    background-color: var(--bg-darker);
    padding-top: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    display: inline-block;
}
/* Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
nav a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}
nav a:hover {
    color: var(--accent);
}
.premium-link {
    color: white;
    font-weight: 600;
}

.premium-link.active{
    color: var(--accent);
}
/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--accent);
    color: #000;
    padding: 0.5rem 1.5rem;
    margin-bottom:16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}
.btn:hover {
    background-color: var(--accent-dark);
    cursor: pointer;
    color: #e9e9e9;
}
.btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}
.btn-outline:hover {
    background-color: var(--accent);
    color: #000;
}
.btn-large {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}
/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../../bg.png');
    background-size: cover;
    margin-bottom: 2rem;
}
.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-lighter);
}
.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.feature-card {
    background-color: var(--bg-darker);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.feature-card h3 {
    color: var(--accent);
    margin-top: 0;
}
/* Form Styles */
.form-container {
    max-width: 500px;
    margin: 2rem auto;
    background-color: var(--bg-darker);
    padding: 2rem;
    border-radius: 8px;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}
.form-group input {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--text-light);
}
.form-group input:focus {
    outline: none;
    border-color: var(--accent);
}
.stats span {
    display: block;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
}
/* Paywall Message */
.paywall-message {
    text-align: center;
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--bg-darker);
    border-radius: 8px;
}
.paywall-message h2 {
    color: var(--accent);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
   }
    .hero h1 {
        font-size: 2rem;
   }
}
/* Modern Glassmorphism Effect */
.glassmorphism {
    background: rgba(30, 30, 46, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}
/* Gradient Buttons */
.btn-gradient {
    background: var(--accent-dark);
    border: none;
    color: black;
    font-weight: 600;
}
/* Floating Inputs */
.input-group.floating {
    position: relative;
    margin-bottom: 1.5rem;
}
.input-group.floating input {
    width: calc(100% - 2rem);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}
.input-group.floating label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    pointer-events: none;
}
.input-group.floating input:focus ~ label, .input-group.floating input:valid ~ label {
    top: -0.8rem;
    left: 0.8rem;
    font-size: 0.8rem;
    background: var(--bg-darker);
    padding: 0 0.5rem;
    color: var(--accent);
}
/* Enhanced Studio Cards */
.hover-transform:hover {
    transform: translateY(-5px);
}
/* Responsive Improvements */
@media (max-width: 768px) {
    .section-header {
        text-align: center;
   }
}
@media (max-width: 480px) {
    .form-container {
        width: 95%;
        padding: 1.5rem;
   }
}
/* ===== Updated Studio Cards ===== */
.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
    margin: 2rem 0;
}
/* ===== Animated Border Hover Effect ===== */
.studio-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--bg-darker);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

/* Remove the overlay since we're using border effect */
.card-overlay {
    display: none;
}

/* Animated pseudo-element for border */
.studio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.studio-card:hover::before {
    border-color: var(--accent);
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
}

/* Content animations */
.studio-card-inner {
    position: relative;
    padding: 1.5rem;
    height: 100%;
    z-index: 2;
    transition: all 0.3s ease;
}

.studio-card h3 {
    margin: 0 0 1rem 0;
    color: var(--accent);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.studio-card:hover h3 {
    color: var(--text-lighter);
    transform: translateX(4px);
}

.studio-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.stat {
    text-align: center;
    padding: 0.5rem;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.studio-card:hover .stat {
    background: rgba(247, 147, 26, 0.15);
    transform: translateY(-2px);
}

.stat-value {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-lighter);
    transition: all 0.3s ease;
}

.studio-card:hover .stat-value {
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.studio-card:hover .stat-label {
    opacity: 1;
}

/* Responsive Adjustments (unchanged) */
@media (max-width: 768px) {
    .studio-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 480px) {
    .studio-grid {
        grid-template-columns: 1fr;
    }
    .studio-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.field-description {
    color: gray;
    font-size:0.8em;
}

.error-message {
    color: red;
    margin-bottom:10px;
}

/* ===== Footer Styles ===== */
.site-footer {
    background-color: var(--bg-darker);
    color: var(--text-light);
    padding: 3rem 0 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-brand .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.footer-brand .tagline {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.copyright-notice {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        margin-bottom: 1rem;
    }
}

/* Legal Pages Styling */
.legal-page {
    padding: 2rem 0;
    line-height: 1.6;
}

.legal-page h1 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.last-updated {
    color: var(--text-light);
    opacity: 0.7;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.legal-page h2 {
    color: var(--text-lighter);
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}

.legal-page ul {
    margin: 1rem 0 1rem 1.5rem;
}

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

.legal-page a {
    color: var(--accent);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 1rem 0;
    }
    
    .legal-page h1 {
        font-size: 1.8rem;
    }
}