@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --primary: #c2410c;
  --accent-red: #ea580c;
  --accent-brand: #f97316;
  --background: #ffffff;
  --text-dark: #334155;
  --text-light: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-border: rgba(255, 255, 255, 0.5);
  --border-glow: rgba(249, 115, 22, 0.4);
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-story: 'Playfair Display', serif;

  --transition: all 0.3s ease;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; 
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

p {
  font-weight: 300;
  color: #4a4a4a;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding: 80px 0;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent-brand);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background-color: #ea580c; /* Slightly darker */
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
}

/* Glassmorphism Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95); /* Slightly brighter when scrolled down */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  font-weight: 300;
  opacity: 0.9;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.logo:hover .nav-logo-icon {
  transform: scale(1.1) rotate(5deg);
}

.navbar:not(.scrolled):not(.navbar-dark-text) .logo,
.navbar:not(.scrolled):not(.navbar-dark-text) .nav-links a {
  color: var(--text-light);
}

.navbar.navbar-dark-text:not(.scrolled) .nav-links a {
  color: var(--text-dark);
}

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

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-brand);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-brand) !important;
}

.nav-phone {
  font-weight: 600;
  color: var(--primary);
  background: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-glow);
}

.nav-phone:hover {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 24px;
}

.navbar:not(.scrolled):not(.navbar-dark-text) .hamburger {
  color: var(--text-light);
}
.navbar.scrolled .hamburger,
.navbar.navbar-dark-text .hamburger {
  color: var(--primary);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.3s;
}

.hero .subtext {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.5s;
}

.hero .btn-primary {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.7s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Other Sections Base */
.section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 16px;
}

/* Split Section (Our Story) */
.split-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.split-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-image:hover img {
  transform: scale(1.05);
}

.split-content {
  flex: 1;
}

.story-text {
  font-family: var(--font-story);
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.highlight-red {
  color: var(--accent-red);
  font-weight: 600;
}

/* Product Cards */
.products-preview {
  background: transparent;
}

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

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-glow);
}

.product-img {
  height: 250px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.product-info p {
  margin-bottom: 24px;
  flex-grow: 1;
}

.btn-outline {
  display: block;
  text-align: center;
  padding: 10px 24px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
}

/* Enquiry Form */
.enquiry-section {
  background: #fff7ed;
  color: var(--text-dark);
  padding: 80px 0;
  position: relative;
}

.enquiry-section .section-title {
  color: var(--primary);
}

.enquiry-section p {
  color: #475569;
}

.enquiry-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid #fed7aa;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-control:focus {
  border-color: var(--accent-brand);
  background: #ffffff;
}

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

.enquiry-form .btn {
  width: 100%;
}

.form-status {
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
}

/* Footer */
footer {
  background: #f8fafc; /* Deeper variant of primary */
  color: var(--text-dark);
  padding: 60px 0 20px;
  border-top: 1px solid #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-brand);
}

.footer-col p {
  color: #475569;
  margin-bottom: 12px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #475569;
}

.footer-links a:hover {
  color: var(--accent-brand);
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: 12px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  color: var(--accent-brand);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-contact li:hover .footer-icon {
  transform: scale(1.15);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Utilities for Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page Specific Hero Variants */
.hero-sm {
  height: 60vh;
  min-height: 400px;
}
/* Removed navbar-solid block */

/* Responsive */
@media (max-width: 768px) {
  section { padding: 40px 0; }
  .container { padding: 0 20px; }
  
  .nav-links, .nav-phone {
    display: none; /* Hide on mobile initially */
  }
  
  .hamburger {
    display: block;
  }
  
  /* Mobile Menu Styles */
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 20px;
    box-shadow: var(--shadow);
  }
  
  .nav-menu.active .nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .nav-menu.active .nav-links a {
    color: var(--text-light) !important;
  }
  
  .nav-menu.active .nav-phone {
    display: inline-block;
    text-align: center;
  }

  .split-section .container {
    flex-direction: column;
    text-align: center;
  }
  
  .split-content {
    order: 1; /* For mobile if we want order changes */
  }
}
