/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Terracotta & Mediterranean */
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --orange-300: #fdba74;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --orange-800: #9a3412;
    --orange-900: #7c2d12;
    --orange-950: #431407;
    
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    
    --rose-200: #fecdd3;
    --rose-300: #fda4af;
    --rose-400: #fb7185;
    --rose-600: #e11d48;
    --rose-700: #be123c;
    
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    --spacing-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 1.75rem;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.5;
    background-color: var(--stone-100);
    color: var(--stone-700);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Default state (before visible) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.3s ease-out;
}

/* When in view */
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(234, 88, 12, 0.4);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo h1 {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--orange-900);
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeInLeft 0.6s ease-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-desktop {
    display: none;
    gap: var(--spacing-1);
}

.nav-item {
    padding: var(--spacing-2) var(--spacing-3);
    color: var(--stone-700);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInDown 0.6s ease-out forwards;
}

.nav-item:hover {
    color: var(--orange-800);
    background-color: var(--orange-50);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item:nth-child(1) { animation-delay: 0.05s; }
.nav-item:nth-child(2) { animation-delay: 0.1s; }
.nav-item:nth-child(3) { animation-delay: 0.15s; }
.nav-item:nth-child(4) { animation-delay: 0.2s; }
.nav-item:nth-child(5) { animation-delay: 0.25s; }
.nav-item:nth-child(6) { animation-delay: 0.3s; }
.nav-item:nth-child(7) { animation-delay: 0.35s; }
.nav-item:nth-child(8) { animation-delay: 0.4s; }
.nav-item:nth-child(9) { animation-delay: 0.45s; }

.nav-mobile-toggle {
    display: none;
}

.mobile-menu-btn {
    color: var(--orange-900);
    padding: var(--spacing-2);
    border-radius: var(--radius-lg);
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: var(--orange-50);
}

.nav-mobile {
    display: none;
    padding-bottom: var(--spacing-4);
}

.nav-mobile.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.nav-item-mobile {
    display: block;
    width: 100%;
    text-align: left;
    padding: var(--spacing-3) var(--spacing-4);
    color: var(--stone-700);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-1);
}

.nav-item-mobile:hover {
    color: var(--orange-800);
    background-color: var(--orange-50);
}

/* Desktop Navigation - Show on XL screens */
@media (min-width: 1280px) {
    .nav-desktop {
        display: flex;
    }
    
    .nav-mobile-toggle {
        display: none;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    height: 100dvh;
    overflow: hidden;

}

.hero-product-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
    opacity: 0.7;
}

.hero-product-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.hero-product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-item-1 { animation: float1 8s ease-in-out infinite; }
.hero-item-2 { margin-top: 3rem; animation: float2 10s ease-in-out infinite; }
.hero-item-3 { margin-top: 6rem; animation: float3 7s ease-in-out infinite; }
.hero-item-4 { margin-top: -3rem; animation: float1 9s ease-in-out infinite; }
.hero-item-5 { animation: float2 11s ease-in-out infinite; }
.hero-item-6 { margin-top: -4rem; animation: float3 6s ease-in-out infinite; }


.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 237, 213, 0.5), transparent, rgba(231, 229, 228, 0.5));
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
}

.floating-container {
    position: absolute;
    inset: 0;
    perspective: 1000px;
    transition: transform 0.3s ease-out;
}

.floating-card {
    position: absolute;
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(253, 186, 116, 0.4);
    transition: transform 0.3s ease-out;
}

.floating-card-1 {
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 20rem;
    background: linear-gradient(to bottom right, rgba(254, 215, 170, 0.4), rgba(253, 186, 116, 0.3));
    box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.15);
    animation: float1 6s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 25%;
    right: 25%;
    width: 18rem;
    height: 24rem;
    background: linear-gradient(to bottom right, rgba(254, 243, 199, 0.4), rgba(214, 211, 209, 0.3));
    box-shadow: 0 25px 50px -12px rgba(217, 119, 6, 0.15);
    animation: float2 8s ease-in-out infinite;
}

