/* GiftKiana - Neumorphism Design */
/* Color Theme: Purple/Pink gradient inspired by gift theme */

:root {
    /* Color Variables */
    --primary-color: #9b59b6;
    --secondary-color: #e91e63;
    --accent-color: #d946ef;
    --background: #e8e4f3;
    --surface: #e8e4f3;
    --text-primary: #2d1b4e;
    --text-secondary: #5a4070;
    --text-muted: #8a7b9a;
    --white: #ffffff;
    --shadow-light: #ffffff;
    --shadow-dark: #c8c3d6;
    
    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 30px;
    
    /* Shadows for Neumorphism */
    --shadow-neu: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    --shadow-neu-inset: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);
    --shadow-neu-hover: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
    --shadow-neu-pressed: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
    color: var(--text-primary);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: var(--spacing-sm) 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1001;
}

.info-banner-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.info-icon {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.info-text {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Header & Navigation */
.header {
    background-color: var(--surface);
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-neu);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu li a {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--surface);
    box-shadow: var(--shadow-neu-inset);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: var(--spacing-xxl) 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(8px 8px 16px rgba(0, 0, 0, 0.1));
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: var(--spacing-sm) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow-neu);
}

.btn-primary:hover {
    box-shadow: var(--shadow-neu-hover);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-neu-pressed);
}

.btn-secondary {
    background: var(--surface);
    color: var(--primary-color);
    box-shadow: var(--shadow-neu);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-neu-hover);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-neu-inset);
}

/* Features Section */
.features {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background);
}

.features h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-neu-hover);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.secure-payment-section {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xxl);
}

.secure-payment-section img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(8px 8px 16px rgba(0, 0, 0, 0.1));
}

/* About Preview Section */
.about-preview {
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.about-preview h2 {
    margin-bottom: var(--spacing-lg);
}

.about-preview p {
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    font-size: 1.1rem;
}

/* Info Section */
.info-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background);
}

.info-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.gift-cards-showcase {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.gift-cards-showcase img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    padding: var(--spacing-lg);
    background: var(--surface);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.info-card {
    background: var(--surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neu);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* Page Header */
.page-header {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: var(--surface);
    box-shadow: var(--shadow-neu);
    margin-bottom: var(--spacing-xl);
}

.page-header h1 {
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Content Section */
.content-section {
    padding: var(--spacing-xl) 0 var(--spacing-xxl);
}

.content-card {
    background: var(--surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    margin-bottom: var(--spacing-lg);
}

.content-card h2 {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
}

.content-card h3 {
    color: var(--primary-color);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

/* Lists */
.styled-list {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.styled-list li {
    margin-bottom: var(--spacing-xs);
    color: var(--text-secondary);
}

/* Contact Page Styles */
.contact-hero-image {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.contact-hero-image img {
    max-width: 100%;
    max-height: 350px;
    height: auto;
    filter: drop-shadow(8px 8px 16px rgba(0, 0, 0, 0.1));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-card {
    background: var(--surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow-neu-hover);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: var(--spacing-md) 0;
}

.hours {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.business-info {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neu-inset);
}

.business-info p {
    margin-bottom: var(--spacing-sm);
}

.contact-info {
    line-height: 1.8;
}

.resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.resource-link {
    background: var(--surface);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-neu);
    transition: all 0.3s ease;
    display: inline-block;
}

.resource-link:hover {
    box-shadow: var(--shadow-neu-hover);
    transform: translateY(-2px);
}

.hours-table {
    background: var(--background);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neu-inset);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--shadow-dark);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-primary);
}

.time {
    color: var(--text-secondary);
}

/* How It Works Page */
.process-illustration {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.process-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    padding: var(--spacing-lg);
    background: var(--surface);
}

.steps-container {
    margin: var(--spacing-lg) 0;
}

.step-item {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neu-inset);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-neu);
}

.step-content h3 {
    margin-bottom: var(--spacing-xs);
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.info-box {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neu-inset);
}

.info-box h3 {
    margin-bottom: var(--spacing-sm);
}

.faq-item {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neu-inset);
    margin-bottom: var(--spacing-md);
}

.faq-item h3 {
    margin-bottom: var(--spacing-xs);
}

/* About Page */
.about-hero-image {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.about-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
    padding: var(--spacing-lg);
    background: var(--surface);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.value-item {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neu-inset);
}

.value-item h3 {
    margin-bottom: var(--spacing-xs);
}

/* Footer */
.footer {
    background: var(--surface);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xxl);
    box-shadow: var(--shadow-neu);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.footer-section p,
.footer-section ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--shadow-dark);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-banner {
        padding: var(--spacing-xs) 0;
    }
    
    .info-text {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .info-banner-content {
        padding: 0 var(--spacing-sm);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--surface);
        width: 100%;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-neu);
        display: none;
    }
    
    .hero {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .features-grid,
    .info-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
    
    .gift-cards-showcase img,
    .about-hero-image img,
    .process-illustration img {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-xxl: 2.5rem;
    }
    
    .info-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .info-icon {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .content-card {
        padding: var(--spacing-md);
    }
}

/* Accessibility */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-buttons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .content-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

