@charset "UTF-8";
/* CSS Document */

/* GLOBAL IMAGE RESET */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* GLOBAL LINK RESET */
a {
    color: inherit;
    text-decoration: none;
}

/* =========================================================
   HOMEPAGE INTRO SECTION
   ========================================================= */

.smoky-intro {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0;
    padding: 0;

    /* FIRESMOKE + RUSTIC WOOD + EMBER GLOW */
    background: linear-gradient(
        to bottom,
        #2b1f1f 0%,     /* deep smoke */
        #3c2a25 20%,    /* rustic wood */
        #5a3b2e 45%,    /* warm brown */
        #8b4a2b 70%,    /* ember orange */
        #d9a066 100%    /* autumn gold */
    );
}

/* Optional dark overlay */
.smoky-intro::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    width: 100%;
    height: 100%;

    background-color: rgba(20, 8, 2, 0.16);
    content: "";
    pointer-events: none;
}

/* =========================================================
   SMOKY IMAGE
   ========================================================= */

.smoky-cat {
    position: relative;
    z-index: 5;

    display: block;
    width: 430px;
    height: auto;
    max-width: 80%;

    margin: 0 auto;

    transform-origin: center bottom;

    animation-name: smokyBreathe;
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* =========================================================
   FAIRY LIGHTS
   ========================================================= */

.fairy-lights {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;

    width: 100%;
    height: 140px;

    background-image: url("fairy-lights.png");
    background-position: center top;
    background-repeat: repeat-x;
    background-size: auto 140px;

    pointer-events: none;

    animation-name: twinkle;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

/* =========================================================
   FALLING LEAVES
   ========================================================= */

.leaf {
    position: absolute;
    top: -100px;
    z-index: 6;

    width: 60px;
    height: 60px;

    background-image: url("leaf.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;

    pointer-events: none;

    animation-name: leafFall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.leaf1 {
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.leaf2 {
    left: 48%;
    animation-duration: 12s;
    animation-delay: 3s;
}

.leaf3 {
    left: 80%;
    animation-duration: 11s;
    animation-delay: 6s;
}

/* =========================================================
   SMOKE EFFECT
   ========================================================= */

.smoke {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 8;

    width: 100%;
    height: 210px;

    background-image: url("smoke.png");
    background-position: center bottom;
    background-repeat: repeat-x;
    background-size: auto 210px;

    opacity: 0;
    pointer-events: none;

    animation-name: smokeRise;
    animation-duration: 5s;
    animation-timing-function: ease;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

/* =========================================================
   INTRO TEXT
   ========================================================= */

.intro-text {
    position: absolute;
    bottom: 8%;
    left: 0;
    z-index: 20;

    width: 100%;
    padding-right: 20px;
    padding-left: 20px;

    color: #FFFFFF;
    text-align: center;

    opacity: 0;

    animation-name: fadeUp;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-delay: 4s;
    animation-fill-mode: forwards;
}

.logo-fade {
    display: block;
    width: 200px;
    height: auto;
    max-width: 70%;

    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;

    opacity: 0;

    animation-name: fadeIn;
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-delay: 3.5s;
    animation-fill-mode: forwards;
}

.headline {
    margin-bottom: 10px;

    color: #FFFFFF;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;

    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.65);
}

.subheadline {
    max-width: 720px;

    margin-right: auto;
    margin-bottom: 24px;
    margin-left: auto;

    color: #FFF4E8;
    font-size: 19px;
    line-height: 1.5;

    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

/* =========================================================
   CALL-TO-ACTION BUTTON
   ========================================================= */

.cta-btn {
    display: inline-block;

    padding: 15px 30px;

    border: 2px solid #B0FF00;
    border-radius: 6px;

    background-color: #B0FF00;
    color: #0A0A0A;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.cta-btn:hover,
.cta-btn:focus {
    border-color: #FF5F00;
    background-color: #FF5F00;
    color: #FFFFFF;

    transform: translateY(-3px);

    outline: none;
}

/* =========================================================
   SITE HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 100;

    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;

    padding: 20px 30px;

    background-color: #0A0A0A;
    color: #FFFFFF;
}

.logo {
    color: #FFFFFF;
    font-size: 29px;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav a {
    display: inline-block;
    margin-left: 20px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a:focus {
    color: #FF5F00;
}

/* =========================================================
   MAIN CONTENT
   ========================================================= */

.content {
    width: 100%;
    max-width: 1000px;

    margin-right: auto;
    margin-left: auto;

    padding: 60px 24px;
}

.content h1,
.content h2,
.content h3 {
    margin-bottom: 16px;
    color: #0A0A0A;
}

.content p {
    margin-bottom: 20px;
}

/* =========================================================
   SITE FOOTER
   ========================================================= */

.site-footer {
    width: 100%;

    margin-top: 40px;
    padding: 25px 20px;

    background-color: #0A0A0A;
    color: #FFFFFF;

    text-align: center;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes smokyBreathe {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.01); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes twinkle {
    0% { opacity: 0.55; }
    100% { opacity: 1; }
}

@keyframes leafFall {
    0% { transform: translateY(-100px) rotate(0deg); }
    100% { transform: translateY(1100px) rotate(360deg); }
}

@keyframes smokeRise {
    0% { opacity: 0; transform: translateY(60px); }
    100% { opacity: 0.55; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   TABLET STYLES
   ========================================================= */

@media screen and (max-width: 992px) {
    .smoky-cat { width: 330px; }
    .headline { font-size: 31px; }
    .subheadline { font-size: 17px; }
}

/* =========================================================
   MOBILE STYLES
   ========================================================= */

@media screen and (max-width: 768px) {
    .smoky-intro {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        padding: 100px 20px 50px 20px;
    }

    .smoky-cat {
        width: 270px;
        max-width: 90%;
        margin: 0 auto 25px auto;
    }

    .intro-text {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 20px;
        padding: 0;
        opacity: 1;
        animation: none;
    }

    .logo-fade {
        width: 150px;
        opacity: 1;
        animation: none;
    }

    .headline { font-size: 26px; }
    .subheadline { font-size: 16px; }

    .leaf {
        width: 42px;
        height: 42px;
    }

    .site-header {
        display: block;
        padding: 18px 20px;
        text-align: center;
    }

    .logo { margin-bottom: 14px; }

    .nav a {
        margin: 0 8px;
    }
}

/* =========================================================
   SMALL PHONE STYLES
   ========================================================= */

@media screen and (max-width: 480px) {
    .smoky-intro { padding-top: 80px; }
    .smoky-cat { width: 220px; }
    .headline { font-size: 22px; }
    .subheadline { font-size: 14px; }
    .cta-btn { padding: 11px 20px; font-size: 14px; }
    .logo { font-size: 23px; }
    .nav a {
        display: block;
        margin: 8px 0;
    }
}

/* =========================================================
   PRODUCT SECTION
   ========================================================= */

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
}

.product-card {
    flex: 1 1 250px;
    padding: 28px;
    border: 1px solid #D8C1A6;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0 8px 22px rgba(10, 10, 10, 0.12);
}

.product-card h3 {
    margin-bottom: 12px;
    color: #8B3D12;
    font-size: 24px;
}

.product-card p {
    margin-bottom: 22px;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

nav a {
    color: #ff4f00;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #fff;
}

