/*==================================================
GOOGLE FONT RESET
==================================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.7;
}
img {
  width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
.container {
  width: min(1200px, 92%);
  margin: auto;
}
/*==================================================
COLORS
==================================================*/ :root {
  --primary: #8b1e1e;
  --gold: #ad0100;
  --dark: #171717;
  --light: #fafafa;
  --gray: #666;
  --shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

/*==================================================
CATEGORY
==================================================*/
.category-section {
  padding: 30px 0;
  background: #fff;

}
.category-header {
  text-align: center;
  margin-bottom: 55px;
}
.category-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  margin-bottom: 15px;
}
.category-header p {
  color: #666;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}
.category-card {
  background: #ebebeb;
  border: 1px solid #ececec;
  border-radius: 16px;
  text-align: center;
  padding: 35px 20px;
  transition: .35s;
  color: #222;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.category-card i {
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 18px;
}
.category-card h4 {
  font-size: 18px;
  font-weight: 600;
}
/*==================================================
SECTION
==================================================*/
.collection-section {
  padding: 30px 0;
}
.bg-light {
  background: #fafafa;
}
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}
.section-heading span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}
.section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  margin: 15px 0;
}
.section-heading p {
  max-width: 700px;
  margin: auto;
  color: #666;
}
/*==================================================
CARDS
==================================================*/
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.sketch-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .35s;
}
.sketch-card:hover {
  transform: translateY(-10px);
}
.card-image {
  overflow: hidden;
}
.card-image img {
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: .4s;
}
.sketch-card:hover img {
  transform: scale(1.08);
}
.card-content {
  padding: 28px;
}
.card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 10px;
}
.card-content p {
  color: #666;
  margin-bottom: 8px;
}
.card-content small {
  display: block;
  color: #999;
  margin-bottom: 20px;
}
.card-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
	font-size: 14px;
}
/*==================================================
FEATURE LAYOUT
==================================================*/
.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-image img {
  width: 100%;
  display: block;
}
.feature-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  margin-bottom: 20px;
  color: #222;
}
.feature-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}
.feature-list {
  margin: 30px 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #444;
  font-weight: 500;
}
.feature-list i {
  color: var(--gold);
}
.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 2px solid var(--gold);
  border-radius: 40px;
  color: #222;
  font-weight: 600;
  transition: .3s;
}
.outline-btn:hover {
  background: var(--gold);
  color: #fff;
}
/*==================================================
SIMPLE CARDS
==================================================*/
.three-column {
  grid-template-columns: repeat(3, 1fr);
}
.simple-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: .3s;
}
.simple-card:hover {
  transform: translateY(-8px);
}
.simple-card i {
  font-size: 50px;
  color: var(--gold);
  margin-bottom: 20px;
}
.simple-card h4 {
  font-size: 28px;
  margin-bottom: 15px;
  font-family: 'Cormorant Garamond', serif;
}
.simple-card p {
  color: #666;
  margin-bottom: 15px;
}
.simple-card span {
  color: var(--gold);
  font-weight: 600;
}
/*==================================================
POSTER ITEMS
==================================================*/
.poster-list {
  margin-top: 30px;
}
.poster-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.poster-item i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.poster-item h4 {
  margin-bottom: 6px;
}
.poster-item p {
  margin: 0;
}
/*==================================================
PHOTO SECTION
==================================================*/
.photo-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s;
}
.photo-card:hover {
  transform: translateY(-8px);
}
.photo-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.photo-card h4 {
  padding: 20px 20px 5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
}
.photo-card p {
  padding: 0 20px 25px;
  color: #777;
}
/*==================================================
NEWS
==================================================*/
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  color: #222;
  box-shadow: var(--shadow);
  transition: .3s;
}
.news-card:hover {
  transform: translateY(-8px);
}
.news-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-family: 'Cormorant Garamond', serif;
}
.news-card p {
  color: var(--primary);
  font-weight: 600;
}
/*==================================================
FOOTER
==================================================*/
footer {
  background: #111;
  color: #ddd;
  padding: 70px 0;
}
.footer-content {
  text-align: center;
}
.footer-content h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
}
.footer-content p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #aaa;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
}
.footer-links a {
  color: #ddd;
  transition: .3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 25px;
  color: #888;
  font-size: 14px;
}
/*==================================================
ANIMATIONS
==================================================*/
.sketch-card, .category-card, .photo-card, .news-card, .simple-card {
  transition: .35s ease;
}
.card-image img, .feature-image img {
  transition: .4s;
}
.card-image:hover img, .feature-image:hover img {
  transform: scale(1.08);
}
/*==================================================
TABLET
==================================================*/
@media (max-width:992px) {
  .hero-grid, .feature-layout {
    grid-template-columns: 1fr;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 35px;
  }
  .small-image {
    position: relative;
    left: 0;
    bottom: 0;
    width: 220px;
    margin: 25px auto 0;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .collection-grid, .news-grid, .three-column {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-content {
    text-align: center;
  }
  .feature-list li {
    justify-content: center;
  }
}
/*==================================================
MOBILE
==================================================*/
@media (max-width:768px) {
  .hero {
    padding: 70px 0;
  }
  .hero-content h1 {
    font-size: 52px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .feature-content h3 {
    font-size: 38px;
  }
  .category-grid, .collection-grid, .news-grid, .three-column {
    grid-template-columns: 1fr;
  }
  .category-card {
    padding: 25px;
  }
  .poster-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
/*==================================================
SMALL MOBILE
==================================================*/
@media (max-width:480px) {
  .container {
    width: 94%;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .feature-content h3 {
    font-size: 30px;
  }
  .hero-btn, .outline-btn {
    width: 100%;
    justify-content: center;
  }
  .card-content, .news-card, .simple-card {
    padding: 22px;
  }
  .photo-card h4 {
    font-size: 24px;
  }
  .footer-content h2 {
    font-size: 30px;
  }
}




/*==============================
Fade Animation
==============================*/

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}



/*==============================
Back To Top
==============================*/

.backToTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#ab0102;
    color:#fff;
    cursor:pointer;
    font-size:18px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.backToTop.active{
    opacity:1;
    visibility:visible;
}

.backToTop:hover{
    transform:translateY(-4px);
    background:#8b1e1e;
}

.button-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8b1e1e;
  font-weight: 600;
  font-size: 14px;
	padding: 0px 20px 30px 20px;
}