
:root {
  --gold: #D4AF37;
  --black: #050505;
  --burgundy: #800020;
  --cream: #FFFDD0;
  --charcoal: #36454F;
  --text-dark: #333333;
  --text-light: #777777;
  --green: #228B22;
  --red: #E0115F;
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Libre Franklin', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream);
  margin: 0;
  padding: 0;
}


.art-deco-border {
  border: 2px solid var(--gold);
  position: relative;
  background-color: var(--charcoal);
}

.art-deco-border::before, 
.art-deco-border::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
}

.art-deco-border::before {
  top: -5px;
  left: -5px;
  border-right: none;
  border-bottom: none;
}

.text-cream {
  color: var(--gold);
}

.art-deco-border::after {
  bottom: -5px;
  right: -5px;
  border-left: none;
  border-top: none;
}

.art-deco-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto;
  width: 80%;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--black);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--burgundy);
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--gold);
}

h3 {
  font-size: 1.5rem;
  color: var(--charcoal);
}

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

a:hover, a:focus {
  color: var(--gold);
  text-decoration: underline;
}

p {
  margin-bottom: 1.5rem;
}

.text-gold {
  color: var(--gold);
}

.bg-gold {
  background-color: var(--gold);
  color: var(--black);
}

.bg-black {
  background-color: var(--black);
  color: var(--cream);
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.section:nth-child(odd) {
  background-color: var(--cream);
}

.section:nth-child(even) {
  background-color: white;
}


.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }

@media (max-width: 768px) {
  .col-6, .col-4, .col-3 {
    width: 100%;
  }
}


header {
  background-color: var(--black);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
}

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

.logo {
  height: 50px;
}

.nav-desktop {
  display: flex;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop li {
  margin-left: 1.5rem;
}

.nav-desktop a {
  color: var(--cream);
  font-weight: 500;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.nav-desktop a:hover, 
.nav-desktop a:focus,
.nav-desktop a.active {
  color: var(--gold);
  text-decoration: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--black);
  padding: 2rem;
  transition: var(--transition);
  z-index: 1001;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile li {
  margin: 1rem 0;
}

.nav-mobile a {
  color: var(--cream);
  font-size: 1.2rem;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile a:hover, 
.nav-mobile a:focus {
  color: var(--gold);
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
}


.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-color: var(--black);
  color: white;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  color: var(--cream);
  margin-bottom: 1rem;
  border: none;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--cream);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hero-image {
    width: 100%;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
}


.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--black);
}

.btn-primary:hover, 
.btn-primary:focus {
  background-color: var(--black);
  color: var(--gold);
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--black);
  color: var(--cream);
  border: 2px solid var(--gold);
}

.btn-secondary:hover, 
.btn-secondary:focus {
  background-color: var(--gold);
  color: var(--black);
  text-decoration: none;
}


.filter {
  background-color: var(--charcoal);
  padding: 2rem;
  border-radius: 0;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--cream);
  font-weight: 500;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 0.8rem;
  border: none;
  background-color: var(--cream);
  border-radius: 0;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
}

.filter-btn:hover {
  background-color: var(--burgundy);
  color: var(--cream);
}


.card {
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 1.5rem;
}

.card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.card-meta i {
  color: var(--gold);
}


.case-study {
  padding: 4rem 0;
  background-color: var(--black);
  color: var(--cream);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  margin: 3rem 0;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  margin: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}


.calendar {
  border-collapse: collapse;
  width: 100%;
}

.calendar th {
  background-color: var(--black);
  color: var(--cream);
  padding: 1rem;
  text-align: left;
}

.calendar td {
  padding: 1rem;
  border-bottom: 1px solid var(--text-light);
}

.calendar tr:hover {
  background-color: rgba(212, 175, 55, 0.1);
}


.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 0;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check input {
  margin-top: 0.3rem;
  margin-right: 0.8rem;
}

.form-check label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
}

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


.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  flex: 1;
  min-width: 250px;
}

.contact-item i {
  color: var(--gold);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.map-container {
  height: 400px;
  margin-top: 2rem;
}


.subscription {
  background-color: var(--charcoal) !important;
  color: var(--cream);
  padding: 3rem 0;
  text-align: center;
}

.subscription h2 {
  color: var(--gold);
}

.subscription-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto;
}

.subscription-form input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 0;
}

.subscription-form button {
  padding: 0 1.5rem;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
}


footer {
  background-color: var(--black);
  color: var(--cream);
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--gold);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--cream);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--black);
  color: var(--cream);
  padding: 1.5rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  flex: 1;
  margin-right: 1rem;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.cookie-modal.active {
  display: flex;
}

.cookie-dialog {
  background-color: white;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.cookie-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
}

input:checked + .toggle-slider {
  background-color: var(--gold);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}


.dialog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.dialog.active {
  display: flex;
}

.dialog-content {
  background-color: white;
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  position: relative;
  text-align: center;
  border: 3px solid var(--gold);
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.dialog-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}


.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.slide-in {
  animation: slideIn 0.5s ease-in-out;
}

.fade-in-up {
  animation: fadeInUp 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }


@media (max-width: 992px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.3rem; }
  
  .subscription-form {
    flex-direction: column;
  }
  
  .subscription-form input,
  .subscription-form button {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  
  .filter-form {
    flex-direction: column;
  }
  
  .contact-info {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 2rem 0;
  }
  
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-actions button {
    width: 100%;
  }
}


.iti {
  width: 100%;
}