/* ===========================
   ARTISAN HILLS - STYLES
   =========================== */

/* Brand Color Palette */
:root {
    --craft-brown: #9C7A5C;
    --dark-earth: #4A3A2C;
    --warm-clay: #7B5A44;
    --stone-beige: #E8E2D8;
    --charcoal: #1C1C1C;
    --white: #FFFFFF;
    
    /* Additional shades */
    --craft-brown-light: #B8997A;
    --dark-earth-light: #6B5745;
    --warm-clay-light: #9A7862;
    --stone-beige-dark: #D4CCC0;
    
    /* Shadows and overlays */
    --shadow-light: rgba(74, 58, 44, 0.08);
    --shadow-medium: rgba(74, 58, 44, 0.15);
    --shadow-dark: rgba(28, 28, 28, 0.25);
    --overlay: rgba(74, 58, 44, 0.9);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--stone-beige);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1.5rem;
    color: var(--dark-earth);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 85%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--dark-earth);
    color: var(--white);
    border-color: var(--dark-earth);
}

.btn-primary:hover {
    background: var(--warm-clay);
    border-color: var(--warm-clay);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-earth);
    border-color: var(--dark-earth);
}

.btn-secondary:hover {
    background: var(--dark-earth);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--dark-earth);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--stone-beige);
    border-color: var(--stone-beige);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-earth);
}

.btn-full {
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--stone-beige);
}

::-webkit-scrollbar-thumb {
    background: var(--warm-clay);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-earth);
}

/* ===========================
   LOADING SCREEN
   =========================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-earth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
  
}

.loader-logo {
    width: 150px;
    height: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-logo img {
    width: 100px;
    height: 60px;
    z-index: 10;
     filter: brightness(0) invert(1);
}

.loader-circle {
    position: absolute;
    border: 2px solid var(--stone-beige);
    border-radius: 90%;
    opacity: 0.3;
}

.loader-circle:nth-child(1) {
    width: 150px;
    height: 150px;
    animation: rotate 3s linear infinite;
}

.loader-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    animation: rotate 3s linear infinite reverse;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--stone-beige);
    letter-spacing: 3px;
}


.loader-tagline {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--stone-beige);
    opacity: 0.7;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: var(--dark-earth);
    /* Simple subtle texture */
    background-image: linear-gradient(
        135deg, 
        rgba(156, 122, 92, 0.1) 0%, 
        transparent 50%, 
        rgba(123, 90, 68, 0.1) 100%
    );
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow-dark);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(74, 58, 44, 0.95);
    /* Even more subtle when scrolled */
    background-image: linear-gradient(
        135deg, 
        rgba(156, 122, 92, 0.05) 0%, 
        transparent 50%, 
        rgba(123, 90, 68, 0.05) 100%
    );
    backdrop-filter: blur(15px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.navbar.scrolled .nav-logo img {
    height: 60px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-earth);
    letter-spacing: 2px;
}
.nav-logo img {
   height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--craft-brown);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--craft-brown);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    display: block;
    padding: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-earth);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 1px solid var(--stone-beige);
}

.mobile-link:last-child {
    border-bottom: none;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
    /* Fallback solid color background */
    background: var(--dark-earth);
    
    /* Primary background image - update this path to your actual image */
    background-image: url('./assets/desktop.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* This creates parallax effect on desktop */
}

/* Overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.hero-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--warm-clay) 35px, var(--warm-clay) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--craft-brown) 35px, var(--craft-brown) 70px);
    opacity: 0.2;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 0 30px;
}

/* Ensure hero elements are visible */
.hero-content * {
    opacity: 1;
    visibility: visible;
    color: var(--white); /* Make text white for better contrast */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Add text shadow for readability */
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.1;
}

.title-line {
    display: block;
    overflow: hidden;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--stone-beige);
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ensure buttons stay visible */
.hero-cta .btn {
    opacity: 1 !important;
    visibility: visible !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--stone-beige);
    border-radius: 25px;
    opacity: 0.8;
    z-index: 2;
}

.scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--stone-beige);
    border-radius: 50%;
    animation: scroll-animation 2s infinite;
}

@keyframes scroll-animation {
    0% { top: 8px; opacity: 1; }
    50% { opacity: 0.5; }
    100% { top: 30px; opacity: 0; }
}

/* ===========================
   ABOUT SECTION
   =========================== */.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: block; /* Changed from grid to block for single column */
    max-width: 100%; /* Limit width for better readability */
    margin: 0 auto; /* Center the content */
}

.about-content {
    width: 100%;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--craft-brown);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-earth);
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-earth);
    margin-bottom: 25px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: rgba(139, 90, 60, 0.05); /* Subtle background for stats */
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--craft-brown);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--warm-clay);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ===========================
   COLLECTIONS SECTION
   =========================== */
.collections {
    padding: var(--section-padding) 0;
    background: var(--stone-beige);
    
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* always 4 cards */
  gap: 30px;
  margin-bottom: 40px;
}

