@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap");

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

body,
html {
  height: 100%;
  font-family: "brandon", sans-serif !important;
  /* background-color: #FFFAF5; */
}

h1, h2, h3, h4, h5, h6,
.luxury-heading,
.services-title,
.service-title {
  font-family: 'Crimson Text', serif !important;
}


/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

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

/* LUXURY SECTION */
.luxury-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #fffaf5;
}

.luxury-content {
  max-width: 800px;
}

.luxury-heading {
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.luxury-subheading {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 24px;
  color: #555;
  font-family: 'Poppins', sans-serif;
}

.luxury-button {
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.luxury-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: #000;
  transition: width 0.4s ease;
}

.luxury-button:hover::after {
  width: 100%;
  height: 2px;
  color: #00664D;
}

.luxury-button:hover{
    color: #00664D; 
}

/* COLLECTION SECTION */
.collection-section {
  display: flex;
  gap: 20px;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.collection-item {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
}

.collection-link {
  display: block;
  width: 100%;
  height: 100%;
}

.collection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.collection-item:hover .collection-image {
  transform: scale(1.05);
}

.collection-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

/* SPLIT IMAGE + VIDEO SECTION */
.split-section {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.split-left,
.split-right {
  flex: 1;
  height: 100%;
}

.split-left img,
.split-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* GUINNESS SECTION */
.guiness-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 40px;
}

/* SERVICE SECTION */
.services-section {
  padding: 60px 20px;
  text-align: center;
}

.services-title {
  font-size: 1.8rem;
  margin-bottom: 50px;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-item {
  padding: 10px 20px;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.service-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.service-link {
  font-size: 0.95rem;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #111;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #6a1b9a;
  border-color: #6a1b9a;
}

/* ====== MEDIA QUERIES ====== */
@media (max-width: 768px) {
  .luxury-heading {
    font-size: 1.3rem;
  }

  .luxury-subheading {
    font-size: 1rem;
  }

  .collection-section {
    flex-direction: column;
    gap: 10px;
  }

  .collection-label {
    font-size: 0.9rem;
    left: 15px;
    bottom: 15px;
  }

  .split-section {
    flex-direction: column;
    height: 100vh;
    /* gap: 30px; */
  }

  .guiness-section {
    height: 100%;
  }

  .split-left,
  .split-right {
    height: 50vh;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .luxury-heading {
    font-size: 1.1rem;
  }

  .luxury-subheading {
    font-size: 0.95rem;
  }
}
