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

:root {
  --primary-color: #0d4d4d; 
  --secondary-color: #1a8a8a; 
  --text-dark: #333333;     
  --text-light: #555555;     
  --background-light: #f7f9f9; 
  --background-hero: #eef3f3; 
  --white: #ffffff;
}

body {
    font-family: 'Lato','Helvetica Neue', sans-serif;
    line-height: 1.6;
     color: var(--text-dark); 
    background-color: #f4f4f4;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffc107;
}

.hero-section {
     background-color: var(--background-hero); 
    padding: 6rem 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-section {
  text-align: center;
  padding: 6rem 1rem;
}

.hero-overlay {
    color: #0d4d4d;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-text {
    color: #2c3e50;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hero-title {
    color: var(--primary-color);
     font-family: 'Lora', 'Georgia', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: 'Lato', 'Helvetica Neue', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1.15rem); 
  font-weight: 400; 
  line-height: 1.6; 
   color: var(--text-dark);
  max-width: 600px; 
  margin: 1rem auto 2.5rem; 
}

.icon-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.icon-links a {
  color: black;
  font-size: 2rem;
  transition: transform 0.3s, color 0.3s;
}

.icon-links a:hover {
  transform: scale(1.2);
  color: #ffc107;
}


.more-btn {
    background: transparent;
    color: #0d4d4d;
    border: 2px solid #0d4d4d;
    padding: 0.5rem 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background: #0d4d4d;
    color: white;
}

/* Contact Icons */
.contact-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.8rem;
    margin-top: 1rem;
}

.contact-icons a {
    color: #0d4d4d;
    transition: color 0.3s;
}

.contact-icons a:hover {
    color: #ff0080;
}



/* About Section */
.about-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.about-section img {
  width: 200px; /* Adjust size as needed */
  height: 200px; /* Ensure it's a square or circle */
  border-radius: 50%; /* Makes the image circular */
  margin-bottom: 1.5rem; /* Adds space below the image */
  border: 3px solid #0d4d4d; /* Optional: adds a border */
}

.about-section {
  display: flex;
  flex-direction: column; /* Stacks image and text vertically */
  align-items: center; /* Centers items horizontally */
  text-align: center; /* Centers the text */
  padding: 4rem 2rem;
}

.about-text h2,
.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0d4d4d;
    clear: left;
}

.about-text p,
.about-section p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

/* Footer */
footer {
    background-color: #0d4d4d;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer a {
    color: #ffc107;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

.section-header {
  text-align: center;
  margin: 3rem 0 2rem;
}

.section-tag {
  color: #e6007e; /* hot pink */
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}

/* Container for all projects */
.project-container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Individual Project Entry */
.project-entry {
  margin-bottom: 2.5rem;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d4d4d;
}

.project-meta {
  font-style: italic;
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.2rem;
}

.project-description {
  margin-top: 0.8rem;
  color: #333;
  line-height: 1.6;
}

.project-description a.view-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #0d4d4d;
  font-weight: bold;
  text-decoration: underline;
}

.project-description a.view-link:hover {
  color: #e6007e;
}


/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1rem;
    }

    .about-section img {
        float: none;
        display: block;
        margin: 0 auto 1.5rem auto;
    }

    .about-text h2,
    .about-section h2 {
        clear: none;
        text-align: center;
    }

    .hero-overlay {
        padding: 4rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .contact-icons {
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 1.5rem;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .nav-container {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-bottom: 1rem;
    }

}

