
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --heading: #fff;
  --subheading: #fff;
  --bg: #111111;
  --card-bg: #1a1a1a;
  --accent: #ffffff;
  --border: rgba(255,255,255,0.08);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--heading);
  min-height: 100vh;
  background-image: url("../images/landing-images/bg.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  backdrop-filter: brightness(0.2);
}


main{
    position: relative;
    z-index: 1;
    max-height: calc(100vh - 71px);
    height: 100%;
 
}

.card-body p{
  font-size: 14px;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(12px);
  z-index: 99;
}

nav .logo{
    width: 70px;
}

.logo img{
    width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
}

.logo svg {
  width: 22px;
  height: 22px;
  stroke: var(--heading);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--subheading);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--heading); }

/* HERO */
.hero {
  text-align: center;
  padding: 30px 24px 30px;
}

.hero h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 2px;
}

.hero p {
  color: var(--subheading);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* CARDS */
.cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px 48px 35px;
  flex-wrap: wrap;
  background: #030303;
}

.card {
    background: var(--card-bg);
    cursor: pointer;
    border-radius: 8px;
    width: 350px;
    height: 550px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, border-color 0.25s;
    position: relative;
    background-position: 0px -129px;
    background-size: cover;
    background-repeat: no-repeat;
}


.card-1{
  background-image: url('../images/landing-images/2.jpg');
}

.card-2{
  background-image: url('../images/landing-images/3.png');
}


.card-3{
  background-image: url('../images/landing-images/1.jpg');
}


.card:hover {
  transform: translateY(-4px);
 
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgb(0 0 0));
  border-radius: 8px
}

.card-image {
    position: relative;
    /* height: 400px; */
    overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder gradient backgrounds when no image */
.card-image.spirits {
  background: linear-gradient(135deg, #2d1b4e 0%, #1a3a2e 50%, #3d1f1f 100%);
}
.card-image.merchandise {
  background: linear-gradient(135deg, #2a2a1e 0%, #3a3020 50%, #2a1e10 100%);
}
.card-image.realestate {
  background: linear-gradient(135deg, #0d1a2e 0%, #1a2a3e 50%, #0d0d1a 100%);
}

.card-label {
  /* position: absolute; */
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  z-index: 9;
  top: 5px;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  margin: 0 auto;
  width: max-content;
}

.card-label .icon {
  font-size: 1.2rem;
}

.card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 9;
  text-align: left;
}

.card-body h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--heading);
    text-shadow: 0 0 black;
    margin-top: auto;
}

.card-body ul {
  list-style: none;
  display: none;
  flex-direction: column;
  /* width: max-content;
  margin: 0 auto; */
  gap: 8px;
}

.card-body:hover ul {
  display: flex;
}

.card-body ul li {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    gap: 3px 8px;
}

.card-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff9800b0;
  margin-top: 6px;
  flex-shrink: 0;
}

.btn-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ffffff;
    color: #111111;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-top: 20px;
}

.btn-portal:hover {
  background: #e0e0e0;
  transform: scale(1.02);
}

.card-contact {
    padding: 6px 24px 18px;
    font-size: 14px;
    color: var(--subheading);
    text-align: center;
    position: relative;
    z-index: 9;
}

.card-contact a {
  color: var(--heading);
  font-weight: 400;
  text-decoration: none;
}

.card-contact a:hover { text-decoration: underline; }

/* FOOTER NOTE */
.footer-note {
  text-align: center;
  padding: 0 24px 15px;
  font-family: 'Poppins', sans-serif;
  color: var(--subheading);
  font-size: 14px;
  font-weight: 300;
}

.footer-note::before {
  content: '•';
    margin: 0 8px;
    font-size: 2rem;
  color: #ff9800b0;
  vertical-align: middle;
}

/* Animated placeholder visuals */
.visual-spirits {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b1f5e 0%, #1e3a2a 60%, #3a1a1a 100%);
}

.visual-merchandise {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3a3018 0%, #2e2010 60%, #1e1808 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-realestate {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a1628 0%, #162440 50%, #0a0a18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG illustrations inside cards */
.card-illustration {
  opacity: 0.85;
}


@media screen and (max-width: 1200px) {
    .cards-wrapper {
        gap: 16px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p{
        font-size: 16px;
    }
    .card-body p{
      font-size: 16px;
    }
    .card-body h3 {
        font-size: 22px;
    }
    .card-body ul li {
        font-size: 16px;
    }
    .btn-portal{

        font-size: 16px;
        padding: 10px 18px;
    }

    .card-contact{
        font-size: 16px;
    }
        .footer-note {
            font-size: 16px;
            line-height: 24px;
        }
.card{
    width: 100%;
    max-width: 418px;
}

    
}
 
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    .hero p{
        font-size: 16px;
    }
    
    .cards-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 450px;
    }
    .card-body h3 {
        font-size: 20px;
    }
    .card-body ul li {
        font-size: 16px;
    }
    .btn-portal{
        font-size: 16px;
        padding: 10px 18px;
    }
    .card-contact{
        font-size: 16px;
    }
     .footer-note {
        font-size: 16px;
        line-height: 24px;
     }

     .card-image {
        /* height: 345px; */
     }

    main{
    
    overflow: auto;
    }
    body{
      height: 100vh;
      min-height: none;
    }
   
    
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p{
        font-size: 14px;
    }
    .card-body h3 {
        font-size: 18px;
    }
    .card-body ul li {
        font-size: 14px;
    }
    .btn-portal{
        font-size: 14px;
        padding: 8px 16px;
    }
    .card-contact{
        font-size: 14px;
    }

    .footer-note {
        font-size: 14px;
        line-height: 20px;
    }
    .card-image {
        /* height: 300px; */
     }
     .hero{
    padding: 48px 16px 32px;
     }
     .cards-wrapper {
        padding: 16px 24px 32px;
     }
}



/* AGE VERIFICATION POPUP */
.age-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  padding: 20px;

}

.age-popup-content {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.age-popup-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.age-popup-content p {
  font-size: 16px;
  font-weight: 300;
  color: #d5d5d5;
  line-height: 1.7;
  margin-bottom: 32px;
}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-btn {
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.age-yes {
  background: #ffffff;
  color: #111111;
}

.age-yes:hover {
  background: #e0e0e0;
  transform: scale(1.02);
}

.age-no {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

.age-no:hover {
  background: rgba(255,255,255,0.1);
}

@media screen and (max-width: 768px) {
  .age-popup-content {
    padding: 36px 28px;
    margin: 0 20px;
  }
  
  .age-popup-content h2 {
    font-size: 24px;
  }
  
  .age-popup-content p {
    font-size: 16px;
  }
  
  .age-btn {
    font-size: 16px;
    padding: 12px 20px;
  }
}

@media screen and (max-width: 480px) {
  .age-popup-content h2 {
    font-size: 20px;
  }
  
  .age-popup-content p {
    font-size: 14px;
  }
  
  .age-btn {
    font-size: 14px;
    padding: 10px 18px;
  }
}
