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

/* Kleuren & Fonts */
:root {
  --bg: #0b1621;
  --primary: #E0C097;
  --white: #F5F5F5;
  --gray: #9A9A9A;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  padding-top: 80px;
}

.container {
  width: 1024px;
  max-width: 100%;
  margin: 0 auto;
  padding: 32px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(11, 22, 33, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 16px 0;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  position: relative;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  z-index: 1001;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* Hero */
.hero {
  padding-top: 80px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-text {
  width: 550px;
}
.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 76px;
  margin-bottom: 24px;
}
.hero-text p {
  font-size: 20px;
  line-height: 30px;
  color: var(--gray);
  margin-bottom: 40px;
}
.cta-btn {
  font-size: 18px;
  padding: 16px 40px;
  background: var(--primary);
  color: var(--bg);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.cta-btn:hover {
  opacity: 0.9;
}
.hero-image {
  width: 480px;
  height: 320px;
}
.ipad-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.ipad-frame .screen {
  position: absolute;
  inset: 24px;
  background: #444;
  border-radius: 16px;
  overflow: hidden;
}

/* Features */
.features {
  margin-top: 80px;
}
.features .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.features-text {
  width: 550px;
}
.features-text h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 24px;
}
.features-text p {
  font-size: 18px;
  line-height: 28px;
  color: var(--gray);
  margin-bottom: 40px;
}
.features-image {
  width: 480px;
  height: 320px;
}

/* Categories */
.categories {
  margin-top: 80px;
}
.categories .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.categories h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 32px;
}
.category-cards {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.card {
  background: rgba(15,27,43,0.8);
  padding: 24px;
  border-radius: 16px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(224,192,151,0.2);
}
.card-frame,
.card .template-frame {
  width: 240px;
  height: 144px;
  margin: 0 auto 16px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  overflow: hidden;
}
.card h4 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--gray);
}

/* Templates Page Specific Styles */
.templates-header {
  padding: 80px 0 40px;
  text-align: center;
}
.templates-header h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 24px;
}
.templates-header p {
  font-size: 18px;
  line-height: 28px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.template-item {
  background: rgba(15,27,43,0.8);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.template-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(224,192,151,0.15);
}

.template-frame {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid var(--primary);
}

.template-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: white;
  object-fit: cover;
  overflow: hidden;
}

.template-item h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 8px;
}

.template-item .price {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.template-item p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 14px;
}

.template-btn {
  background: var(--primary);
  color: var(--bg);
  border: none;
  padding: 12px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  margin: 0 8px 8px 0;
  transition: opacity 0.3s;
}

.template-btn:hover {
  opacity: 0.9;
}

.buy-btn {
  background: var(--primary);
  color: var(--bg);
}

.buy-btn:hover {
  background: var(--primary);
  opacity: 0.9;
}

/* Contact Page Styles */
.contact-header {
  padding: 80px 0 40px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(15,27,43,0.8);
  padding: 40px;
  border-radius: 16px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(224,192,151,0.3);
  border-radius: 8px;
  background: rgba(11,22,33,0.5);
  color: var(--white);
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
  
  .nav .container {
    padding: 0 16px;
  }
  
  /* Show hamburger menu on mobile */
  .hamburger {
    display: flex;
  }
  
  /* Hide nav links by default on mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(11, 22, 33, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  /* Show nav links when menu is active */
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 24px;
    font-weight: 600;
  }
  
  .hero .container,
  .features .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text,
  .features-text {
    width: 100%;
    margin-bottom: 40px;
  }
  
  .hero-image,
  .features-image {
    width: 100%;
    max-width: 400px;
  }
  
  .category-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .templates-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-text h1 {
    font-size: 36px;
    line-height: 44px;
  }
  
  .features-text h2 {
    font-size: 28px;
    line-height: 36px;
  }
  
  .dienst-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .dienst-item {
    padding: 24px;
  }
  
  .cta-btn {
    font-size: 16px;
    padding: 14px 32px;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .hero .container,
  .features .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text,
  .features-text {
    width: 100%;
    margin-bottom: 40px;
  }
  
  .hero-image,
  .features-image {
    width: 100%;
    max-width: 400px;
  }
  
  .category-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .templates-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    gap: 16px;
  }
  
  .hero-text h1 {
    font-size: 48px;
    line-height: 56px;
  }
  
  .features-text h2 {
    font-size: 36px;
    line-height: 44px;
  }
}



.ipad-frame .screen img,
.template-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.buy-btn {
  background: var(--primary);
  color: var(--bg);
}

.buy-btn:hover {
  background: var(--primary);
  opacity: 0.9;
}




/* Black shopping cart icon styling */
.buy-btn {
  background: var(--primary);
  color: var(--bg);
  position: relative;
}

.buy-btn:hover {
  background: var(--primary);
  opacity: 0.9;
}

/* Make shopping cart emoji black */
.buy-btn::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12L8.1 13h7.45c.75 0 1.41-.41 1.75-1.03L21.7 4H5.21l-.94-2H1zm16 16c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  vertical-align: middle;
}

.buy-btn {
  padding-left: 32px;
}



/* New CSS rules for the updated website structure */
.dienst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; width: 100%; }
.dienst-item { background: rgba(15, 27, 43, 0.9); border: 1px solid rgba(224, 192, 151, 0.2); padding: 32px; border-radius: 16px; text-align: center; transition: all 0.3s; }
.dienst-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(224,192,151,0.1); border-color: var(--primary); }
.dienst-item h3 { font-family: var(--font-heading); color: var(--primary); font-size: 24px; margin-bottom: 16px; }
.dienst-item p { color: var(--gray); font-size: 16px; }
.meerwerk-opties { background: rgba(11,22,33,0.5); border: 1px solid rgba(224, 192, 151, 0.2); border-radius: 8px; padding: 16px; margin: 20px 0; text-align: left; }
.meerwerk-opties p { color: var(--white); font-weight: 600; margin-bottom: 12px !important; text-align: center; }
.meerwerk-opties ul { list-style: none; padding: 0; margin-bottom: 16px; }
.meerwerk-opties li { color: var(--gray); font-size: 14px; margin-bottom: 8px; display: flex; align-items: center; }
.meerwerk-opties .vinkje { color: var(--primary); margin-right: 8px; font-weight: bold; }
.meerwerk-opties a { display: block; text-align: center; color: var(--primary); text-decoration: underline; font-weight: 600; font-size: 14px; }
.form-message { padding: 16px; margin-bottom: 24px; border-radius: 8px; text-align: center; font-weight: 500; border: 1px solid; }
.form-message.success { background: rgba(46, 204, 113, 0.1); color: #2ecc71; border-color: #2ecc71; }
.form-message.error { background: rgba(231, 76, 60, 0.1); color: #e74c3c; border-color: #e74c3c; }

