:root {
    --bg-color: #fcf7f0;
    /* Cream/Off-white for comfort */
    --text-color: #3e3e3e;
    /* Dark grey for readability */
    --gold: #b8860b;
    /* Dark goldenrod for contrast on light bg */
    --gold-light: #daa520;
    /* Goldenrod */
    --fire: #cd5c5c;
    /* Muted terracotta/Indian Red - softer than pure red */
    --accent-bg: #fffaf0;
    /* Very light floral white for cards */
    --dark-overlay: rgba(255, 255, 255, 0.4);
    /* Light overlay */
    --card-shadow: 0 10px 20px rgba(184, 134, 11, 0.1);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(184, 134, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(184, 134, 11, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotateY(-5deg);
    }

    50% {
        transform: translateY(-10px) rotateY(0deg);
    }

    100% {
        transform: translateY(0px) rotateY(-5deg);
    }
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay Utility */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

.delay-5 {
    transition-delay: 1.0s;
}

.delay-6 {
    transition-delay: 1.2s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('assets/hero-soft-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighter, cream-toned overlay for a "comfortable" feel with soft blur */
    background: linear-gradient(135deg, rgba(252, 247, 240, 0.5) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hero .container {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #8b6914;
    /* Darker, warmer gold for light background */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #444;
    /* Darker grey for comfort */
    text-shadow: none;
}

.divider-gold {
    height: 3px;
    width: 150px;
    background: linear-gradient(to right, #b8860b, #daa520);
    margin: 0 auto 2rem auto;
}

.hero-text {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #222;
    /* High contrast for comfort */
}

.subheadline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: #555;
}

.hero-image-container {
    perspective: 1000px;
}

.hero-mockup {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: float 5s ease-in-out infinite;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, #2e7d32, #6b8e23);
    /* Vibrant green */
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.4);
    cursor: pointer;
}

.cta-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.6);
}

.price-highlight {
    display: block;
    font-size: 1.5rem;
    color: #ffd700;
    margin-top: 5px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotateY(-10deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-5deg);
    }
}

/* Connection Section */
.connection {
    padding: 5rem 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.connection-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: #555;
}

.highlight {
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    display: inline-block;
    background: rgba(184, 134, 11, 0.05);
    /* Soft background for highlight */
    padding: 1rem;
    border-radius: 0 10px 10px 0;
}

/* Product Showcase */
.product-showcase {
    padding: 4rem 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Tablet Mockup CSS */
.book-3d {
    width: 100%;
    max-width: 320px;
    /* Standard size */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
    animation: float 6s ease-in-out infinite;
    display: block;
    margin: 0 auto;
}

.book-3d:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.text-box {
    text-align: left;
}

.text-box h2 {
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    color: #444;
}

.icon {
    color: var(--gold);
    margin-right: 10px;
}

.note-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--fire);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Learn Section */
.learn {
    background: #fff;
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--accent-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    transition: transform 0.3s, background 0.3s;
    box-shadow: var(--card-shadow);
}

.card:hover {
    transform: translateY(-10px);
    background: #fff;
    border-color: var(--gold);
}

.card h3 {
    color: #444;
    margin-bottom: 0.5rem;
}

.card p {
    color: #666;
}

.icon-large {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.poetic-note {
    margin-top: 3rem;
    font-style: italic;
    font-size: 1.1rem;
    color: #888;
}

/* Audience */
.audience {
    padding: 5rem 0;
    background: var(--bg-color);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.check-list,
.cross-list {
    padding: 2rem;
    border-radius: 15px;
}

.check-list {
    background: #eef9ee;
    /* Very light green */
    border: 1px solid #d0e8d0;
}

.check-list h3 {
    color: #2e7d32;
}

.check-list ul {
    list-style: none;
    margin-top: 1rem;
}

.check-list li {
    margin-bottom: 0.5rem;
    color: #333;
}

.cross-list {
    background: #fdf2f2;
    /* Very light red */
    border: 1px solid #fadbd8;
}

.cross-list h3 {
    color: #c62828;
}

.cross-list p {
    color: #333;
}

/* Why Different */
.why-different {
    background: linear-gradient(135deg, #fdfbf7 0%, #fff 100%);
    padding: 5rem 0;
    border-top: 1px solid #eee;
}

.star-list {
    list-style: none;
    font-size: 1.2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: left;
}

.star-list li {
    margin-bottom: 1rem;
    color: #444;
}

/* Delivery */
.delivery-box {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--gold);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(184, 134, 11, 0.1);
}

.delivery-box ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.delivery-box li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.delivery-note {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    font-style: italic;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.testimonial-card p {
    color: #555;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: var(--gold);
    opacity: 0.3;
}

/* Guarantee */
.guarantee {
    padding: 5rem 0;
    background: var(--bg-color);
}

.guarantee-box {
    border: 2px dashed #ccc;
    padding: 3rem;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
}

.icon-lock {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    /* Use floating concept or just a nice gradient/simple background */
    background: url('assets/hero-tent.jpg') no-repeat center center/cover;
    position: relative;
}

.final-cta .container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.closing-title {
    color: var(--gold);
    margin-bottom: 1rem;
}

.final-cta p {
    color: #444;
    font-size: 1.2rem;
}

.large-btn {
    font-size: 1.2rem;
    margin-top: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .text-box {
        text-align: center;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }


    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        background-color: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .whatsapp-float img {
        width: 32px;
        height: 32px;
    }
}

/* Social Footer */
.site-footer {
    background-color: #1a1a1a;
    padding: 3rem 0;
    color: #fff;
    text-align: center;
    border-top: 4px solid var(--gold);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.social-icons a:hover {
    background: #fff;
    transform: translateY(-5px);
}

/* Specific colors on hover */
.social-icons a:hover .fa-whatsapp {
    color: #25D366;
}

.social-icons a:hover .fa-facebook-f {
    color: #1877F2;
}

.social-icons a:hover .fa-youtube {
    color: #FF0000;
}

.social-icons a:hover .fa-instagram {
    color: #C13584;
    /* Simplified Instagram color */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* For Instagram hover, since we are using text-fill-color, we need to handle the container background carefully. 
   Actually, the previous rule .social-icons a:hover sets background to white.
   Let's keep it simple for Instagram color or use a solid color if gradient is too complex to override.
*/
.social-icons a:hover .fa-instagram {
    color: #E1306C;
    /* Fallback solid color */
    background: none;
    -webkit-text-fill-color: initial;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.6;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 1px;
}

/* New Image Styles */

/* Connection Section Adjustment */
.grid-2-connection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.art-display {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.art-display:hover {
    transform: scale(1.02);
}

/* Delivery Section Adjustment */
.delivery-img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 1.5rem auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .grid-2-connection {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .connection-content {
        order: 1;
    }

    .connection-image {
        order: 2;
        margin-top: 1.5rem;
    }
}

/* Mobile Hero Adjustments */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero .container {
        text-align: center;
    }

    .divider-gold {
        margin: 0 auto 2rem auto;
    }

    .main-title {
        font-size: 3rem;
    }

    .hero-mockup {
        max-width: 300px;
        margin: 0 auto;
    }
}