/* --- Global Styles --- */
:root {
    --primary-lime-green: #c4f135;
    --text-main: #333333;
    --text-muted: #656565;
    --text-faded: #d5d5d5;
    --bg-dark: #1b0559;
}

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

body { 
  font-family: "Montserrat", sans-serif; 
  font-size: 18px; 
  color: var(--text-main); 
  background-color: var(--white); 
}

.container { margin: 0 auto; padding: 0 10%; }
.section-wrapper { width: 100%; padding: 1px 0; }
.dark-bg { background-color: var(--bg-dark); }

/* --- Navbar Styling --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: absolute; 
    width: 100%;
    z-index: 10;
    background-color:#ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Soft, light shadow */
}

.navbar .logo img {
    height: 60px; 
}

.navbar ul {
    list-style: none;
    display: flex;
    /* gap: 40px; */
}

.navbar a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 30px;

}

.navbar a:hover {
    background-color: var(--primary-lime-green);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.5s ease;
}

/* --- Hero Section --- */
.hero-container {
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding:20px 10px; */
}

.hero-content {
    flex: .9;
    margin-left:10px;
    padding-top: 60px;
}

.hero-title {
    font-size: 85px; 
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    color:#fff;
}

.hero-title .highlight {
    color: var(--primary-lime-green);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-faded);
    line-height: 1.6;
    max-width: 450px;
}

/* --- Social Icons --- */
.social-links {
    display: flex;
    gap: 25px;
}

.social-icon img {
    height: 24px;
    filter: invert(1); /* Turns dark icons white */
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: translateY(-5px);
}

/* --- Layered Images Layout --- */
.hero-images-layout {
    flex: 1.1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content:space-around;
    align-items: center;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.primary-photo {
    width: 315px;
    height: 500px;
    z-index: 2;
    transform: translateY(60px);
}

.secondary-photo {
    width: 315px;
    height: 500px;
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* --- Projects Section --- */
.projects-section {
    background-color: #ffffff;
    padding: 50px 60px 10px 60px;
}

.section-label {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color:var(--bg-dark); 
    margin-bottom: 60px;
    text-align: center;
}

/* --- Project Card Layout --- */
.project-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
    transition: opacity 0.4s ease;
}

.project-card:hover {
    opacity: 1;
}

.project-card.reverse {
    flex-direction: row-reverse; 
}

/* --- Image Styling --- */
.project-image {
    flex: 1.2;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.05); /* Subtle zoom effect */
}

/* --- Info Styling --- */
.project-info {
    flex: 1;
}

.project-title {
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    color:var(--bg-dark);
    letter-spacing: .05em;
}

.project-sub-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 900;
  color:var(--bg-dark);
}

.project-description {
    font-size: 1.1rem;
    color:var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* --- Action Button --- */
.view-project-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--text-muted);
    background-color: var(--primary-lime-green);
    color:var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.view-project-btn:hover {
    background-color: #fff;
    color:var(--bg-dark);
}

.footer {
  display:flex;
  height:80px;
  align-items: center;
  justify-content:center;
  
}
.footer a {
  padding:10px;
  color:#fff;
}
.footer a:hover {
  padding:10px;
  color:var(--primary-lime-green);
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .project-card, .project-card.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .project-title { font-size: 32px; }
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 60px; }
    .hero-container { flex-direction: column; text-align: center; height: auto; padding-top: 150px; }
    .hero-content { margin-bottom: 80px; }
    .hero-images-layout { justify-content: center; width: 100%; }
    .social-links { justify-content: center; }
}


/* --- About Page Specifics --- */

.about-container {
    display: flex;
    gap: 80px;
    padding-top: 150px; /* Space for fixed/absolute navbar */
    padding-bottom: 100px;
    align-items: flex-start;
}

.about-text {
    flex: 1.8;
}

.about-greeting {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color:var(--bg-dark);
}

.about-headline {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 40px;
    color:var(--bg-dark);

}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-text strong {
    font-weight: 700;
}

.about-footer-note {
    font-weight: 600;
    margin-top: 40px;
}

/* --- About Photo Column --- */
.about-photos {
    background-color: #140152; /* */
    padding: 30px;
    border-radius: 20px;
    flex: .8;
    display: flex;
    flex-direction: column;
    align-items:center;
    gap: 30px;
}

.photo-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 4px; }

.photo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column-reverse; /* Photos move to top or bottom on mobile */
        gap: 40px;
        padding-top: 100px;
    }
    
    .about-photos {
        flex-direction: row; /* Photos sit side-by-side on tablet/mobile */
        gap: 15px;
    }
}