/* ====================================
   PAHLWAN GOHANA JALEBI - MAIN STYLES
   Simple HTML/CSS/JS Version
   ==================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Colors - Traditional Indian Sweet Shop Theme */
    --background: hsl(30, 50%, 96%);
    --foreground: hsl(0, 30%, 15%);
    
    --card: hsl(35, 60%, 97%);
    --card-foreground: hsl(0, 30%, 15%);
    
    --primary: hsl(0, 65%, 35%);
    --primary-foreground: hsl(35, 60%, 97%);
    
    --secondary: hsl(38, 80%, 55%);
    --secondary-foreground: hsl(0, 30%, 15%);
    
    --accent: hsl(25, 90%, 55%);
    --accent-foreground: hsl(0, 30%, 15%);
    
    --muted: hsl(35, 40%, 92%);
    --muted-foreground: hsl(0, 20%, 40%);
    
    --border: hsl(30, 30%, 85%);
    
    /* Typography */
    --font-sans: 'Poppins', ui-sans-serif, system-ui, sans-serif;
    --font-serif: 'Playfair Display', ui-serif, Georgia, serif;
    
    /* Spacing */
    --radius: 0.5rem;
    --container-max: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
}

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

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

ul {
    list-style: none;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: hsl(0, 65%, 30%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(139, 69, 69, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-badge .dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--primary);
}

.text-muted {
    color: var(--muted-foreground);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 253, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-top {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
}

.header-top .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.header-top a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary-foreground);
}

.header-top a:hover {
    opacity: 0.8;
}

.header-top .welcome {
    display: none;
    font-weight: 500;
}

.header-nav {
    padding: 0.75rem 1rem;
}

.header-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 3.5rem;
    width: auto;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--muted-foreground);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-nav {
    display: none;
    padding: 1rem;
    border-top: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: var(--muted-foreground);
    font-weight: 500;
}

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

.mobile-nav .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(255, 253, 250, 0.95) 0%,
        rgba(255, 253, 250, 0.8) 50%,
        rgba(255, 253, 250, 0.4) 100%);
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 3s ease-in-out infinite;
}

.hero-decoration.decoration-1 {
    top: 10rem;
    right: 5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(218, 165, 32, 0.2);
}

.hero-decoration.decoration-2 {
    bottom: 5rem;
    left: 2.5rem;
    width: 12rem;
    height: 12rem;
    background: rgba(255, 140, 0, 0.2);
    animation-delay: 1s;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 40rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(139, 69, 69, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge .pulse {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-title .hindi {
    color: var(--primary);
    display: block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 253, 250, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
}

.info-card .icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card .icon.primary {
    background-color: rgba(139, 69, 69, 0.1);
    color: var(--primary);
}

.info-card .icon.secondary {
    background-color: rgba(218, 165, 32, 0.2);
    color: var(--secondary);
}

.info-card .label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.info-card .value {
    font-weight: 600;
    color: var(--foreground);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(139, 69, 69, 0.5);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator .wheel {
    width: 0.375rem;
    height: 0.75rem;
    background-color: var(--primary);
    border-radius: 9999px;
    animation: pulse 2s ease-in-out infinite;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 5rem 0;
    background-color: var(--muted);
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.about-image .floating-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    max-width: 200px;
}

.floating-card .number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.floating-card .text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.about-image .decoration {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 6rem;
    height: 6rem;
    background: rgba(218, 165, 32, 0.3);
    border-radius: 50%;
    filter: blur(40px);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-content p strong {
    color: var(--foreground);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--card);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
}

.stat-card .icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(139, 69, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--primary);
}

.stat-card .value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.stat-card .label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ==================== SPECIALTIES SECTION ==================== */
.specialties {
    padding: 5rem 0;
    background: var(--background);
}

.specialties-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 4rem;
}

.products-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.product-card .image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.product-card .popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-card .content {
    padding: 1.5rem;
}

.product-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--muted-foreground);
}

.features-section {
    background: rgba(139, 69, 69, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
}

.features-section h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    background: var(--card);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(139, 69, 69, 0.5);
    box-shadow: var(--shadow-md);
}

.feature-item .dot {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
}

.feature-item p {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    padding: 5rem 0;
    background: var(--muted);
}

.gallery-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .caption {
    transform: translateY(0);
}

.gallery-item .caption span {
    display: inline-block;
    background: rgba(139, 69, 69, 0.9);
    color: var(--primary-foreground);
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.testimonial {
    max-width: 48rem;
    margin: 4rem auto 0;
    background: var(--card);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    text-align: center;
}

.testimonial .quote-mark {
    font-size: 3rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial blockquote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: var(--muted-foreground);
    font-style: normal;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 5rem 0;
    background: var(--background);
}

.contact-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 4rem;
}

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

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
}

.contact-card .card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-card .icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card .icon.primary {
    background: rgba(139, 69, 69, 0.1);
    color: var(--primary);
}

.contact-card .icon.secondary {
    background: rgba(218, 165, 32, 0.2);
    color: var(--secondary);
}

.contact-card .icon.accent {
    background: rgba(255, 140, 0, 0.2);
    color: var(--accent);
}

.contact-card .label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-card .value {
    font-weight: 500;
    color: var(--foreground);
    word-break: break-all;
}

.contact-card a.value:hover {
    color: var(--primary);
}

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

.contact-buttons .btn {
    flex: 1;
    min-width: 150px;
}

.map-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
}

.footer-main {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-brand img {
    height: 4rem;
    width: auto;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 253, 250, 0.8);
    margin-bottom: 1rem;
    max-width: 24rem;
    line-height: 1.7;
}

.footer-brand .address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 253, 250, 0.6);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 253, 250, 0.8);
}

.footer-links a:hover {
    color: var(--primary-foreground);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 253, 250, 0.8);
}

.footer-contact a:hover {
    color: var(--primary-foreground);
}

.footer-contact .hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 253, 250, 0.2);
}

.footer-contact .hours-label {
    font-size: 0.875rem;
    color: rgba(255, 253, 250, 0.6);
}

.footer-contact .hours-value {
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 253, 250, 0.2);
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 253, 250, 0.6);
}

.footer-bottom .heart {
    color: var(--secondary);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

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

/* ==================== RESPONSIVE DESIGN ==================== */
@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .header-top .container {
        justify-content: space-between;
    }
    
    .header-top .welcome {
        display: block;
    }
    
    .nav-links {
        display: flex;
    }
    
    .nav-cta {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .about-content {
        padding-left: 2rem;
    }
    
    .testimonial {
        padding: 3rem;
    }
    
    .testimonial blockquote {
        font-size: 1.25rem;
    }
}

/* ==================== SCROLL ANIMATIONS ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
