/* Paper UI Theme - Complete CSS */

/* Default light theme variables */
:root {
    --paper-white: #fcfcfc77;
  --paper-cream: #f7f5f2;
  --ink-dark: #1a1a1a;
  --ink-medium: #2d2d2d;
  --ink-light: #4a4a4a;
  --accent-warm: #00ced1;
  --accent-glow: rgba(0, 206, 209, 0.3);
  
  --shadow-pop: 0 8px 32px rgba(0, 0, 0, 0.1);
  --paper-texture: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  --nav-shadow:#f0eded;
  --paper-texture: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  --paper-border: rgba(0, 0, 0, 0.05);
  --paper-shadow: rgba(0, 0, 0, 0.1);
  --paper-border: rgba(0, 0, 0, 0.05);

  --background: radial-gradient(
    circle at 75% 30%,
    rgba(80,44,68,0.1) 20%,
    transparent 50%
),
repeating-linear-gradient(
    0deg,
    rgba(80,44,68,0.05) 0 1px,
    transparent 1px 4px
),
var(--paper-cream);
backdrop-filter: blur(2px);
}


[data-theme="dark"] {
    /* Deep, rich backgrounds that create a sense of depth */
    --paper-white: #1c1c1c;   /* Main background for panels and surfaces */
    --paper-cream: #2b2b2b;    /* Slightly lighter background for contrast */
  
    /* Warm, classic ink tones for typography */
    --ink-dark:   #e0d8b0;     /* Primary text with a warm golden hue */
    --ink-medium: #c2b08a;     /* Secondary text for supportive content */
    --ink-light:  #a0926a;     /* Tertiary text or less emphasized details */
  
    /* Accent colors that pop without clashing */
    --accent-warm: #ff0055;    /* Vibrant, inviting accent (tomato) */
    --accent-glow: rgba(255, 99, 71, 0.3); /* Soft glow effect for hover states */
  
    /* Navigation shadow for subtle depth */
    --nav-shadow: #222222;     /* Darker shadow to enhance layering */
    --background: 
    linear-gradient(90deg, #1a1a1a 1px, transparent 1px),
    linear-gradient(#1a1a1a 1px, transparent 1px);
  --background-color: #141414;
  --background-size: 40px 40px;
--color: white;


}
  

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Dancing Script', cursive;
}

body {
    background-color: var(--paper-cream);
 user-select: var(--accent-warm);
    color: var(--ink-dark);
    line-height: 1.6;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    
    
  }
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: background-color 0.3s;
    background: rgba(var(--paper-white), 0.8);
    box-shadow: 0px 25px 25px var(--nav-shadow);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink-dark);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    position: relative;
    transition: background-color 0.3s;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-warm);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem;
    position: relative;


    background: var(--background);
    background-color: var(--background-color);
    background-size: var(--background-size);
    color: var(--color);
}


  .hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    
    
    opacity: 0.15;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: slideUp 1s ease-out;
  font-family: 'Playfair Display', serif;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero p {
    font-size: 1.25rem;
    color: var(--ink-light);
    margin-bottom: 2.5rem;
    font-family:'Source Serif Pro', Georgia, serif;
}

/* Underline Effect */
.underlined {
    position: relative;
}

.underline-clip:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-warm);
    border-radius: 2px;
    animation: moveUnderline 3s ease-in-out infinite;
}
  
  @keyframes moveUnderline {
    0%, 100% { width: 60px; }
    50% { width: 120px; }
  }
/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    animation: slideUp 1s ease-out 0.4s backwards;
  }
  
  .btn-primary {
    background: var(--paper-white);
    color: var(--ink-dark);
    border: 2px solid var(--accent-warm);
    border-radius: 8px;
    box-shadow: 3px 3px 0 var(--accent-warm);
    transform: translate(-3px, -3px);
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
  }
  
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-cool);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }
  
  .btn-primary:hover {
    transform: translate(0, 0);
    box-shadow: 0 0 0 var(--accent-warm), 0 5px 15px var(--accent-glow);
    color: var(--button-text);
  }
  
  .btn-primary:hover::before {
    opacity: 1;
  }
  
  /* Fun animated ink splatter behind button on hover */
  .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: var(--accent-warm);
    border-radius: 50%;
    opacity: 0;
    z-index: -2;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
  }
  
  .btn-primary:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0.1;
  }



/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--ink-dark);
    position: relative;
}

.section-title::after {
    /* Replace existing ::after */
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-warm);
    animation: underline-pulse 2s infinite;
}

