@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --primary-color: #e84393;
    --secondary-color: #6a6969;
    --background-color: #121212;
    --text-color: #151313;
    --header-bg-color: #e7e6eb;
    --hero-text-color: #e2dfdf;

    /* About */
    --bg: #0b0b0b;
    /* black */
    --panel: #1a1a1a;
    /* dark grey */
    --muted: #bfbfbf;
    /* silver/grey */
    --accent: #c8c8c8;
    /* lighter silver */
    --primary: #9fa4a7;
    /* button color */
    --max-w: 1200px;
    --gap: 2rem;
}

body {
    padding-top: 140px;
    /* Adjusted for both top-bar and header */
    background-color: var(--background-color);
    color: #e0e0e0;
}

/* Top contact bar - hidden on mobile */
.top-bar {
    background-color: #6a6969;
    color: #e0e0e0;
    padding: 8px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-bottom: 1px solid #333;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #e84393;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #e0e0e0;
    font-size: 16px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e84393;
}

/* Main header */
header {
    background-color: var(--header-bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #141212;
    text-decoration: none;
}

.logo span {
    color: #e84393;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #0f0101;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #e84393;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e84393;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-color);
    background: none;
    border: none;
}

/* Close button - hidden by default */
.close-menu {
    display: none;
    /* Initially hidden */
    align-self: flex-end;
    font-size: 28px;
    color: #e0e0e0;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 30px;
}

/* Mobile contact section - hidden by default */
.mobile-contact {
    display: none;
}

/* Mobile menu styles */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
        /* Only header height on mobile */
    }

    .sticky {

        top: 0 !important;
        /* Adjust sticky header position for mobile */

    }

    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }

    /* Adjust header position */
    header {
        top: 0;
    }

    /* Full-screen mobile menu */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--background-color);
        transition: left 0.3s ease;
        z-index: 1002;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    nav.active {
        left: 0;
    }

    /* Show close button on mobile */
    .close-menu {
        display: block;
        /* Show on mobile */
    }

    /* Menu items */
    nav ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    nav ul li a {
        font-size: 18px;
        padding: 12px 0;
        display: block;
        color: #e0e0e0;
    }

    /* Show contact info at bottom of menu - MOBILE ONLY */
    .mobile-contact {
        display: block;
        margin-top: auto;
        padding-top: 30px;
        border-top: 1px solid #333;
    }

    .mobile-contact .contact-info {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .mobile-contact .social-icons {
        justify-content: center;
        gap: 20px;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hide mobile contact on desktop */
@media (min-width: 769px) {
    .mobile-contact {
        display: none !important;
    }

}

/* Sticky header effect */
.sticky {
    position: fixed;
    top: 40px;
    width: 100%;
    animation: slideDown 0.5s;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}




.hero {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
    margin: auto;
}

/* Left column */
.hero-content {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInLeft 1.2s ease;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--hero-text-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--hero-text-color);
}

.hero-content button {
    padding: 0.75rem 1.5rem;
    border: none;
    width: fit-content;
    background: var(--primary-color);
    color: #fff;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    animation: fadeInUp 1.5s ease;
}

.hero-content button:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Right column (Square Slider) */
.hero-slider {
    flex: 1 1 400px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(19, 18, 18, 0.774);
    animation: fadeInRight 1.2s ease;

    /* square aspect ratio */
    aspect-ratio: 1 / 1;
    max-width: 500px;
    width: 100%;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
    height: 100%;
    width: 100%;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

/* Decorative Elements */
.decoration {
    position: absolute;
    z-index: -1;
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 73, 74, 0.651) 0%, transparent 70%);
    top: 10%;
    right: 5%;
}

.square {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(105, 100, 102, 0.347), transparent);
    bottom: 20%;
    left: 5%;
    transform: rotate(45deg);
}

.triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid rgba(105, 100, 102, 0.347);
    top: 40%;
    left: 15%;
    transform: rotate(30deg);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;

    }

    .hero-content {
        flex: 1 1 100%;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content button {
        width: 100%;
        text-align: center;
    }

}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* about section */
.about-section {
    background: linear-gradient(180deg, var(--bg), #080808 120%);
    color: var(--muted);
    padding: 3rem 1rem;
    display: block;
}

.about-wrapper {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

/* Left: image */
.about-media {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    /* ensures a good-looking card on narrow screens */
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 700ms cubic-bezier(.22, .9, .2, 1), opacity 700ms ease;
}

.about-media img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 500ms ease, filter 400ms ease;
}

.about-media:hover img {
    transform: scale(1.04);
    filter: contrast(105%);
}

/* Right: content */
.about-content {
    padding: 0 0.5rem;
    transform: translateX(30px);
    opacity: 0;
    transition: transform 700ms cubic-bezier(.22, .9, .2, 1), opacity 700ms ease;
}

.about-content .eyebrow {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.about-content h2 {
    color: #fff;
    margin: 0 0 0.75rem 0;
    font-size: 1.8rem;
    line-height: 1.1;
}

.about-content p {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: grid;
    gap: 0.5rem;
}

.about-list li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--muted);
}

.about-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.about-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: #f3eeee;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.btn-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.45rem 0.6rem;
    border-radius: 6px;
    transition: background 200ms ease;
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* === "in-view" classes toggled by JS for scroll reveal === */
.about-media.in-view,
.about-content.in-view {
    transform: translateX(0);
    opacity: 1;
}