.floating-card-3 {
    top: 50%;
    right: 33%;
    width: 14rem;
    height: 18rem;
    background: linear-gradient(to bottom right, rgba(254, 205, 211, 0.4), rgba(254, 215, 170, 0.3));
    box-shadow: 0 25px 50px -12px rgba(251, 113, 133, 0.15);
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-20px) translateX(10px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(20px) translateX(-10px) rotate(-2deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-15px) translateX(-5px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--spacing-4);
    /*background-image: linear-gradient(rgba(255, 255, 255, 0.363), rgba(255, 255, 255, 0.479)),url('./blue.jpg');
    background-size: cover;*/
}

.hero-text {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--orange-950);
    letter-spacing: -0.025em;
    margin-bottom: var(--spacing-6);
    text-shadow: 2px 4px 14px rgb(0,0,0,0.5);
}

.hero-gradient-text {
    display: block;
    background: linear-gradient(to right, var(--orange-600), var(--rose-600), var(--orange-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--orange-950);
    max-width: 42rem;
    margin: 0 auto var(--spacing-6);
    text-shadow: 2px 4px 14px rgb(0,0,0,0.5);
}

.hero-btn {
    margin-top: var(--spacing-8);
    padding: 16px 32px;
    background: linear-gradient(to right, var(--orange-600), var(--orange-700));
    color: white;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.3);
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(234, 88, 12, 0.3), 0 10px 10px -5px rgba(234, 88, 12, 0.2);
}

.hero-btn:active {
    transform: scale(0.95);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    animation: fadeIn 1s ease-out 1s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.scroll-indicator svg {
    color: var(--stone-400);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, #000, transparent);
}

/* Hero Responsive */
@media (min-width: 768px) {
    .hero-title {
        font-size: 96px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products-container {
    position: relative;
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.products-container h1{
    text-align: center;
}
.products-subtext {
  text-align: center;
  font-size: 1rem;
  color: #444;
  max-width: 700px;
  margin: 0.5rem auto 2rem;
  line-height: 1.6;
}


.section-header {
    text-align: center;
    margin-bottom: var(--spacing-20);
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    color: #000000;
    margin-bottom: var(--spacing-6);
    text-shadow: 2px 4px 14px rgb(0,0,0,0.5);
}

.section-gradient-text {
    display: block;
    color: #000000;
    text-shadow: 2px 4px 14px rgb(0,0,0,0.5);
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--stone-600);
    max-width: 48rem;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
}

.product-card {
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-card-inner {
    position: relative;
    height: 500px;
    border-radius: var(--radius-3xl);
    overflow-x: hidden;
    background: white;
    border: 1px solid rgba(254, 215, 170, 0.5);
    box-shadow: 0 25px 50px -12px hsla(21, 90%, 48%, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.product-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(234, 88, 12, 0.2);
}

.product-image-wrapper {
    position: absolute;
    inset: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card-inner:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--orange-950), rgba(124, 45, 18, 0.5), transparent);
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-8);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.product-content h3 {
    color: white;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: var(--spacing-3);
}

.product-content p {
    color: rgba(254, 215, 170, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: var(--spacing-6);
}

.product-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    color: rgba(253, 186, 116, 1);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.product-btn:hover {
    color: rgba(254, 215, 170, 1);
    transform: translateX(5px);
}

.product-highlight {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card-inner:hover .product-highlight {
    opacity: 1;
}

.product-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
}

/* Products Responsive */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 60px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    position: relative;
    padding: 4rem 0;
    box-sizing: border-box;
    overflow: hidden;
    background: linear-gradient(to bottom, #fff, #aaaaaa, #000);

}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./curtain3.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.9; /* adjust to desired transparency */
    z-index: 0;
}

.features-container {
    z-index: 1; /* ensures content sits above the background */
}


.features-bg {
    position: absolute;
    inset: 0;
}

.features-blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
}

.features-blob-1 {
    top: 25%;
    left: 25%;
    
    animation: blob1 20s ease-in-out infinite;
}

.features-blob-2 {
    bottom: 25%;
    right: 25%;
    
    animation: blob2 20s ease-in-out infinite;
}

@keyframes blob1 {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(90deg); }
}

@keyframes blob2 {
    0%, 100% { transform: scale(1.2) rotate(90deg); }
    50% { transform: scale(1) rotate(0deg); }
}

.features-container {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-8);
}

