/* Base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
}

a {
  color: #dbc893;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #000;
  padding: 1em 0;
  border-bottom: 1px solid #222;
}
/* Flexbox layout for header */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Logo and Header Layout */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo h1 {
  font-size: 1.8em;
  color: #dbc893;
  margin: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}

nav {
  float: right;
}

/* Navigation menu */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-left: 20px;
}

nav ul li a {
  color: #dbc893;
  font-weight: bold;
}

.about strong {
  color: #dbc893;
  font-weight: bold;
}

/* Hero Carousel Background */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Logo instead of text */
.hero-logo {
  position: relative;
  z-index: 3;
}

.hero-logo img {
  /*width: 300px;*/
  max-width: 80%;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
}


/* About Section */
.about {
  background-color: #1a1a1a;
  padding: 60px 0;
}

/* Featured Whiskies */
.featured {
  padding: 60px 0;
  background-color: #111;
}

.whisky-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.whisky-card {
  background: #222;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.whisky-card img {
  width: 100%;
  border-radius: 5px;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  background: #000;
  color: #aaa;
  font-size: 0.9em;
}

/* Clearfix */
header::after {
  content: "";
  display: table;
  clear: both;
}

