/* ========== GLOBAL RESET & BASE ========== */
<link rel="stylesheet" href="style.css">
/* Reset & base */
* { box-sizing: border-box; margin:0; padding:0; }
body { font-family: 'Segoe UI', Arial, sans-serif; background:#121212; color:#f5f5f5; line-height:1.6; }

/* Header & navigation */
header, footer { background:#1e1e1e; border-bottom:1px solid #2c2c2c; }
header .wrap, footer .wrap { max-width:1100px; margin:0 auto; padding:16px; display:flex; align-items:center; justify-content:space-between; }
.brand { display:flex; align-items:center; gap:10px; }
.logo { width:28px; height:28px; background:#00b894; border-radius:50%; }
.title { font-weight:700; color:#f5f5f5; letter-spacing:0.5px; }
nav a { text-decoration:none; color:#f5f5f5; margin:0 10px; font-weight:500; transition:color 0.3s; }
nav a:hover { color:#00b894; }

/* Hero section */
.hero { background:#1e1e1e; border-bottom:1px solid #2c2c2c; }
.hero .wrap { max-width:1100px; margin:0 auto; padding:40px 16px; text-align:center; }
.hero h1 { margin-bottom:10px; color:#f5f5f5; font-size:30px; }
.hero p { color:#b0b0b0; font-size:16px; }

/* Sections */
.section { max-width:1100px; margin:0 auto; padding:24px 16px; }
.section h2 { color:#f5f5f5; margin-bottom:16px; font-size:22px; }

/* Catalog table */
table { width:100%; border-collapse:collapse; margin-bottom:20px; }
th, td { padding:10px 12px; border-bottom:1px solid #2c2c2c; text-align:left; }
th { background:#1e1e1e; color:#00b894; font-weight:600; }
td { color:#f5f5f5; }

/* Coffee cards grid */
.grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:16px; }
.card { background:#1e1e1e; border:1px solid #2c2c2c; border-radius:12px; padding:16px; box-shadow:0 4px 12px rgba(0,0,0,0.4); transition:transform 0.2s ease; }
.card:hover { transform:translateY(-4px); }
.card h3 { margin-bottom:8px; color:#00b894; font-size:18px; }
.notes { color:#b0b0b0; font-size:14px; margin-bottom:8px; }
label { font-size:13px; color:#b0b0b0; display:block; margin-top:6px; }
input, select, textarea { width:100%; padding:8px; border:1px solid #2c2c2c; border-radius:6px; margin-top:4px; font-size:14px; background:#121212; color:#f5f5f5; }

/* Buttons */
.button { background:#00b894; color:#fff; border:none; padding:10px 14px; border-radius:8px; cursor:pointer; margin-top:10px; font-size:14px; transition:background 0.3s; }
.button:hover { background:#019374; }

/* Cart */
.cart { background:#1e1e1e; border:1px solid #2c2c2c; border-radius:12px; padding:16px; margin-top:20px; }
.cart h3 { margin-bottom:10px; color:#00b894; }
.cart-item { border-bottom:1px solid #2c2c2c; padding:8px 0; font-size:14px; }
.cart-item:last-child { border-bottom:none; }
.total { font-weight:700; color:#f5f5f5; margin-top:10px; font-size:16px; }
.discount { color:#00b894; margin-top:6px; font-size:14px; }

/* Order form */
.form { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:12px; margin-top:20px; }
textarea { min-height:90px; font-size:14px; background:#121212; color:#f5f5f5; }

/* Footer */
footer small { color:#b0b0b0; font-size:13px; }


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Cormorant Garamond", "Segoe UI", Arial, sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.7;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #b8860b;
  margin-bottom: 12px;
}
p {
  color: #ddd;
  margin-bottom: 16px;
}

/* ========== HEADER ========== */
header {
  background: #0d0d0d;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
.logo-text-main {
  font-weight: bold;
  font-size: 1.3rem;
}
.logo-text-sub {
  font-size: 0.9rem;
  color: #b8860b;
}
.nav-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
  .nav-links a.active {
  color: #bfa14a; /* matte gold */
  font-weight: bold;
  border-bottom: 2px solid #bfa14a;
}

}
.nav-links a:hover,
.nav-links a.active {
  color: #b8860b;
}
.language-switch a {
  margin-left: 8px;
  text-decoration: none;
  color: #fff;
}
.language-switch a.active {
  font-weight: bold;
  color: #b8860b;
}

/* ========== HERO SECTIONS ========== */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #111, #0d0d0d);
}
.hero {
  text-align: center; /* centers text and inline elements */
}

.hero-image {
  display: block;      /* makes the image a block element */
  margin: 20px auto;   /* centers it horizontally */
  max-width: 100%;     /* keeps it responsive */
  height: auto;        /* maintains aspect ratio */
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  margin-bottom: 32px;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #b8860b;
  color: #fff;
  margin-right: 12px;
}
.btn-primary:hover {
  background: #a0740a;
}
.btn-secondary {
  border: 1px solid #b8860b;
  color: #b8860b;
}
.btn-secondary:hover {
  background: #b8860b;
  color: #fff;
}
.hero-image {
  margin-top: 24px;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

/* ========== IMAGE STYLING ========== */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 36px rgba(0,0,0,0.6);
}

/* ========== GRID & CARDS ========== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.card {
  background: #1a1a1a;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.card h3 {
  margin-bottom: 12px;
  color: #b8860b;
}
.card p {
  color: #ccc;
}

/* ========== BLOG POSTS ========== */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.post {
  background: #1a1a1a;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.post h3 {
  margin-bottom: 12px;
  color: #b8860b;
}
.post p {
  color: #ccc;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.contact-card {
  background: #1a1a1a;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #b8860b;
}
form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #444;
  border-radius: 8px;
  background: #111;
  color: #fff;
}
form input:focus, form textarea:focus {
  border-color: #b8860b;
  outline: none;
}
form button {
  background: #b8860b;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}
form button:hover {
  background: #a0740a;
}

/* ========== FOOTER ========== */
footer {
  background: #0d0d0d;
  padding: 24px 0;
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-left {
  color: #aaa;
}
.logo-mark {
  font-size: 1.6rem;
  font-weight: bold;
  color: #b8860b;
}

/* ========== FLOATING SOCIAL BAR ========== */
.floating-social-bar {
  position: fixed;
  left: 10px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-social-bar a {
  background: #b8860b;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}
.floating-social-bar a:hover {
  background: #a0740a;
}

/* ========== FLOATING WHATSAPP & TELEGRAM ========== */
.whatsapp-float, .telegram-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  margin-left: 8px;
  text-decoration: none;
}
.whatsapp-icon, .telegram-icon {
  background: #b8860b;
  color: #fff;
  padding: 14px;
  border-radius: 50%;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.whatsapp-icon:hover, .telegram-icon:hover {
  transform: scale(1.1);
}/* Brand alignment */
.brand {
  display: flex;             /* puts logo + text in one row */
  align-items: center;       /* aligns them vertically in the middle */
}

.brand .title {
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;         /* space between logo and text */
}