.feature-card {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
    
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card-inner {
    position: relative;
    padding: var(--spacing-8);
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(254, 215, 170, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.feature-card-inner:hover {
    transform: translateY(-10px) rotateY(5deg) scale(1.05);
    border-color: rgba(234, 88, 12, 0.5);
    box-shadow: 0 20px 25px -5px rgba(234, 88, 12, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: var(--spacing-6);
    background: linear-gradient(to bottom right, var(--orange-500), var(--rose-600));
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(234, 88, 12, 0.2);
    transform: translateZ(20px);
    transition: all 0.6s ease;
}

.feature-card-inner:hover .feature-icon {
    transform: translateZ(20px) rotateY(180deg) scale(1.1);
}

.feature-icon svg {
    color: white;
}

.feature-card h3 {
    color: var(--orange-950);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: var(--spacing-3);
}

.feature-card p {
    color: var(--stone-600);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.feature-shine {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);

    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card-inner:hover .feature-shine {
    opacity: 1;
}

.feature-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(253, 186, 116, 0.3), transparent);
    animation: shine 0.6s ease-out;
}

.frame {
  width: 500px;
  height: 200px;
  border-radius: 12px;
  border: 0;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

/* Features Responsive */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:768px) {
    .hero-product-item{
        height: 50%;
        width: 150%;
        left: -20%;
        top: 20%;
    }

    .nav-mobile-toggle {
        display: block;
    }
    .contact-card{
        width: 100%;
    }

    .frame {
        width: 90%;    
        height: 200px;   
        margin: 0 auto;  
        display: block;
    }

    .contact-section{
        height: auto !important;
        overflow: none;
    }
}



@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    position: relative;
    padding: 1.5rem 0;
    background-image: url('./wooden.webp');
    background-size: cover;
    height: auto;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
}

.contact-blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
}

.contact-blob-1 {
    top: 0;
    left: 25%;
    /*background: rgba(251, 146, 60, 0.15);*/
    animation: contactBlob1 8s ease-in-out infinite;
}

.contact-blob-2 {
    bottom: 0;
    right: 25%;
    background: rgba(251, 113, 133, 0.15);
    animation: contactBlob2 8s ease-in-out infinite;
}

@keyframes contactBlob1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes contactBlob2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
}

.contact-container {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
    height: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.contact-cta {
    animation: fadeInLeft 0.8s ease-out;
}

.contact-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--orange-950);
    margin-bottom: var(--spacing-6);
}

.contact-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    margin-bottom: var(--spacing-8);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: 16px 32px;
    background: linear-gradient(to right, var(--orange-600), var(--orange-700));
    color: white;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.3);
}

.contact-btn:hover {
    transform: scale(1.05) translateX(5px);
    box-shadow: 0 20px 25px -5px rgba(234, 88, 12, 0.3), 0 10px 10px -5px rgba(234, 88, 12, 0.2);
}

.contact-btn:active {
    transform: scale(0.95);
}

.contact-btn svg {
    transition: transform 0.3s ease;
}

