body {
    background: #FFFAEC;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: #FFFFFF;
    border-bottom: 1px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* smaller padding for better fit */
    box-sizing: border-box;
    z-index: 1000;
}

.navbar .blog-header {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.nav-items {
    display: flex;
    gap: 30px;
    flex-wrap: wrap; /* allows items to wrap on smaller screens */
}

.nav-items a {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    transition: color 0.2s ease;
}

.nav-items a:hover {
    color: #5A71CA; /* optional hover color */
}

/* Highlight the active page */
/* .nav-items a.active {
    font-weight: 700;
    color: #5A71CA;
} */

/* Responsive: stack links vertically on smaller screens */
@media (max-width: 600px) {
    .nav-items {
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: 80px;
        right: 20px;
        background: #fff;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
        display: none; /* initially hidden, optional for burger menu later */
    }
}


/* MAIN CONTENT */
.container {
    margin-top: 100px; /* Make space for fixed navbar */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* HERO SECTION */
.hero h1 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: #000000;
}

.hero-subtitle {
    font-size: 32px; /* Bigger than p (24px) but smaller than h1 (50px) */
    font-weight: 600;
    text-align: center;
    color: #000000; /* Slightly softer than black */
    margin-top: 10px; /* Adjust spacing */
}

.hero p {
    font-size: 20px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.75);
    max-width: 800px;
    margin: 0 auto;
}

.banner-img {
    width: 90%;  /* Adjust this percentage to make it smaller or bigger */
    max-width: 900px;  /* Ensures it doesn’t get too large on bigger screens */
    height: auto;  /* Keeps aspect ratio */
    display: block;  /* Prevents extra spacing issues */
    margin: 50px auto 20px;  /* Moves it down by 50px from the top and centers it */
}
/* CTA BUTTONS */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.main-content {
    min-height: 120vh; /* Pushes content below the fold */
    padding-bottom: 100px; /* Adds space at the bottom */
}


/* Primary and Secondary Buttons (From Figma) */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px;
    gap: 8px;

    position: relative;
    max-width: 300px;
    width: 100%;
    height: 63px;

    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Primary Button */
.btn-primary {
    background: #5A71CA; /* Figma blue */
    border: 1px solid #2C2C2C;
    color: white;
}

/* Secondary Button */
.btn-secondary {
    background: #EEBE57; /* Figma yellow */
    border: 1px solid #2C2C2C;
    color: black;
}

/* Tertiary Button */
.btn-tertiary {
    background: #53c7e7; /* Figma light blue */
    border: 1px solid #2C2C2C;
    color: black;
}

/* FEATURED SECTION */
.featured {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    width: 300px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Section Divider */
.section-divider {
    width: 80%;
    margin: 40px auto;
    border: 1px solid #ddd;
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 50px 10%;
    text-align: left;
}

.about-img {
    width: 180px; /* Adjust size */
    height: 180px;
    border-radius: 50%; /* Circular image */
    object-fit: cover;
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.about-text p {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}
.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #f4c542; /* Adjust color */
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
}

/*Other Styles */
.regular-img {
    width: 400px;      /* adjust width as needed */
    max-width: 90%;    /* ensures it doesn’t overflow on smaller screens */
    height: auto;      /* keeps aspect ratio */
    display: block;    /* removes inline spacing issues */
    margin: 20px auto; /* centers it horizontally with some vertical spacing */
    border-radius: 8px; /* optional: gives slightly rounded corners */
}


/* Container for all projects */
.projects-container {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding-bottom: 100px;
}

/* Each project card */
.project-card {
    width: 400px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Project title */
.project-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

/* Project description */
.project-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

/* Reuse buttons */
.project-card a.btn-primary,
.project-card a.btn-secondary {
    margin-top: 10px;
}

/* Regular images */
.project-img {
    width: 350px;
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 15px auto;
}

/* Videos */
.project-video {
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
}

/* Optional: Featured section layout for multiple cards */
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Art Page */
.art-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.art-card {
    width: 300px; /* Fixed card width, adjust if needed */
    text-align: center;
}

.art-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.art-card img:hover {
    transform: scale(1.05); /* Subtle zoom on hover */
}

.art-card h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
}

.art-card p {
    font-size: 16px;
    color: #333;
}

/* PRESS PAGE STYLES */
.press-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px; /* adds spacing below gallery */
}

.press-item {
    width: 300px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.press-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.press-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.press-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.press-item a {
    font-weight: bold;
    color: #000;
    text-decoration: underline;
}

/* Hover effect for press cards */
.press-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.15);
}

/* CTA section styling for consistency */
.press-gallery + section {
    text-align: center;
    padding: 40px 20px;
}

.press-gallery + section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.press-gallery + section p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.press-gallery + section .btn-primary {
    margin-top: 20px;
    padding: 12px 25px;
}

.cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
}

.cta-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 20px; /* centers paragraph and adds spacing below */
}

.cta-section a.btn-primary {
  display: inline-block;
  margin-top: 20px; /* spacing from paragraph */
  padding: 15px 30px; /* vertical and horizontal padding */
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2; /* centers text vertically */
  text-decoration: none;
  border-radius: 8px;
  background-color: #5A71CA; /* or your existing primary color */
  color: white;
  text-align: center;
}