/* Responsive: stack columns on small screens */
@media (max-width: 860px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .about-media {
        min-height: 260px;
        order: 0;
        /* image on top */
    }

    .about-content {
        order: 1;
        text-align: left;
        padding-top: 0.5rem;
    }

    .about-content h2 {
        font-size: 1.4rem;
    }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {

    .about-media,
    .about-content,
    .about-media img,
    .btn-primary {
        transition: none !important;
        transform: none !important;
    }
}
/* Container */
  .featured-products {
    background: linear-gradient(180deg, #0b0b0b, #080808);
    color: #d1d1d1;
    padding: 3rem 1rem;
  }

  .featured-products .container{
    max-width: 1200px;
    margin: 0 auto;
  }

  .featured-products h2{
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    text-align: center;
  }

  /* Grid: 4 columns on large screens */
  .products-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: start;
  }

  /* Product card */
  .product-card{
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    transition: transform 260ms cubic-bezier(.2,.9,.2,1), box-shadow 260ms ease;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-direction: column;
  }

  /* Elevate on hover/focus */
  .product-card:hover,
  .product-card:focus {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.75);
  }

  /* Image wrapper: creates the zoom effect */
  .product-card .media{
    width: 100%;
    aspect-ratio: 1 / 1; /* keep image square inside card */
    overflow: hidden;
    background: #121212;
  }

  .product-card .media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 420ms cubic-bezier(.2,.9,.2,1);
    display: block;
  }

  /* Hover zoom */
  .product-card:hover .media img,
  .product-card:focus .media img {
    transform: scale(1.08);
  }

  /* Meta area (title only) */
  .product-card .meta{
    padding: 0.85rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-card .title{
    font-size: 0.95rem;
    color: #f5f5f5;
    margin: 0;
    line-height: 1.2;
    text-align: center;
  }

  /* More button */
  .more-wrap{
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
  }

  .more-btn{
    background:var(--primary-color);
    color: #e9e3e3;
    border: none;
    padding: 0.65rem 1.15rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .more-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.6); }

  /* Responsive breakpoints */
  @media (max-width: 1200px){
    .products-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 992px){
    .products-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 420px){
    .products-grid { grid-template-columns: 1fr; }
    .product-card .meta{ padding: 0.65rem; }
  }

  /* Accessibility: visible focus ring */
  .product-card:focus {
    box-shadow: 0 0 0 4px rgba(159,164,167,0.12), 0 18px 40px rgba(0,0,0,0.75);
  }

  @media (prefers-reduced-motion: reduce){
    .product-card, .media img, .more-btn { transition: none !important; }
  }

  /* footer section */

  .site-footer{
    background: var(--header-bg-color);
    padding: 2.25rem 1rem;
    
  }

  .footer-inner{
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 2rem;
    align-items: start;
    justify-items: stretch;
  }

  .footer-col { min-width: 0; }

  /* Brand column */
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .footer-logo{
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 0.25rem;
  }

  .logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color);
    letter-spacing: 0.02em;
  }
  .logo-text p {
    display: inline-flex;
    
    color: var(--primary-color);
  }

  .brand-text{
    margin: 0;
    color: var(--text-color);
    line-height: 1.5;
    font-size: 0.95rem;
  }

  /* Links column */
  .footer-links .col-title,
  .footer-contact .col-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--text-color);
    text-decoration: underline;
  }

  .footer-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.375rem;
  }

  .footer-links li a{
    color: var(--panel);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 160ms ease, transform 160ms ease;
    display: inline-block;
    padding: 6px 0; /* makes links more tappable on mobile */
  }

  .footer-links a:hover,
  .footer-links a:focus {
    color:#333;
    transform: translateX(4px);
    outline: none;
  }

  /* Contact column */
  .contact-block {
    font-style: normal;
    color: #333;
    display: grid;
    gap: 0.5rem;
  }

  .contact-line {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    font-size: 0.95rem;
  }

  .contact-line a{
    color: var(--text);
    text-decoration: none;
    transition: color 160ms ease;
  }

  .contact-line a:hover,
  .contact-line a:focus { color: var(--link-hover); outline: none; }

  /* Footer bottom */
  .footer-bottom{
    margin-top: 1.25rem;
    border-top: 1px solid rgba(10,10,10,0.06);
    padding-top: 1rem;
    text-align: center;
    color: var(--panel);
    font-size: 0.9rem;
  }

  /* Responsive: 2 columns on medium, 1 column on small screens */
  @media (max-width: 900px){
    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .footer-brand { align-items: flex-start; }
  }

  /* MOBILE: center everything and ensure links visible/tappable */
  @media (max-width: 560px){
    .footer-inner {
      grid-template-columns: 1fr;
      text-align: center;       /* center text */
      align-items: center;      /* center columns */
      gap: 0.75rem;
    }

    .footer-brand, .footer-links, .footer-contact {
      align-items: center;
    }

    .footer-links ul{
      display: flex;            /* show links horizontally (wrap when needed) */
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
      justify-content: center;  /* center links */
    }

    .footer-links li {
      list-style: none;
      margin: 0;
    }

    .footer-links li a {
      font-size: 0.97rem;
      padding: 8px 6px;
      transform: none; /* remove horizontal hover shift on small screens */
    }

    .contact-line {
      flex-direction: column;
      align-items: center;
      gap: 0.125rem;
    }
  }

  /* Accessibility: visible focus */
  a:focus { outline: 3px solid rgba(11,123,209,0.18); outline-offset: 2px; border-radius: 4px; }

  @media (prefers-reduced-motion: reduce){
    .footer-links a, .contact-line a { transition: none !important; transform: none !important; }
  }