
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&family=Playfair+Display:wght@500&display=swap');

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

html,body {
    margin: 0;
      font-family: 'Montserrat';
    width: 100%;
    overflow-x: hidden;
}


/* top-section */


.color{
  color:#c83063;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    

    height: 57px;
    padding: 0 27px;

    background-color: #1F2F5D;
    
}


.top-bar-left-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar img {
  
    padding-right: 11.25px;
    border-right: 1.13px solid #FFFFFF;
}

.top-bar-text {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration:none;
   
}

.uder-line{
  text-decoration:none;
  color:#ffffff;
  font-weight:500;
}

.top-bar-right-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration: none;
}

.top-bar-right-dot {
    width: 4.5px;
    height: 4.5px;
    background-color: #FFFFFF;
    border-radius: 50%;
}


.navbar-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    width: 100%;
    
   
    
    z-index: 1000;
    padding: 18px 27px;
    

    background-color: #FFFFFF;
}
.navbar-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.top-bar,
.navbar-section {
    width: 100%;
    max-width: 100%;
}


.navbar-left,
.navbar-right {
    display: flex;
    gap: 20px;
}

.navbar-left-right-links {
   font-size:15.75px;
    letter-spacing: 0.11em;
    color: #1F2F5D;
    text-decoration: none;
}

.navbar-logo img {
    width: 78px;
    height: auto;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #1F2F5D;
}


.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 24px;
    background-color: #FFFFFF;
    border-top: 1px solid #ddd;

     position: fixed;         
    top: 62px;        
                
    left: 0;                   
    width: 100%;               
    z-index: 999;              
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 14px;
   
    color: #1F2F5D;
    text-decoration: none;
    font-family: 'Montserrat';
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 16px 0;
}

.mobile-menu.active {
    display: flex;
}


@media (max-width: 768px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 20px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 24px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    
    .hamburger {
        display: flex;
    }
}
 

 

/* Sustainability Detailed Section Styling  */



.luxury-article-hero {
  width: 100%;
  height: 661px;
  margin: 0 auto;
  position: relative;
    background-image: url('assets/images/sustainability-events-detailed-page-hero-image.png'); 
  background-size: cover;
  background-position: center;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.1) 0%, 
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: flex-end; 
  justify-content: center;
  padding: 80px 100px;
  box-sizing: border-box;
}

.content-wrapper {
  max-width: 850px;
  color: #FFFFFF;
  animation: fadeInUp 1s ease-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.meta-data {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  opacity: 0.9;
  display: flex;
  gap: 12px;
  align-items: center;
}

.meta-data span{
  color: #FFFFFFE5;

}

.separator {
  font-size: 18px;
}

.hero-title {
  font-family: "Playfair Display";
font-weight: 500;
font-style: Medium;
font-size: 72px;
text-align: center;
line-height: 79.2px;
letter-spacing: 0px;
color: #FFFFFF;
}

.hero-description {
  font-family: "Montserrat";
font-weight: 400;
font-style: "Regular";
font-size: 20px;
line-height: 32.5px;
letter-spacing: 0px;
color: #FFFFFFF2;
margin-top: 10px;
}


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


/* Tablet (Tab) */
@media (max-width: 1024px) {
  .overlay {
    padding: 60px 50px;
  }
  .hero-title {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .luxury-article-hero {
    height: 500px; 
  }
  .overlay {
    padding: 40px 24px;
    align-items: center; 
    text-align: center;
  }
  .meta-data {
    justify-content: center;
    font-size: 12px;
  }
  .hero-title {
    font-size: 38px;
    line-height: 1.2;
  }
  .hero-description {
    font-size: 16px;
    margin: 0 auto;
  }
}

/* Content Section Styling */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,500;1,500&display=swap');

.article-page-container {
  width: 100%;
  max-width: 1280px;
  min-height: 1504.84px;
  margin: 120px auto 0;
  padding: 0 80px;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  color: #333333;
  box-sizing: border-box;
}

.article-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}

.author-card {
  background: #F8F9FA;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.author-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 16px;
  font-weight: 500;
  color: #1A2B4C;
  margin: 0;
}

.author-title {
  font-size: 13px;
  color: #777;
  margin: 0;
}

.author-bio {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.share-label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 15px;
}

.share-btn {
  width: 100%;
  padding: 10px;
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}

.share-btn img { width: 16px; opacity: 0.7; }
.share-btn:hover { background: #f0f0f0; }


.text-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.article-heading {
  font-family: 'Playfair Display', serif; 
  font-size: 32px;
  margin: 40px 0 20px;
  color: #1A2B4C;
}

.article-quote {
  border-left: 4px solid #D8315B;
  background: #F0F4F8;
  padding: 40px;
  margin: 40px 0;
  border-radius: 16px 16px 16px 16px;
}

.article-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  margin: 0;
  color: #1A2B4C;
}

.article-quote:hover{
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 40px 0;
}

.tag-label { font-size: 14px; color: #777; }
.tag {
  background: #F0F4F8;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
}
.tag:hover {background-color: #919191; color: #303030;}

.newsletter-card {
  background: #1A2B4C;
  padding: 60px;
  border-radius: 24px;
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.newsletter-subtitle {
  font-size: 16px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 20px;
}

.email-input {
  flex: 1;
  padding: 15px 20px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
}

.submit-btn {
  background: #D8315B;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s;
}

.submit-btn:hover { transform: scale(1.02); }
.newsletter-footer { font-size: 12px; opacity: 0.6; }

/* Bottom Grid */
.bottom-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.explore-card {
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.explore-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 10px; }
.explore-card p { font-size: 15px; margin-bottom: 20px; opacity: 0.9; }
.card-link { font-weight: 500; text-decoration: none; color: inherit; }

.pink-card { background: #D8315B; color: white; }
.white-card { border: 2px solid #1A2B4C; color: #1A2B4C; }

.explore-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .article-page-container { padding: 0 40px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { order: 2; display: flex; gap: 20px; flex-wrap: wrap; }
  .author-card { flex: 1; min-width: 300px; }
}

@media (max-width: 600px) {
  .article-page-container { padding: 0 20px; }
  .newsletter-form { flex-direction: column; }
  .bottom-links-grid { grid-template-columns: 1fr; }
  .newsletter-title { font-size: 32px; }
  .article-quote p { font-size: 22px; }
}