/*======================================================
KST SPICE CORNER
Premium Web Architecture Stylesheet
======================================================*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap');

/* ================= RESET & BASICS ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F8F6F2;
    color: #1F1F1F;
    overflow-x: hidden;
    line-height: 1.7;
}

/* Premium Scrollbar Customization */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #F3F1EB;
}

::-webkit-scrollbar-thumb {
    background: #123524;
    border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1F6F50;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

section {
    padding: 120px 0;
}

/* Global Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h5 {
    color: #C7A646;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #123524;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: #666;
}

/* Luxury Interactive Buttons */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    background: #123524;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.35s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.primary-btn:hover {
    background: #1F6F50;
    transform: translateY(-5px);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    border: 2px solid white;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.35s ease;
    margin-left: 20px;
}

.secondary-btn:hover {
    background: white;
    color: #123524;
}

/* ================= NAVIGATION INTERFACE ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 8px 0; /* Marginally reduced padding to make space for full vertical oval display */
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(18, 53, 36, 0.82);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BRAND LOGO CLARITY ENGINE UPGRADES */
.logo{
    display:flex;
    align-items:center;
    gap:16px;
    color:#fff;
}

.logo img{
    width:72px;
    height:72px;
    object-fit:contain;
    border-radius:50%;
    transition:transform .3s ease;
}

.logo img:hover{
    transform:scale(1.05);
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.logo-text h2{
    margin:0;
    font-size:28px;
    font-weight:800;
    color:#fff;
    letter-spacing:.5px;
}

.logo-text span{
    margin-top:6px;
    font-size:12px;
    color:#d4b45c;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;
}
nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

nav a {
    color: white;
    font-weight: 600;
    position: relative;
    padding: 6px 0;
    font-size: 15px;
    letter-spacing: 0.5px;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #C7A646;
    transition: 0.35s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a.active {
    color: #C7A646 !important;
}

.btn-nav {
    padding: 14px 34px;
    background: #C7A646;
    color: white;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(199, 166, 70, 0.2);
}

.btn-nav:hover {
    background: white;
    color: #123524;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* ================= HERO CINEMATICS ================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.48));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: white;
    width: 90%;
    max-width: 950px;
}

.hero h4 {
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #E2C76B;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 700;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 82px;
    line-height: 1.15;
    margin-bottom: 35px;
    font-weight: 700;
}

.hero span {
    color: #E2C76B;
}

.hero p {
    font-size: 22px;
    margin-bottom: 45px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* ================= INSTITUTIONAL BRAND STORY ================= */
.about {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-image {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 35px 80px rgba(0,0,0,0.18);
}

.about-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-image:hover img {
    transform: scale(1.06);
}

.about-content h5 {
    color: #C7A646;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 18px;
    font-weight: 700;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #123524;
    margin-bottom: 30px;
    line-height: 1.25;
}

.about-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: #F7F5EF;
    border-radius: 18px;
    font-weight: 600;
    transition: 0.35s ease;
}

.about-features div:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.about-features i {
    font-size: 28px;
    color: #C7A646;
}

/* ================= PRODUCT CARDS DISPLAY ================= */
.products {
    background: #F7F6F2;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 90px rgba(0,0,0,0.14);
}

.product-card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover img {
    transform: scale(1.06);
}

.product-content {
    padding: 35px;
}

.product-content h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #123524;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.product-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.75;
}

/* Floating Card Keyframes */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.product-grid > .product-card:nth-child(1) { animation: float 6s ease-in-out infinite; }
.product-grid > .product-card:nth-child(2) { animation: float 7s ease-in-out infinite; }
.product-grid > .product-card:nth-child(3) { animation: float 8s ease-in-out infinite; }
.product-grid > .product-card:nth-child(4) { animation: float 9s ease-in-out infinite; }

/* ================= OUTLETS HUB & CARDS ================= */
.stores {
    background: #ffffff;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.store-card {
    position: relative;
    background: white;
    padding: 45px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.store-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #123524, #C7A646);
}

.store-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 90px rgba(0,0,0,0.16);
}

.featured-store {
    background: linear-gradient(135deg, #123524 0%, #06150e 100%) !important;
    color: white;
}

.featured-store h3,
.featured-store p,
.featured-store i {
    color: white !important;
}

.new-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #C7A646;
    color: #123524;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.store-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 20px;
    color: #123524;
    font-weight: 700;
}

.store-card p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    display: flex;
    align-items: center;
}

.store-card i {
    color: #C7A646;
    margin-right: 12px;
    font-size: 18px;
}

.store-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 14px 30px;
    background: #123524;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.35s ease;
}

.store-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ================= GALLERY REELS ================= */
.gallery {
    background: #F8F6F2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 35px 70px rgba(0,0,0,0.18);
}

.gallery-grid img:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-grid img:nth-child(2) {
    grid-row: span 2;
}

/* ================= CONTACT DESK & OPERATIONS ================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: #F8F6F2;
    border-radius: 22px;
    transition: 0.35s ease;
}

.info-box:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.info-box i {
    font-size: 32px;
    color: #C7A646;
    min-width: 40px;
    margin-top: 4px;
}

.info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 6px;
    color: #123524;
}

.contact-form {
    background: #F8F6F2;
    padding: 45px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 22px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 14px;
    font-size: 16px;
    font-family: inherit;
    background: white;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(199, 166, 70, 0.4);
}

.contact-form button {
    padding: 18px;
    border: none;
    border-radius: 50px;
    background: #123524;
    color: white;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.35s ease;
}

.contact-form button:hover {
    background: #1F6F50;
    transform: translateY(-3px);
}

/* ================= CORPORATE FOOTER SYSTEM ================= */
footer {
    background: #0C2419;
    color: #d6d6d6;
    padding: 90px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 75px;
    width: auto;
    margin-bottom: 25px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-grid p {
    font-size: 15px;
    color: #bcccb5;
    max-width: 320px;
}

.footer-grid h3 {
    color: white;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 14px;
}

.footer-grid a {
    font-size: 15px;
    color: #a7bfa3;
}

.footer-grid a:hover {
    color: #C7A646;
    padding-left: 5px;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: white;
    transition: 0.35s ease;
}

.socials a:hover {
    background: #C7A646;
    color: #123524;
    transform: translateY(-5px);
}

footer hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 40px 0;
}

.copyright {
    text-align: center;
    color: #728a7b;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* ================= RESPONSIVE VIEWPORTS ================= */
@media (max-width: 1150px) {
    .hero h1 {
        font-size: 60px;
    }
    .about-grid,
    .contact-wrapper,
    .store-grid,
    .footer-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-image img {
        height: 480px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero p {
        font-size: 18px;
    }
    .section-title h2 {
        font-size: 36px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }
    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(2) {
        grid-column: auto;
        grid-row: auto;
    }
    .contact-form {
        padding: 25px;
    }
    .logo img {
        height: 75px;
        width: 180px;
    }
    /* Hide navigation bars natively on mobile handheld instances */
    nav, .btn-nav {
        display: none !important;
    }
}