@charset "UTF-8";
/* CSS Document */

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

body { 
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

/* TOP BAR */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(250,250,250,0.95);
  border-bottom: 1px solid #e5e5e5;
  z-index: 1000;
}

.top-bar {
  max-width: 1200px;
  margin: 0 0 0 0.5rem;
  padding: 0 0.8rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
}

/* MENU */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav li {
  position: relative;
}

nav a {
  text-decoration: none;
  color: #006666;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: bold;
}

nav a:hover {
  opacity: 0.6;
}

/* DROPDOWN */
.submenu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 0.5rem 0;
  display: none;
  min-width: 160px;
}

.submenu li {
  padding: 0.3rem 1rem;
}

.submenu a {
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0.04em;
}

nav li:hover .submenu {
  display: block;
}

/* SMALL INTRO AREA */
.intro {
  margin-top: 90px;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

.intro h1 {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.intro p {
  max-width: 500px;
  color: #444;
  font-size: 0.95rem;
}

/* THUMBNAIL COLLECTION GRID */
.collections {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.collection-item {
  aspect-ratio: 1 / 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #666;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: 1px solid #7C7C7C;
  font-family: Verdana, sans-serif;
}

.collection-item p {
  padding: 0 2rem;
  text-align: center;
  font-weight: 800;
}

.collection-item:hover {
  opacity: 0.7;
}

/* NEWS SECTION */
.news {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  gap: 1.5rem;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1.5rem;
}

.news-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.news-thumbL img {
border: 1px solid #cccccc;
float : left;
background-color: white;
padding : 3px;
margin-right: 6px;}


.news-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.news-text p {
  font-size: 0.85rem;
  color: #444;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.75rem;
  color: #777;
  border-top: 1px solid #e5e5e5;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {

  nav ul {
    gap: 1rem;
  }

  .news-item {
    grid-template-columns: 1fr;
  }
}

 
 

