/*
Theme Name: Cindy Shine
Theme URI: https://cindyshine.cz
Author: Cindy Shine
Author URI: https://cindyshine.cz
Description: Luxurious rose-gold influencer theme for Cindy Shine
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cindy-shine
Tags: pink, gold, rose-gold, responsive, luxury, influencer, fashion
*/

/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
    --blush: #fdf0f5;
    --blush-mid: #f7d6e6;
    --rose: #e8779a;
    --rose-deep: #c4496f;
    --gold: #c9a84c;
    --gold-light: #e8c97e;
    --champagne: #f5e6cc;
    --pearl: #fafafa;
    --charcoal: #1a1018;
    --mauve: #6d3d56;
    --muted: #9c7a8c;

    --grad-hero: linear-gradient(160deg, #fdf0f5 0%, #f8dce9 40%, #f0cede 100%);
    --grad-rose: linear-gradient(135deg, #e8779a 0%, #c4496f 100%);
    --grad-gold: linear-gradient(135deg, #e8c97e 0%, #c9a84c 100%);
    --grad-luxury: linear-gradient(135deg, #c4496f 0%, #9b2d52 50%, #6d1f3d 100%);

    --shadow-sm: 0 2px 12px rgba(196, 73, 111, 0.08);
    --shadow-md: 0 8px 40px rgba(196, 73, 111, 0.15);
    --shadow-lg: 0 20px 60px rgba(196, 73, 111, 0.22);
    --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.25);
    --shadow-glow: 0 0 60px rgba(232, 119, 154, 0.35);

    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius: 1.25rem;
    --radius-full: 9999px;
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--blush);
    color: var(--charcoal);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.35s ease;
}

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

/* ========================================
   Layout
   ======================================== */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-content {
    min-height: 100vh;
}

/* ========================================
   Text Gradients
   ======================================== */
.text-rose {
    background: var(--grad-rose);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ========================================
   Petal Animation Field
   ======================================== */
.petal-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.petal {
    position: absolute;
    border-radius: 50% 0 50% 0;
    opacity: 0;
    animation: petalFall linear infinite;
}

@keyframes petalFall {
    0% {
        opacity: 0;
        transform: translateY(-20px) rotate(0deg);
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(110vh) rotate(720deg);
    }
}

/* ========================================
   Site Header
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(253, 240, 245, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    box-shadow: 0 4px 30px rgba(196, 73, 111, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

/* Branding */
.site-branding {
    display: flex;
    align-items: center;
}

.site-branding .site-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
}

.site-branding .custom-logo-link img {
    height: 44px;
    width: auto;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-navigation ul li a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mauve);
    position: relative;
    padding-bottom: 4px;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--grad-gold);
    transition: width 0.35s ease;
}

.main-navigation ul li a:hover {
    color: var(--rose-deep);
}

.main-navigation ul li a:hover::after {
    width: 100%;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--rose-deep);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        inset: 0;
        background: rgba(253, 240, 245, 0.97);
        backdrop-filter: blur(30px);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }

    .main-navigation.toggled {
        display: flex;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .main-navigation ul li a {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 5rem;
    background: var(--grad-hero);
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -220px;
    right: -220px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(232, 119, 154, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: var(--radius-full);
    padding: 0.45rem 1.3rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeInDown 0.9s ease both 0.15s;
    position: relative;
    z-index: 2;
}

.hero-badge .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

/* Logo circle */
.hero-logo {
    position: relative;
    width: 210px;
    height: 210px;
    margin-bottom: 2.5rem;
    animation: heroLogoFloat 5s ease-in-out infinite;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero-logo {
        width: 270px;
        height: 270px;
    }
}

.hero-logo::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #e8c97e, #c4496f, #e8779a, #e8c97e);
    z-index: -1;
    animation: rotateSlow 8s linear infinite;
    opacity: 0.55;
}

.hero-logo::after {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    background: var(--blush);
    z-index: -1;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.hero-logo-svg-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff5f8 0%, #fde8f0 40%, #f8d5e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0 0 1rem;
    animation: fadeInUp 0.9s ease both 0.35s;
    position: relative;
    z-index: 2;
}

/* Ornamental Divider */
.hero-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.9s ease both 0.5s;
    position: relative;
    z-index: 2;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    height: 1px;
    width: 70px;
    background: var(--grad-gold);
}

.hero-divider-icon {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0.1em;
    max-width: 30rem;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.9s ease both 0.65s;
    position: relative;
    z-index: 2;
}

/* CTA Buttons */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.9s ease both 0.8s;
    position: relative;
    z-index: 2;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: var(--grad-luxury);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    transition: all 0.35s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: var(--rose-deep);
    border: 1.5px solid rgba(196, 73, 111, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.btn-secondary:hover {
    background: rgba(196, 73, 111, 0.05);
    border-color: var(--rose);
    transform: translateY(-3px);
    color: var(--rose-deep);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    animation: fadeIn 2s ease both 1.8s;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--rose), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ========================================
   Stats Strip
   ======================================== */
.stats-section {
    padding: 3.5rem 2rem;
    background: #fff;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-style: italic;
    font-weight: 700;
    background: var(--grad-rose);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 7rem 2rem;
    background: var(--blush);
    position: relative;
    z-index: 2;
}

.about-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.section-eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--grad-gold);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .section-eyebrow {
        justify-content: center;
    }
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.about-text {
    font-size: 0.97rem;
    line-height: 1.95;
    color: var(--muted);
    margin-bottom: 2rem;
}

.about-image-frame {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 1.5rem;
    background: linear-gradient(160deg, #f8dce9 0%, #f3c5d9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-image-frame::after {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border-top: 1.5px solid var(--gold);
    border-right: 1.5px solid var(--gold);
    border-radius: 0 1rem 0 0;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    border-bottom: 1.5px solid var(--gold);
    border-left: 1.5px solid var(--gold);
    border-radius: 0 0 0 1rem;
}

/* ========================================
   Social Section
   ======================================== */
.social-section {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, #fff 0%, #fdf0f5 100%);
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 3.5rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.social-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    color: #fff;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.link-arrow {
    margin-left: auto;
    opacity: 0.55;
    transition: transform 0.3s ease;
}

.social-link:hover .link-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.social-link.instagram {
    background: linear-gradient(135deg, #f77737, #e1306c, #833ab4);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.social-link.website {
    background: var(--grad-luxury);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 7rem 2rem;
    background: var(--charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 119, 154, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-eyebrow {
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-style: italic;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.contact-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 3rem;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 2;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.8rem;
    background: var(--grad-gold);
    color: var(--charcoal);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.contact-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.4);
    color: var(--charcoal);
}

.contact-button svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-copy {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 0.06em;
}

.footer-heart {
    font-size: 0.73rem;
    color: rgba(232, 119, 154, 0.45);
}

@media (max-width: 600px) {
    .footer-inner {
        justify-content: center;
        text-align: center;
    }
}

/* ========================================
   Scroll Reveal
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Keyframes
   ======================================== */
@keyframes heroLogoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}

/* ========================================
   WordPress Required
   ======================================== */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--muted);
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}