/* --- RESET & VARIABLES --- */
:root {
    --pink-heading: #b35488;
    --purple-heading: #8a67ab;
    --yellow-bg: #fbf3db;
    --white-bg: #ffffff;
    --gradient-bg: linear-gradient(135deg, #eebfd5 0%, #e6a8d7 50%, #f5d1ba 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,192,203,0.3) 100%);
    
    /* Font placeholders - Ensure you have rights to these fonts */
    --font-heading: 'Tan Kindred', 'Garamond', 'Georgia', serif; 
    --font-body: 'TT Fore', 'Helvetica Neue', 'Arial', sans-serif;
}

/* @font-face setup example - Uncomment and adjust paths if you have files
@font-face {
    font-family: 'Tan Kindred';
    src: url('fonts/TanKindred.woff2') format('woff2');
}
@font-face {
    font-family: 'TT Fore';
    src: url('fonts/TTFore.woff2') format('woff2');
}
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- TYPOGRAPHY UTILS --- */
.text-pink { color: var(--pink-heading); }
.text-purple { color: var(--purple-heading); }
.center-text { text-align: center; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: normal;
}

p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* --- LAYOUT UTILS --- */
section, footer {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 4rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.split-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.split-layout.align-start {
    align-items: flex-start;
}

.text-col, .image-col, .list-col {
    flex: 1;
}

/* --- SECTION 1: HERO --- */
.hero-section {
    background: var(--gradient-bg);
    /* Adding a noise texture overlay simulation via radial gradient */
    background-image: 
        radial-gradient(at 80% 0%, hsla(189,100%,56%,0) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(355,100%,93%,1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(340,100%,76%,1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(22,100%,77%,1) 0px, transparent 50%);
    align-items: center;
    text-align: center;
}

.main-title {
    font-size: 5rem;
    color: var(--pink-heading);
    line-height: 0.9;
    text-shadow: 2px 2px 0px rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
}

.indent-title {
    display: block;
    margin-left: 2rem;
}

.subtitle {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.shop-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.8rem 3rem;
    border-radius: 50px;
    font-family: var(--font-body);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background: white;
    color: var(--pink-heading);
}

/* --- SECTION 2: WHO ARE WE --- */
.who-we-are-section {
    background-color: var(--yellow-bg);
}

.section-title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.body-text p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

/* The 'S' Logo recreation */
.s-logo {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.s-letter {
    font-family: var(--font-heading);
    font-size: 20rem;
    color: var(--pink-heading); 
    /* Making it look like the image (purple/pink) */
    background: linear-gradient(45deg, #b35488, #8a67ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.orbit-ring {
    position: absolute;
    width: 320px;
    height: 100px;
    border: 6px solid #8a67ab; /* Purple ring */
    border-radius: 50%;
    transform: rotate(-30deg);
    border-top-color: transparent; /* Create the swoop effect */
    border-right-color: transparent;
}

.sparkle-1, .sparkle-2 {
    position: absolute;
    color: #fff; /* White sparkle */
    font-size: 1.5rem;
    text-shadow: 0 0 5px #8a67ab;
}

.sparkle-1 { top: 30%; left: 20%; }
.sparkle-2 { bottom: 30%; right: 20%; }


/* --- SECTION 3: WHAT WE OFFER --- */
.what-we-offer-section {
    background-color: var(--white-bg);
}

.offer-head {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold; /* Ensuring visual weight */
}

.offer-item {
    margin-bottom: 2rem;
}

.offer-desc {
    font-size: 1.1rem;
    margin-top: 1rem;
}

.align-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* --- SECTION 4: TEMPLATE FEATURES --- */
.features-section {
    background: var(--gradient-bg);
    /* Similar gradient to hero */
    background-image: 
        radial-gradient(at 20% 100%, hsla(340,100%,76%,0.8) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(22,100%,77%,0.8) 0px, transparent 50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    color: white;
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
}

.feature-card p {
    color: white;
    font-size: 0.9rem;
}

.icon-circle {
    border: 2px solid white;
    border-radius: 50%; /* or rounded rect */
    width: 80px;
    height: 80px; /* keeping icons consistent */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
}
/* Specific tweaks for icons based on image */
.feature-card:nth-child(2) .icon-circle { border-radius: 10px; width: 90px; height: 70px; } /* Monitor shape */


/* --- SECTION 5: OUR STORE (HEARTH) --- */
.store-hearth-section {
    background-color: var(--yellow-bg);
}

.purple-box {
    background-color: #8a67ab; /* Solid purple block */
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.05);
}

.large-box {
    width: 100%;
    height: 400px;
}

.push-down {
    padding-top: 4rem; /* Visual offset */
}

.product-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* --- SECTION 6: OUR STORE (LIST) --- */
.store-list-section {
    background-color: var(--white-bg); /* Or extremely light yellow */
    padding-top: 2rem;
}

.mini-title {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: bold;
}

.product-item {
    margin-bottom: 1.5rem;
    border-left: 2px solid transparent;
    padding-left: 0;
    transition: 0.3s;
}

.product-item:hover {
    border-left: 2px solid var(--purple-heading);
    padding-left: 10px;
}

.spacer-top {
    margin-top: 3rem;
}

.double-image-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tall-box {
    width: 100%;
    height: 350px;
}

/* --- SECTION 7: FOOTER --- */
.footer-section {
    background: var(--gradient-bg);
    background-image: linear-gradient(180deg, #ffc4e1 0%, #e6a8d7 100%);
    justify-content: space-between; /* Spacing content and bottom bar */
    padding-bottom: 2rem;
}

.footer-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Left aligned or center */
    padding-left: 5%; /* Aligning with design flow */
}

.footer-title {
    font-size: 5rem;
    color: white;
    margin-bottom: 0;
}

.footer-sub {
    color: white;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.footer-bar {
    border-top: 1px solid rgba(255,255,255,0.5);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #333; /* Dark text for footer details */
}

.contact-info span {
    display: block;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.contact-info p {
    font-size: 0.9rem;
    color: #444;
}

.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--pink-heading);
}

/* --- RESPONSIVE TWEAKS --- */
@media (max-width: 768px) {
    .section-title, .main-title, .footer-title {
        font-size: 3rem;
    }
    
    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

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

    .footer-bar {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .large-box, .tall-box {
        height: 250px;
    }
}