/* Franklin Love Site - Beautiful Responsive Design */

:root {
    /* Romantic color palette */
    --primary: hsl(340, 65%, 55%);
    --primary-glow: hsl(340, 80%, 75%);
    --primary-dark: hsl(340, 70%, 45%);
    
    --secondary: hsl(340, 30%, 92%);
    --secondary-foreground: hsl(340, 40%, 25%);
    
    --background: hsl(340, 20%, 98%);
    --foreground: hsl(340, 30%, 15%);
    
    --muted: hsl(340, 20%, 94%);
    --muted-foreground: hsl(340, 15%, 45%);
    
    --accent: hsl(15, 100%, 85%);
    --accent-foreground: hsl(340, 40%, 25%);
    
    --heritage-gold: hsl(45, 95%, 65%);
    --heritage-blue: hsl(220, 85%, 60%);
    
    --border: hsl(340, 25%, 88%);
    --ring: hsl(340, 65%, 55%);
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --card-padding: 2rem;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -8px hsla(340, 65%, 55%, 0.15);
    --shadow-medium: 0 8px 32px -12px hsla(340, 65%, 55%, 0.2);
    --shadow-strong: 0 16px 64px -16px hsla(340, 65%, 55%, 0.3);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: hsla(340, 20%, 98%, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-heart {
    color: var(--primary-glow);
    animation: pulse 2s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--muted-foreground);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-glow));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: var(--background);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Hero Sections */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        hsla(340, 65%, 55%, 0.05) 0%, 
        hsla(340, 80%, 75%, 0.08) 50%, 
        hsla(45, 95%, 65%, 0.05) 100%);
    animation: float 6s ease-in-out infinite;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

.title-subtitle {
    display: block;
    font-size: 0.6em;
    color: var(--muted-foreground);
    font-weight: 400;
    margin-top: 0.5rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, var(--heritage-gold), var(--heritage-blue));
    flex: 1;
    max-width: 100px;
}

.divider-heart {
    color: var(--primary-glow);
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.image-frame.large {
    max-width: 500px;
}

.portrait {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    border-radius: 30px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
    animation: glow 4s ease-in-out infinite;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.overlay-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Page Heroes */
.page-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, 
        hsla(340, 65%, 55%, 0.03) 0%, 
        hsla(340, 80%, 75%, 0.05) 100%);
}

.heritage-hero {
    background: linear-gradient(135deg, 
        hsla(45, 95%, 65%, 0.03) 0%, 
        hsla(220, 85%, 60%, 0.05) 100%);
}

.qualities-hero {
    background: linear-gradient(135deg, 
        hsla(340, 65%, 55%, 0.05) 0%, 
        hsla(15, 100%, 85%, 0.08) 100%);
}

.letter-hero {
    background: linear-gradient(135deg, 
        hsla(340, 65%, 55%, 0.08) 0%, 
        hsla(340, 80%, 75%, 0.12) 100%);
}

.page-title {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Section */
.stats {
    padding: var(--section-padding);
    background: var(--muted);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Preview Cards */
.preview {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--foreground);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.preview-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-glow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.preview-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: white;
    border-radius: 15px;
}

.card-header h3 {
    color: var(--foreground);
    margin: 0;
}

.preview-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition-smooth);
}

.preview-card:hover .card-arrow {
    transform: translateX(5px);
}

/* Quote Sections */
.quote-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, 
        hsla(340, 65%, 55%, 0.02) 0%, 
        hsla(340, 80%, 75%, 0.04) 100%);
}

.quote-section.small {
    padding: 4rem 0;
}

.quote-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 3rem 2rem;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
}

.quote-mark {
    font-family: var(--font-primary);
    font-size: 6rem;
    color: var(--primary-glow);
    line-height: 1;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.quote-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.6;
    margin: 2rem 0;
}