.collection-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.collection-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.card-image {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, var(--warm-clay), var(--craft-brown));
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This makes the image cover the entire container */
  object-position: center; /* Centers the image within the container */
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collection-card:hover .card-overlay {
  opacity: 1;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
}

.card-content {
  padding: 30px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark-earth);
  margin-bottom: 10px;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--craft-brown);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--warm-clay);
  margin-bottom: 20px;
}

.card-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-earth);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--craft-brown);
    transform: translateX(5px);
}

/* ===========================
   VALUES SECTION
   =========================== */
.values {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--stone-beige);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--craft-brown);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark-earth);
    margin-bottom: 15px;
}

.value-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--warm-clay);
}



/* ===========================
   ARTISANS SECTION
   =========================== */
.artisans {
  padding: var(--section-padding) 0;
  background-color: var(--stone-beige);
}

.artisans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.artisans-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--dark-earth);
  margin-bottom: 15px;
}

.artisans-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--warm-clay);
  margin-bottom: 20px;
}

.artisans-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--charcoal);
}

.artisans-text .artisan-quote {
  font-weight: bold;
  color: var(--craft-brown);
  margin-top: 20px;
}

.artisans-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow-light);
}

.artisans-image1 img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow-light);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta {
    padding: var(--section-padding) 0;
    background: var(--dark-earth);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--stone-beige);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-content {
    text-align: center;
}

.contact-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--dark-earth);
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--warm-clay);
    margin-bottom: 0;
}

/* Two Column Layout - Desktop */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    text-align: left;
}

/* Left Column - Contact Cards */
.contact-cards-section {
    display: flex;
    flex-direction: column;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    background: var(--stone-beige);
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-medium);
    background: var(--white);
}

.contact-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 15px;
    color: var(--craft-brown);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    color: var(--dark-earth);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-details h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--dark-earth);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--warm-clay);
    margin: 0;
    font-weight: 500;
}

/* Right Column - Contact Form */
.contact-form-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Contact Form Container */
.contact-form-container {
    max-width: 100%;
    margin: 0;
    background: var(--stone-beige);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--dark-earth);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--craft-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow-medium);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-clay);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Enhanced button styles for contact form */
.contact-form .btn {
    width: 100%;
    margin-top: 10px;
    padding: 18px 40px;
    font-size: 16px;
}

.btn:disabled {
    background: var(--stone-beige-dark) !important;
    border-color: var(--stone-beige-dark) !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    color: var(--warm-clay) !important;
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input.success,
.form-group textarea.success {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}


/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: 60px 0 30px;
    background: var(--dark-earth);
    /* Traditional diamond and zigzag patterns inspired by Naga textiles */
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 30px,
            rgba(156, 122, 92, 0.1) 30px,
            rgba(156, 122, 92, 0.1) 32px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(123, 90, 68, 0.08) 15px,
            rgba(123, 90, 68, 0.08) 17px
        ),
        /* Diamond pattern */
        radial-gradient(
            circle at 50px 50px,
            rgba(232, 226, 216, 0.05) 2px,
            transparent 2px
        );
    background-size: 100% 100%, 30px 30px, 100px 100px;
    color: var(--white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--craft-brown) 0%,
        var(--warm-clay) 25%,
        var(--craft-brown) 50%,
        var(--warm-clay) 75%,
        var(--craft-brown) 100%
    );
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
  filter: brightness(0) invert(1);
    width: 180px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--stone-beige);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--craft-brown);
}