@keyframes underline-pulse {
    0% { width: 60px }
    50% { width: 100px }
    100% { width: 60px }
}

/* Tool Section */
.tool-section {
    padding: 8rem 2rem;
    position: relative;
    background: var(--paper-white);
    border-top: 1px solid var(--paper-shadow);
}

.tool-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    padding: 2rem;
    background: var(--paper-cream);
    border-radius: 2px;
    position: relative;
    border: 1px dashed var(--paper-shadow);
    box-shadow: 
        0 1px 3px var(--paper-shadow),
        0 10px 20px -5px var(--paper-shadow);
        transition: box-shadow 5s;
}


/* Add AI chip sticker effect */
.tool-container::after {
    content: '🤖 AI-Powered';
    position: absolute;
    top: -15px;
    right: -10px;
    background: var(--accent-warm);
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    rotate: 3deg;
    border-radius: 2px;
}
.tool-container:hover::before {
    opacity: 1;
  }
.tool-content {
    flex: 1;
}

.tool-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    border: 1px solid var(--paper-shadow);
    border-radius: 2px;
    overflow: hidden;
    transform: rotate(-1deg);
    box-shadow: 0 5px 15px var(--paper-shadow);
    background: var(--paper-cream);
    padding: 8px; /* Creates "polaroid" frame */
}

.tool-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.7);
    transform: rotate(45deg);
    box-shadow: 0 0 8px var(--paper-shadow);
  }
  .tool-image:hover::after {
    content: 'Click to peek! ✨';
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--paper-white);
    padding: 4px 8px;
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    border: 1px dashed var(--paper-shadow);
}
.quick-actions {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
.quick-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .tool-image:hover .quick-actions {
    opacity: 1;
  }
.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--ink-dark);
    font-family: 'Playfair Display', serif;
}

.tool-description {
    color: var(--ink-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--ink-light);
    padding: 0.5rem 0;
}

.feature-list li::before {
    content: '→';
    margin-right: 1rem;
    color: var(--accent-warm);
    font-family: monospace;
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    text-align: center;
    background: var(--paper-cream);
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--paper-white);
    border-radius: 2px;
    box-shadow: 
        0 1px 3px var(--paper-shadow),
        0 10px 20px -5px var(--paper-shadow);
        transition: transform 0.3s ease;
        border: 1px solid var(--paper-shadow);
        
    }
    
    .about-content:hover {
        transform: translateY(-10px);
        box-shadow: 
            0 5px 15px var(--paper-shadow),
            inset 0 0 20px var(--paper-border);
    }

.about-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 3px solid var(--accent-warm);
    padding: 5px;
    background: var(--paper-white);
}

/* Footer */
footer {
    background: var(--paper-white);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--ink-light);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.theme-toggle-btn {
    background: var(--paper-white);
    color: var(--ink-dark);
    width: 50px;
    height: 50px;
    border: 2px solid var(--ink-dark);
    border-radius: 2px;
    box-shadow: 3px 3px 0 var(--ink-dark);
    transform: translate(-3px, -3px);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow);
  }

/* Responsive Design */
@media (max-width: 968px) {
    .tool-container {
        flex-direction: column;
        padding: 1.5rem;
    }

    .tool-image {
        min-height: 300px;
        transform: rotate(0);
    }

    .nav-content {
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .tool-title {
        font-size: 1.75rem;
    }

    .about-image {
        width: 150px;
        height: 150px;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}
.divider{
    height: 5px;
    background: repeating-linear-gradient(
        45deg,
        var(--accent-warm),
        var(--accent-warm) 10px,
        transparent 10px,
        transparent 20px
    );
}

.divider:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 60px;
    height: 8px;
    background: 
        repeating-linear-gradient(90deg, 
            var(--paper-white) 0 3px, 
            var(--accent-warm) 3px 6px
        );
    transform: translateX(-50%);
}
footer {
    background: var(--paper-white);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--ink-light);
    border-top: 1px solid var(--paper-shadow);
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .footer-links a {
    color: var(--ink-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--accent-warm);
  }
  
  .footer-message {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .send-message-btn {
    background: var(--accent-warm);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 3px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .send-message-btn:hover {
    background: #e5533d; /* a slightly darker shade */
  }
  
  .footer-bottom {
    border-top: 1px solid var(--paper-shadow);
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--ink-medium);
  }
  
  .heart {
    color: var(--accent-warm);
  }
  

.pk{
    color: greenyellow;
}