/* ============================================
   Jyodha Royal Brides - Stylesheet
   Premium Bridal Beauty Landing Page
   ============================================ */

/* CSS Variables */
:root {
    --color-gold: #C9A034;
    --color-gold-light: #E5C96E;
    --color-gold-dark: #8B6914;
    --color-cream: #FDF8F3;
    --color-cream-dark: #F5EDE3;
    --color-burgundy: #722F37;
    --color-burgundy-light: #8B3D47;
    --color-text: #2C2420;
    --color-text-light: #6B5E57;
    --color-white: #FFFFFF;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 50%, #EDE4D8 100%);
    color: var(--color-text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Decorations */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    transition: transform 0.3s ease-out;
}

.elem-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float1 20s ease-in-out infinite;
}

.elem-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-burgundy) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: float2 25s ease-in-out infinite;
}

.elem-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-gold-light) 0%, transparent 70%);
    top: 40%;
    left: 10%;
    animation: float3 18s ease-in-out infinite;
}

.elem-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--color-burgundy-light) 0%, transparent 70%);
    top: 20%;
    right: 15%;
    animation: float4 22s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 40px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.05); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 30px); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, -20px); }
}

/* Main Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    text-align: center;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 1.2s ease-out;
}

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

/* Brand Section */
.brand-section {
    margin-bottom: 50px;
}

.crown-icon {
    width: 100px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--color-gold);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { 
        filter: drop-shadow(0 0 8px rgba(201, 160, 52, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(201, 160, 52, 0.6));
    }
}

.brand-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 500;
    color: var(--color-burgundy);
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-light);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Status Section */
.status-section {
    margin-bottom: 50px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-white);
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 160, 52, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(201, 160, 52, 0);
    }
}

.status-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.message {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.divider-ornament {
    color: var(--color-gold);
    font-size: 1rem;
}

/* Footer */
.footer {
    opacity: 0.9;
}

.legal-name {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.privacy-link {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-burgundy);
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid var(--color-burgundy);
    border-radius: 25px;
    transition: var(--transition-smooth);
    margin-bottom: 20px;
}

.privacy-link:hover {
    background: var(--color-burgundy);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(114, 47, 55, 0.3);
}

.copyright {
    font-size: 0.75rem;
    color: var(--color-text-light);
    opacity: 0.7;
}

/* ============================================
   Privacy Policy Page Styles
   ============================================ */

.privacy-page {
    min-height: 100vh;
}

.privacy-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    z-index: 100;
    background: linear-gradient(to bottom, var(--color-cream) 0%, transparent 100%);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-burgundy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 10px 20px;
    border-radius: 25px;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.back-link:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.privacy-container {
    padding: 120px 20px 60px;
    position: relative;
    z-index: 1;
}

.privacy-wrapper {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.privacy-title-section {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 600;
    color: var(--color-burgundy);
    margin-bottom: 20px;
}

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

.brand-main {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-gold-dark);
}

.brand-legal {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.policy-content {
    background: var(--color-white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.policy-section {
    margin-bottom: 35px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section.intro {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-cream-dark);
}

.policy-section.intro p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text);
}

.policy-section h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-burgundy);
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

.policy-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.policy-section.contact {
    padding-top: 30px;
    border-top: 1px solid var(--color-cream-dark);
}

.privacy-footer {
    text-align: center;
    margin-top: 50px;
}

.privacy-footer .copyright {
    font-size: 0.8rem;
    color: var(--color-text-light);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 10px;
    }
    
    .crown-icon {
        width: 80px;
        height: 48px;
    }
    
    .status-badge {
        padding: 10px 20px;
    }
    
    .status-text {
        font-size: 0.8rem;
    }
    
    .message {
        font-size: 1.1rem;
    }
    
    .divider-line {
        width: 50px;
    }
    
    .policy-content {
        padding: 35px 25px;
    }
    
    .policy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-header {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
    }
    
    .brand-name {
        letter-spacing: 0.02em;
    }
    
    .tagline {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }
    
    .elem-1, .elem-2, .elem-3, .elem-4 {
        opacity: 0.1;
    }
}