.footer-column a {
    display: block;
    font-size: 0.95rem;
    color: var(--stone-beige);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--stone-beige);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--craft-brown);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
    
    :root {
        --section-padding: 80px;
    }

    .container {
        max-width: 960px;
    }

  .hero {
        background-attachment: scroll; /* Disable parallax on tablets for better performance */
        background-image: url('./assets/desktop.png'); /* Keep desktop image for tablets */
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-grid {
        gap: 60px;
    }

    .footer-links {
        gap: 30px;
    }
    .contact-main-grid {
        gap: 40px;
    }
    
    .contact-info-grid {
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-form-container {
        padding: 35px;
    }
}

/* Tablets */
@media (max-width: 968px) {
    :root {
        --section-padding: 60px;
    }

 .hero {
        background-image: url('./assets/desktop.png'); /* Keep desktop image for tablets */
        background-attachment: scroll;
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .image-frame {
        height: 400px;
    }

    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

  

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .cta-content {
        padding: 0 20px;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    /* Typography adjustments */
    h1 { font-size: clamp(2rem, 5vw, 3rem); }
    h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
    h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
    
    body {
        font-size: 15px;
    }

    /* Navigation */
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar {
        padding: 15px 0;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    /* Hero Section */
.hero {
        /* Switch to mobile image if you have one, otherwise keep desktop */
        background-image: url('./assets/mobils.png'), url('./assets/desktop.png'); /* Fallback to desktop if mobile doesn't exist */
        min-height: 500px;
        height: calc(100vh - 60px);
        background-attachment: scroll; /* Always scroll on mobile */
    }
    
    .hero::before {
        background: rgba(0, 0, 0, 0.6); /* Slightly darker overlay for mobile */
    }
    
    .hero-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    /* About Section */
   .about-grid {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat {
        padding: 15px;
    }
    
    .section-title {
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 1rem;
          margin-bottom: 20px;
    }
    /* Collections */
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-image {
        height: 250px;
    }

    .card-number {
        font-size: 2.5rem;
    }

    .card-content {
        padding: 25px;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-card {
        padding: 30px 20px;
    }


    /* CTA */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 200px;
    }

    /* Contact */
   .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* Form comes first on mobile */
    .contact-form-section {
        order: 1;
    }
    
    .contact-cards-section {
        order: 2;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .contact-form .btn {
        padding: 16px 32px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .footer-column h4 {
        margin-bottom: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
    
}

/* Mobile Portrait */
@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
        --container-padding: 15px;
    }

    /* Typography */
    h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
    h3 { font-size: clamp(1.2rem, 4vw, 1.5rem); }
    
    body {
        font-size: 14px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    /* Navigation */
    .nav-logo {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .mobile-link {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* Hero */
 .hero {
        min-height: 450px;
        /* Multiple fallbacks for mobile */
        background-image: url('./assets/mobils.png'), url('./assets/desktop.png'), linear-gradient(135deg, var(--dark-earth) 0%, var(--warm-clay) 100%);
        background-position: center center;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .scroll-indicator {
        width: 25px;
        height: 40px;
    }

    .scroll-indicator {
        width: 25px;
        height: 40px;
    }

    /* About */
    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .image-frame {
        height: 280px;
    }

    /* Collections */
    .card-image {
        height: 240px;
    }

    .card-number {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-subtitle {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .card-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .card-link {
        font-size: 0.85rem;
    }

    /* Values */
    .value-card {
        padding: 25px 15px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .value-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .value-text {
        font-size: 0.9rem;
    }

    

    /* CTA */
    .cta {
        padding: 50px 0;
    }

    .cta-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }

    .cta-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .cta-buttons .btn {
        width: 180px;
    }

    /* Contact */
  .contact-main-grid {
        gap: 30px;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        padding: 25px 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
    }

    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-logo {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .footer-column a {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-social a {
        width: 30px;
        height: 30px;
    }

    .footer-social svg {
        width: 16px;
        height: 16px;
    }
    
}

/* Very Small Devices */
@media (max-width: 360px) {
    :root {
        --section-padding: 30px;
        --container-padding: 12px;
    }

.hero {
        background-position: center center;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .card-title,
    .value-title {
        font-size: 1.2rem;
    }
    .contact-info-grid {
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px 12px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: row;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===========================
   NAVBAR + HERO FIXES
   for 1280x832 and 1024x666
   =========================== */
@media (max-width: 1366px) {
  header nav {
    padding: 8px 20px;
  }

  header nav a {
    font-size: 0.95rem;
    margin: 0 10px;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 20px;
  }

  .hero p {
    font-size: clamp(0.85rem, 1vw, 1rem);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.4;
  }
    .nav-logo img {
   height: 80px;
}

}

@media (max-width: 1024px) {
  header nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 6px 15px;
  }

  header nav a {
    font-size: 0.9rem;
    margin: 6px 8px;
  }

  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    max-width: 700px;
  }

  .hero p {
    font-size: 0.85rem;
    max-width: 650px;
  }
  .nav-logo img {
   height: 60px;
}

}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .hero {
        /* Force background image to load on high DPI displays */
        background-image: url('./assets/desktop.png'), linear-gradient(135deg, var(--dark-earth) 0%, var(--warm-clay) 100%);
        background-size: cover, cover;
    }
}

/* Very High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        /* Use higher resolution images if available, with fallbacks */
        background-image: url('./assets/desktop.png'), url('./assets/desktop.png'), linear-gradient(135deg, var(--dark-earth) 0%, var(--warm-clay) 100%);
        background-size: cover, cover, cover;
    }
    
    @media (max-width: 768px) {
        .hero {
            background-image: url('./assets/mobils.png'), url('./assets/mobils.png'), url('./assets/desktop.png'), linear-gradient(135deg, var(--dark-earth) 0%, var(--warm-clay) 100%);
            background-size: cover, cover, cover, cover;
        }
    }
}

/* Windows scaling issues fix */
@media screen and (min-device-pixel-ratio: 1.25) and (min-width: 1024px) {
    .hero {
        background-image: url('./assets/desktop.png'), linear-gradient(135deg, var(--dark-earth) 0%, var(--warm-clay) 100%);
        background-size: cover, cover;
        background-attachment: scroll; /* Disable parallax on scaled windows */
    }
}