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

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

h1, h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #f5f5f5;
  font-size: 0.9rem;
}

.top-bar a {
  color: #000;
  font-weight: 500;
  position: relative;
}

.top-bar a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #000;
  transition: width 0.3s ease;
}

.top-bar a:hover::after {
  width: 100%;
}

.subscribe-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.subscribe-btn:hover {
  background: #444;
  transform: translateY(-2px);
}

.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}

.main-header.sticky-shadow {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.header-upper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 40px;
  position: relative;
}

.logo img {
  height: 40px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.header-icons {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-link img {
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-link img:hover {
  transform: scale(1.2);
  filter: brightness(0) saturate(100%) invert(0.3);
}

.main-nav {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 25px;
  padding: 12px 0;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1.5px;
  left: 0;
  bottom: -4px;
  background: #000;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  text-align: center;
  overflow: hidden; 
}

.hero-img {
  width: 100%;
  height: auto;           
  max-height: none;       
  object-fit: contain;    
  display: block;
  margin: 0 auto;
}

.magazine {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.magazine h2 {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.magazine h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.magazine p {
  font-size: 0.9rem;
  color: #444;
}

.kris-quote {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: 'Old Standard TT', serif;
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
  text-align: center; 
}

.slider-section,
.shop-edits {
  padding: 60px 0;
  max-width: 1200px;
  margin: auto;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.slider {
  position: relative;
  overflow: hidden;
  margin: 0 20px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slides img {
  width: calc(100% / 3);
  flex-shrink: 0;
  object-fit: cover;
  padding: 0 10px;
  transition: transform 0.3s ease;
}

.slides img:hover {
  transform: scale(1.02);
}

.controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
}

.controls button {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.controls button:hover {
  background: rgba(0,0,0,0.7);
  transform: scale(1.05);
}

.next-btn {
  text-align: center;
  margin: 40px 0;
}

.next-btn a {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}

.next-btn a:hover {
  background: #444;
  transform: translateY(-2px);
}

footer {
  background: #000;
  color: #fff;
  text-align: left; 
  padding: 60px 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; 
  gap: 40px;
  flex-wrap: wrap;
}

.footer-info {
  max-width: 350px;
}

.footer-logo {
  height: 28px;
  margin-bottom: 20px;
}

.footer-desc {
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.3;
  margin: 0 0 30px 0; 
  padding: 0;
  font-weight: 100;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
}

.social-icons img {
  width: 32px;   
  height: 32px;  
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-links {
  display: flex;
  justify-content: right;
  gap: 80px;
  margin: 0;
  flex-wrap: wrap;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0; 
  text-align: left;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #888;
}

.footer-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

footer hr {
  border: none;
  border-top: 1px solid #333;
  margin: 40px 0;
}

.copyright {
  font-size: 0.75rem;
  color: #999;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

.shop-item {
  width: calc(100% / 3);
  padding: 0 10px;
  text-align: center;
  flex-shrink: 0;
}

.shop-item img {
  width: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
}

.shop-item p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.5px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.shop-item p:hover {
  color: #444;
}


.news-section {
  padding: 80px 20px;
  background-color: #f9f9f9; 
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.news-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 27px;
  font-weight: 530;
  margin-bottom: 50px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 30px;
  text-align: left;
}

.news-card {
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: #000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
  transition: all 0.3s ease;
}

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

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card-content {
  padding: 20px;
}

.news-source {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.news-card-title {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}


@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr); 
  }

  .news-card:first-child {
    grid-column: 1 / -1; 
    display: flex;
    align-items: center;
  }

  .news-card:first-child img {
    width: 55%; 
    height: 350px; 
    flex-shrink: 0;
  }
  
  .news-card:first-child .news-card-content {
    flex-grow: 1;
    padding: 30px;
  }
  
  .news-card:first-child .news-card-title {
    font-size: 1.8rem; 
  }
}


@media (max-width: 900px) {
  .footer-content {
    flex-direction: column; 
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  footer {
      padding: 40px 20px;
  }
  .footer-content, .footer-info, .footer-links ul {
      align-items: center; 
      text-align: center;
  }
  .social-icons, .footer-links {
      justify-content: center;
  }
  .footer-links {
      gap: 40px;
      margin-top: 40px;
  }

  .shop-item {
    width: 100%;
    padding: 0 5px;
  }
  .shop-item p {
    font-size: 0.85rem;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;          
    width: 80%;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 9999;
  }
  .main-nav.open {
    right: 0;            
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 40px 20px;
  }
  .main-nav li {
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
    text-align: left;
  }
  .main-nav a {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
  }

  .header-upper {
      justify-content: space-between; 
      padding: 15px 20px;
  }
  .header-icons {
      position: static;
      transform: none;
      gap: 8px;
  }
  .logo img {
      height: 30px;
  }
  .icon-link img {
      width: 22px;
      height: 18px;
  }
  .menu-text {
      display: none;
  }
}