.contact-btn:hover svg {
    transform: translateX(4px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.contact-card {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(254, 215, 170, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    opacity: 0;
    animation: fadeInRight 0.6s ease-out forwards;
}

.contact-card:nth-child(1) { animation-delay: 0s; }
.contact-card:nth-child(2) { animation-delay: 0.1s; }
.contact-card:nth-child(3) { animation-delay: 0.2s; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-card:hover {
    transform: translateX(-10px) scale(1.02);
    border-color: rgba(234, 88, 12, 0.5);
    box-shadow: 0 20px 25px -5px rgba(234, 88, 12, 0.1);
}

.contact-card-inner {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    background: linear-gradient(to bottom right, var(--orange-500), var(--rose-600));
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(234, 88, 12, 0.2);
    transition: transform 0.6s ease;
}

.contact-card:hover .contact-icon {
    transform: rotateY(180deg);
}

.contact-icon svg {
    color: white;
}

.contact-card h3 {
    color: var(--orange-950);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: var(--spacing-1);
}

.contact-card p {
    color: var(--stone-600);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.contact-card a {
    color: var(--stone-600);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
}

.contact-card-shine {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.contact-card:hover .contact-card-shine {
    opacity: 1;
}

.contact-card-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(253, 186, 116, 0.3), transparent);
    animation: shine 0.6s ease-out;
}

/* Contact Responsive */
@media (min-width: 768px) {
    .contact-title {
        font-size: 60px;
    }
    
    .contact-text {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    border-top: 1px solid rgba(254, 215, 170, 0.5);
    padding: var(--spacing-12) 5rem;
    background-color: #ff7835;
    height: auto;
}

.footer-logo{
    height: 100px;
    width: 100px;
    padding: 0 1rem;
}

.footer-details{
    width: 50% ;
    padding: 1rem 1rem;
    text-align: left;
}

.footer-details h1{
    color: #7c2d12;
    font-weight: 500;
}

.footer-details p{
    color: #ffffff !important;
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 80rem;
    margin: 0 0;
    padding: 0 var(--spacing-4);
}

.footer-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #431407;
    padding: 8px;
}

.footer-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-details {
  flex: 2;
  z-index: 10;
}

.card-holder {
  position: relative;
  width: 300px;
  height: 200px;
  margin: 0 auto;
}

.card {
  position: absolute;
  top: 0%;
  left: 10%;
  width: 150px;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  object-fit: cover;
  padding: 1rem 0.1rem;
  background-color: #fff;
}

/* Default: straight */
.card1,
.card2,
.card3 {
  transform: rotate(0deg) translateX(0);
}

/* On hover: fan out */
.card-holder:hover .card1 {
  transform: rotate(-25deg) translateX(-100px);
  z-index: 1;
}

.card-holder:hover .card2 {
  transform: rotate(0deg);
  z-index: 2;
}

.card-holder:hover .card3 {
  transform: rotate(25deg) translateX(100px);
  z-index: 3;
}

.footer-content p{
    color: #ffffff !important;
    text-align: center;
}

.footer h3 {
    color: var(--orange-950);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: var(--spacing-4);
}

.footer p {
    color: var(--stone-500);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer{
        height: auto;
    }
    .footer-row{
        flex-direction: column;
        align-items: center;
    }
    .card {
        top: -10%;
        left: 25%;
        height: 200px;
        width: 150px;
    }
    .footer{
        padding: 1rem 0;
    }
    .footer-details{
        width: 100%;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Popup Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 800px;
  max-width: 90%;
  text-align: center;
  position: relative;
  gap: 2rem;
}

.popup img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  background: none;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 18px;
  cursor: pointer;
}

.products-container {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  background: #f9f9f9;
  padding: 20px 0;
  height: 100vh;
}

.products-behaviour{
    padding: 2rem 0;
    gap: 2rem;
}

.products-behaviour h1{
    text-align: center;
}

.products-scroll {
  display: flex;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.products-row {
  display: flex;
  gap: 20px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0,0,0);
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

@keyframes scrollLeft {
  from { transform: translateX(0); -webkit-transform: translateX(0); }
  to { transform: translateX(-50%); -webkit-transform: translateX(-50%); }
}

.product-card {
  width: 300px;
  min-height: 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 16px;
  text-align: center;
  flex-shrink: 0;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  margin: 10px 0 6px;
  font-size: 1.1rem;
}

.product-card p {
  font-size: 0.9rem;
  color: #555;
}



h6{
    text-align: right;
    color: #fff;
}

h6 span{
    font-size: 1rem;
    color: #fff;
}

.line {
  border: none;             
  height: 3px;              
  background-color: #ffffff;    
}
