/*
Theme Name: Letona Cafe
Theme URI: https://letonacafe.com
Author: Letona Cafe
Description: Custom base theme for Letona Cafe, built for use with Elementor page builder. Provides global colors, typography, and header/footer structure.
Version: 1.0
Requires at least: 5.8
Requires PHP: 7.4
Text Domain: letona-cafe
*/

:root {
  --letona-navy: #1c2330;
  --letona-navy-dark: #14181f;
  --letona-gold: #a08a3c;
  --letona-gold-light: #c4a94f;
  --letona-red: #c1272d;
  --letona-grey-bg: #f0f0f0;
  --letona-white: #ffffff;
  --letona-text-dark: #333333;
  --letona-text-light: #f5f5f5;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--letona-text-dark);
  background: var(--letona-white);
  margin: 0;
}

a {
  text-decoration: none;
}

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

/* Header */
.site-header {
  background: var(--letona-white);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eaeaea;
}

.site-header .logo img {
  max-height: 50px;
}

.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.site-header nav ul li a {
  color: var(--letona-navy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.site-header nav ul li a:hover {
  color: var(--letona-gold);
}

/* Buttons */
.btn-gold {
  display: inline-block;
  background: var(--letona-gold);
  color: var(--letona-white);
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}

.btn-gold:hover {
  background: var(--letona-gold-light);
}

/* Section helpers */
.section {
  padding: 70px 40px;
  text-align: center;
}

.section-grey {
  background: var(--letona-grey-bg);
}

.section-navy {
  background: var(--letona-navy);
  color: var(--letona-text-light);
}

.section-red {
  background: var(--letona-red);
  color: var(--letona-white);
}

.section-title {
  font-size: 30px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
}

.section-navy .section-title,
.section-red .section-title {
  color: var(--letona-white);
}

.accent-bar {
  width: 100%;
  height: 6px;
  background: var(--letona-gold);
}

/* Footer */
.site-footer {
  background: var(--letona-navy-dark);
  color: #cccccc;
  padding: 50px 40px 20px;
}

.site-footer a {
  color: #cccccc;
}

.site-footer a:hover {
  color: var(--letona-gold-light);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #999;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
  }
  .site-header nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .section {
    padding: 40px 20px;
  }
}
