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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #8B7355;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8B7355;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #8B7355;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #8B7355;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section - Image-only background */
.hero {
    min-height: 100vh;
    background: url('../assets/images/hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 115, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 240, 232, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: rgba(139, 115, 85, 0.08);
    border-radius: 50%;
    transform: rotate(-15deg);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    color: #333;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

/* Featured Products Section */
.featured-products {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 115, 85, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245, 240, 232, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    color: #333;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.3s; }
.product-card:nth-child(2) { animation-delay: 0.5s; }
.product-card:nth-child(3) { animation-delay: 0.7s; }

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.02) 0%, rgba(245, 240, 232, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(139, 115, 85, 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    margin-bottom: 2rem;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.candle-placeholder {
    width: 120px;
    height: 180px;
    position: relative;
    background: transparent;
    margin: 0 auto;
}

.candle-placeholder::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 170px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(249, 247, 244, 0.8) 20%,
        rgba(240, 230, 218, 0.85) 50%,
        rgba(232, 221, 212, 0.9) 80%,
        rgba(215, 200, 185, 0.95) 100%);
    border-radius: 25px;
    box-shadow: 
        0 0 20px rgba(139, 115, 85, 0.15),
        inset 0 0 15px rgba(255, 255, 255, 0.2),
        inset 0 -5px 10px rgba(139, 115, 85, 0.1);
    backdrop-filter: blur(5px);
}

.candle-placeholder::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, #444 0%, #222 100%);
    border-radius: 2px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-info {
    position: relative;
    z-index: 1;
}

.product-title {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #333;
    text-transform: uppercase;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-scent {
    color: #8B7355;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.product-button {
    background: linear-gradient(135deg, #8B7355 0%, #6F5A43 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    position: relative;
    overflow: hidden;
}

.product-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.product-button:hover {
    background: linear-gradient(135deg, #6F5A43 0%, #5A4632 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.4);
}

.product-button:hover::before {
    left: 100%;
}

.featured-cta {
    text-align: center;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.featured-note {
    color: #666;
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Button Styles */
.btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: linear-gradient(135deg, #8B7355 0%, #6F5A43 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6F5A43 0%, #5A4632 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #8B7355;
    border: 2px solid #8B7355;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(139, 115, 85, 0.9);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease 0.3s forwards;
}

.candle-container {
    position: relative;
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced candle with glassmorphism effect */
.candle, .candle-visual {
    width: 200px;
    height: 300px;
    background: transparent;
    border-radius: 0;
    position: relative;
    margin: 0 auto;
    box-shadow: none;
}

.candle::after, .candle-visual::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 280px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(245, 240, 232, 0.6) 30%,
        rgba(232, 221, 212, 0.7) 70%,
        rgba(215, 200, 185, 0.8) 100%);
    border-radius: 30px;
    box-shadow: 
        0 0 20px rgba(139, 115, 85, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.candle::before, .candle-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(to bottom, #444 0%, #222 100%);
    border-radius: 2px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.flame {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
    background: radial-gradient(circle, #FFD700 0%, #FF8C00 70%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 2s ease-in-out infinite alternate;
    z-index: 3;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.candle-img {
    max-width: 150px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: transparent;
    filter: contrast(1.1) saturate(1.2);
    transition: all 0.3s ease;
}

.candle-img:hover {
    filter: contrast(1.2) saturate(1.3) brightness(1.05);
    transform: scale(1.02);
}

.candle-visual {
    width: 150px;
    height: 200px;
    display: block;
    background: transparent;
}

.candle-visual::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 185px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(249, 247, 244, 0.6) 30%,
        rgba(232, 221, 212, 0.7) 70%,
        rgba(215, 200, 185, 0.8) 100%);
    border-radius: 22px;
    box-shadow: 
        0 0 15px rgba(139, 115, 85, 0.15),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
}

.candle-visual::before {
    top: -15px;
    width: 3px;
    height: 20px;
    z-index: 2;
}

.candle-visual .flame {
    top: -30px;
    width: 15px;
    height: 20px;
    z-index: 3;
}

.product-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F9F7F4 0%, #E8DDD4 100%);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    letter-spacing: 2px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* About Page Styles */
.about-hero, .contact-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #F5F0E8 0%, #E8DDD4 100%);
    text-align: center;
}

.about-hero-container, .contact-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    color: #333;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    letter-spacing: 1px;
}

.our-story {
    padding: 5rem 0;
    background: #fff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.workshop-candle {
    width: 250px;
    height: 350px;
    background: transparent;
    border-radius: 0;
    position: relative;
    box-shadow: none;
}

.workshop-candle::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 325px;
    background: linear-gradient(to bottom, 
        rgba(212, 196, 176, 0.9) 0%, 
        rgba(184, 160, 130, 0.8) 100%);
    border-radius: 40px;
    box-shadow: 0 0 25px rgba(139, 115, 85, 0.1);
}

.workshop-candle::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 35px;
    background: #333;
    border-radius: 3px;
    z-index: 2;
}

.workshop-candle .flame {
    top: -50px;
    width: 25px;
    height: 35px;
    z-index: 3;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: #F9F7F4;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    letter-spacing: 2px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: #fff;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: #8B7355;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    letter-spacing: 2px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-content {
    padding: 5rem 0;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #E8DDD4;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B7355;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
    letter-spacing: 1px;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.social-media {
    margin-top: 2rem;
}

.social-media h3 {
    margin-bottom: 1rem;
    color: #333;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-image {
    width: 100%;
    height: 250px; /* Set a fixed height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the box without distortion */
}


.social-link {
    color: #8B7355;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #6F5A43;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #F9F7F4;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-items {
    margin-top: 3rem;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F9F7F4;
}

.faq-question h3 {
    color: #333;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #8B7355;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #8B7355;
    letter-spacing: 1px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8B7355;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flicker {
    0%, 100% { 
        transform: translateX(-50%) rotate(-1deg) scale(1);
        opacity: 0.9;
    }
    50% { 
        transform: translateX(-50%) rotate(1deg) scale(1.1);
        opacity: 1;
    }
}

/* Enhanced scroll animations */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: slideInFromBottom 0.8s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        justify-content: center;
    }
    
    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }
    
    .story-container,
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .page-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .product-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .features-container,
    .values-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-form-section,
    .contact-info-section {
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .candle-container {
        width: 250px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-container,
    .products-container,
    .story-container,
    .values-container,
    .process-container,
    .contact-container,
    .faq-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

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

    .hero-buttons,
    .product-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn {
        width: 100%;
    }

    .hero-content {
        padding: 1rem;
    }

    .candle-container {
        width: 200px;
        height: 250px;
    }
}