/* ============================================
   PageTurner Productions - Main Stylesheet
   ============================================ */

/* ========== CSS RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary: #FF6B9D;
    --primary-dark: #E55586;
    --secondary: #4ECDC4;
    --secondary-dark: #3DB5AD;
    --accent: #FFE66D;
    --purple: #C7CEEA;
    --orange: #FFDAC1;
    --dark: #2D3748;
    --gray-100: #F7FAFC;
    --gray-200: #EDF2F7;
    --gray-300: #E2E8F0;
    --gray-400: #CBD5E0;
    --gray-500: #A0AEC0;
    --gray-600: #718096;
    --gray-700: #4A5568;
    --gray-800: #2D3748;
    --gray-900: #1A202C;
    --white: #FFFFFF;
    --light: #F7FAFC;
    
    /* Typography */
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-100);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== UTILITY CLASSES ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.hidden {
    display: none !important;
}

/* ========== GRADIENTS ========== */
.gradient-bg {
    background: linear-gradient(135deg, #FF6B9D 0%, #C7CEEA 50%, #4ECDC4 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B9D 0%, #C7CEEA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-pattern {
    background-color: #4ECDC4;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(199, 206, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 230, 109, 0.2) 0%, transparent 50%);
}

/* ========== NAVIGATION ========== */
nav {
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-menu.active {
    display: flex;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .nav-link {
    padding: 0.75rem 0;
    display: block;
}

@media (min-width: 768px) {
    .nav-logo {
        font-size: 1.875rem;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B9D 0%, #C7CEEA 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #4ECDC4 0%, #FFE66D 100%);
    color: var(--gray-800);
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

.btn-dark {
    background-color: var(--gray-800);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--gray-900);
    transform: scale(1.05);
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 5rem 0 8rem;
    color: var(--white);
}

.hero-content {
    text-align: center;
}

.hero-icon {
    display: inline-block;
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    font-size: 2.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 8rem 0 12rem;
    }
    
    .hero-icon {
        font-size: 8rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* ========== SECTIONS ========== */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: var(--white);
}

.section-gradient {
    background: linear-gradient(to bottom right, rgba(199, 206, 234, 0.1), rgba(255, 218, 193, 0.1));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #FF6B9D, #4ECDC4);
    margin: 0 auto 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* ========== GRID LAYOUTS ========== */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

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

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

/* ========== CARDS ========== */
.card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.card-image {
    height: 16rem;
    overflow: hidden;
    background: linear-gradient(to bottom right, rgba(199, 206, 234, 0.3), rgba(255, 218, 193, 0.3));
}

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

.card-content {
    padding: 1.5rem;
}

.card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(to right, var(--primary), var(--purple));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.card-badge-secondary {
    background: linear-gradient(to right, var(--secondary), var(--accent));
    color: var(--gray-800);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.card-button {
    background: linear-gradient(to right, var(--primary), var(--purple));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.card-button-secondary {
    background: linear-gradient(to right, var(--secondary), var(--accent));
    color: var(--gray-800);
}

/* ========== ABOUT SECTION ========== */
.about-container {
    max-width: 80rem;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.about-image-wrapper {
    flex-shrink: 0;
    position: relative;
}

.about-image-wrapper img {
    border-radius: 15px;
}

.about-image {
    width: 16rem;
    height: 16rem;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
}

.about-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: linear-gradient(to right, var(--primary), var(--purple));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
}

.about-text {
    flex-grow: 1;
}

.about-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.about-title {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-bio {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .about-image {
        width: 20rem;
        height: 20rem;
    }
    
    .about-name {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .about-content {
        flex-direction: row;
    }
}

/* ========== CONTACT FORM ========== */
.form-container {
    max-width: 42rem;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(to bottom right, rgba(199, 206, 234, 0.1), rgba(255, 218, 193, 0.1));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-300);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-textarea {
    resize: vertical;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
}

.form-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
}

.recaptcha-notice {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 1rem 0;
    text-align: center;
    line-height: 1.5;
}

.recaptcha-notice i {
    color: var(--secondary);
    margin-right: 0.25rem;
}

.recaptcha-notice a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recaptcha-notice a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Hide reCAPTCHA badge (optional - uncomment if you want to hide it) */
/*
.grecaptcha-badge {
    visibility: hidden;
}
*/

/* ========== FOOTER ========== */
footer {
    padding: 3rem 0;
    color: var(--white);
    text-align: center;
}

.footer-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-social-link {
    font-size: 1.875rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    transform: scale(1.1);
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-admin-link {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-admin-link:hover {
    opacity: 1;
}

/* ========== LOADING & EMPTY STATES ========== */
.loading-state,
.empty-state {
    text-align: center;
    padding: 3rem 0;
}

.loading-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
}

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

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ========== RESPONSIVE UTILITIES ========== */
@media (min-width: 640px) {
    .sm-flex-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md-text-5xl {
        font-size: 3rem;
    }
}

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