.quote-author {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* About Page Styles */
.about-content {
    padding: var(--section-padding);
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.text-block h2 {
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.text-block p {
    font-size: 1.2rem;
    line-height: 1.7;
}

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

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.detail-card h3 {
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.detail-card > p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.detail-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Heritage Page Styles */
.heritage-content {
    padding: var(--section-padding);
}

.heritage-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text h2 {
    color: var(--foreground);
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.25rem;
    line-height: 1.7;
}

.cultures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.culture-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.culture-card.arab {
    border-top: 4px solid var(--heritage-gold);
}

.culture-card.jewish {
    border-top: 4px solid var(--heritage-blue);
}

.culture-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.culture-icon {
    font-size: 2.5rem;
}

.culture-header h3 {
    color: var(--foreground);
    margin: 0;
}

.culture-content h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.culture-content h4:first-child {
    margin-top: 0;
}

.culture-content p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.culture-list {
    list-style: none;
    padding: 0;
}

.culture-list li {
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    position: relative;
    padding-left: 1.5rem;
}

.culture-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--primary-glow);
}

.heritage-blend {
    margin-bottom: 4rem;
}

.heritage-blend h2 {
    text-align: center;
    color: var(--foreground);
    margin-bottom: 3rem;
}

.blend-content {
    max-width: 900px;
    margin: 0 auto;
}

.blend-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.heritage-qualities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--muted);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.quality-item:hover {
    background: white;
    box-shadow: var(--shadow-soft);
}

.quality-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.quality-text h4 {
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.quality-text p {
    font-size: 1rem;
    margin: 0;
}

.traditions-section {
    margin-bottom: 4rem;
}

.traditions-section h2 {
    text-align: center;
    color: var(--foreground);
    margin-bottom: 3rem;
}

.traditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tradition-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

.tradition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.tradition-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tradition-card h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.tradition-card p {
    line-height: 1.6;
}

/* Qualities Page Styles */
.qualities-content {
    padding: var(--section-padding);
}

.qualities-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.qualities-intro h2 {
    color: var(--foreground);
    margin-bottom: 2rem;
}

.qualities-intro p {
    font-size: 1.25rem;
    line-height: 1.7;
}

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

.quality-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    text-align: center;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.quality-card.featured {
    grid-column: span 2;
    text-align: left;
    background: linear-gradient(135deg, 
        hsla(340, 65%, 55%, 0.03) 0%, 
        hsla(340, 80%, 75%, 0.05) 100%);
}

.quality-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.quality-icon.large {
    font-size: 4rem;
    float: left;
    margin-right: 2rem;
    margin-bottom: 0;
}

.quality-card h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.quality-card p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quality-details {
    margin-top: 2rem;
}

.quality-details ul {
    list-style: none;
    padding: 0;
}

.quality-details li {
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    position: relative;
    padding-left: 1.5rem;
}

.quality-details li::before {
    content: '💖';
    position: absolute;
    left: 0;
}

.special-qualities {
    margin-bottom: 4rem;
}

.special-qualities h2 {
    text-align: center;
    color: var(--foreground);
    margin-bottom: 3rem;
}

.unique-grid {
    display: grid;
    gap: 3rem;
}

.unique-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.unique-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-glow);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.unique-content h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.unique-content p {
    line-height: 1.6;
}

.qualities-stats {
    margin-bottom: 4rem;
}

.qualities-stats h2 {
    text-align: center;
    color: var(--foreground);
    margin-bottom: 3rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, 
        hsla(340, 65%, 55%, 0.05) 0%, 
        hsla(340, 80%, 75%, 0.08) 100%);
    border-radius: 20px;
    border: 2px solid var(--border);
}

.stat-item .stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item .stat-label {
    color: var(--muted-foreground);
    font-weight: 600;
}

/* Love Letter Styles */
.letter-content {
    padding: var(--section-padding);
}

.letter-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    padding: 4rem;
    position: relative;
}

.letter-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        var(--border) 0px,
        var(--border) 20px,
        transparent 20px,
        transparent 40px
    );
}

.letter-header {
    margin-bottom: 3rem;
    text-align: right;
}

.letter-date {
    color: var(--muted-foreground);
    font-style: italic;
    margin-bottom: 1rem;
}

.letter-to {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.letter-body {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--foreground);
}

.letter-paragraph {
    margin-bottom: 2rem;
}

.letter-paragraph.highlight {
    background: linear-gradient(135deg, 
        hsla(340, 65%, 55%, 0.03) 0%, 
        hsla(340, 80%, 75%, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.letter-paragraph.final {
    margin-bottom: 3rem;
}

.letter-signature {
    text-align: right;
    margin-top: 2rem;
}

.signature {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
}

.letter-decorations {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.decoration-heart {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.decoration-heart:nth-child(2) {
    animation-delay: 0.5s;
}

.decoration-heart:nth-child(3) {
    animation-delay: 1s;
}

.letter-postscript {
    max-width: 600px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 2rem;
    background: var(--muted);
    border-radius: 20px;
}

.postscript-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.postscript-content p {
    font-style: italic;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--muted);
    padding: 3rem 0;
    margin-top: 4rem;
}

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

.footer-heart {
    margin-bottom: 1rem;
}

.beating-heart {
    font-size: 2rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-text {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.footer-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary-glow);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.5s;
}

.dot:nth-child(3) {
    animation-delay: 1s;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        position: static;
    }
    
    .cultures-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-card.featured {
        grid-column: span 1;
    }
    
    .unique-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--background);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .traditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qualities-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .letter-wrapper {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .letter-wrapper::before {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    :root {
        --section-padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .traditions-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .quote-card {
        padding: 2rem 1.5rem;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .letter-wrapper {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .btn {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}