body {
    font-family: 'Inter', sans-serif;
    background-color: #185652;
    color: #fff;
    /* overflow-x: hidden; */
    overflow: hidden;
}

.luxury-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.fade-in {
    animation: fadeIn 1.5s ease-out;
}

.fade-in-delay-1 {
    animation: fadeIn 1.5s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1.5s ease-out 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1.5s ease-out 0.9s both;
}

.fade-in-delay-4 {
    animation: fadeIn 1.5s ease-out 1.2s both;
}

.fade-in-delay-5 {
    animation: fadeIn 1.5s ease-out 1.5s both;
}

@keyframes fadeIn {
    from { 
    opacity: 0; 
    transform: translateY(40px); 
    }
    to { 
    opacity: 1; 
    transform: translateY(0); 
    }
}

.cta-button {
    background-color: #f5f5dc;
    color: #1a4d4d;
    padding: 14px 28px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    background-color: #e8e8d0;
}

.image-logo {
    width: 30%; 
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .luxury-title {
    font-size: 3.5rem !important;
    line-height: 1.1;
    }
    
    .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .luxury-title {
    font-size: 2.8rem !important;
    }
    
    body {
    padding: 1rem;
    }

    .image-logo {
    width: 60%; 
    margin: 0 auto;
    }
}

.launch-date {
  font-weight: bold;
  font-size: 1.5rem;
  color: #ffeb3b; /* màu vàng nổi bật */
  background-color: #2c3e50; /* màu nền tương phản */
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 20px;
}

p a:hover {
    color: #d9b357;
}