body{
    background-color: rgb(193, 153, 93);
    
}
#h1{
    background-color: #33e20c;
    margin: 25px;
    padding: 25%;
}
/* Navigation bar */
nav {
  display: flex;                /* horizontal layout */
  align-items: center;          /* vertically center logo and links */
  justify-content: space-between;
  padding: 5px 20px;            /* slim padding */
  background-color: #000;       /* nav background */
  height: 60px;                 /* fixes nav height */
  box-sizing: border-box;
}

/* Logo */
.logo img {
  width: 200px;                 /* fixed width for desktop */
  height: 30%;
  max-height: 155px;             /* prevents huge vertical size */
  display: block;
}
.logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px #9a582a) brightness(1.3);
  transition: all 0.3s ease-in-out;
}


/* Responsive logo */
@media (max-width: 1024px) {
  .logo img {
    width: 150px;
    max-height: 60px;
  }
}

/* Navigation links */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 10px;
}

.nav-links a {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 15px;
  border: 1px solid #222;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: #bc703a;
}





/* Banner styling */
.banner-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.banner-text h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.banner-text p {
  font-size: 16px;
}
/* ============================= */
/* Main Content                  */
/* ============================= */

/* Introduction Section */
.intro-section {
    padding: 60px 20px;
    text-align: center;
}

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #bc703a;
    transform: scale(1.05);
}

/* Skills / Interests Section */
.skills-section {
    padding: 60px 20px;
    text-align: center;
}

.skills-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.skills-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    color: #000;
}

.skill i {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 60px 20px;
    text-align: center;
}

.projects-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.project {
    width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
}

.project img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project h3 {
    margin: 15px 0 10px;
}

.project p {
    padding: 0 15px 15px;
}

/* Contact / Call-to-Action Section */
.contact-section {
    padding: 60px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
}

/* ============================= */
/* Responsive Main Sections      */
/* ============================= */
@media (max-width: 768px) {
    .intro-section h2,
    .skills-section h2,
    .portfolio-section h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .intro-section p,
    .skills-section p,
    .portfolio-section p,
    .contact-section p {
        font-size: 16px;
    }

    .projects-container,
    .skills-container {
        flex-direction: column;
        align-items: center;
    }
}


/* ===== About Page Styles ===== */
.about-section {
    padding: 60px 20px;
    text-align: center;
}

.about-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.about-photo img {
    width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-bio {
    max-width: 600px;
    text-align: left;
}

.about-bio p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Skills Section */
.skills-section {
    padding: 60px 20px;
    text-align: center;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff3e0;
    padding: 20px;
    border-radius: 12px;
    width: 140px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.skill i {
    font-size: 28px;
    color: #bc703a;
    margin-bottom: 10px;
}

.skill span {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.skill:hover {
    transform: translateY(-5px);
}

/* Education Section */
.education-section {
    padding: 60px 20px;
    text-align: center;
}

.education-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.edu-item {
    background-color: #fff3e0;
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.edu-item h3 {
    margin-bottom: 10px;
    color: #bc703a;
}

.edu-item p {
    font-size: 14px;
    line-height: 1.5;
}

/* Fun Facts Section */
.fun-facts-section {
    padding: 60px 20px;
    text-align: center;
}

.fun-facts-section ul {
    list-style: none;
    padding: 0;
    margin: 20px auto 0;
    max-width: 600px;
}

.fun-facts-section li {
    background-color: #fff3e0;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}


/* ===== Resume Page Styles ===== */
.resume-header {
    text-align: center;
    padding: 60px 20px;
}

.resume-header .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #bc703a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.resume-header .btn:hover {
    background-color: #9a582a;
}

.education-section, .experience-section, .skills-section {
    padding: 60px 20px;
    text-align: center;
}

.education-container, .experience-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.edu-item, .exp-item {
    background-color: #fff3e0;
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.edu-item h3, .exp-item h3 {
    color: #bc703a;
    margin-bottom: 10px;
}

.edu-item p, .exp-item p {
    font-size: 14px;
    line-height: 1.5;
}

/* Skills Section */
.skills-section .skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.skills-section .skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff3e0;
    padding: 20px;
    border-radius: 12px;
    width: 140px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.skills-section .skill i {
    font-size: 28px;
    color: #bc703a;
    margin-bottom: 10px;
}

.skills-section .skill span {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.skills-section .skill:hover {
    transform: translateY(-5px);
}

/* ===== Portfolio Page Styles ===== */
.portfolio-header {
    text-align: center;
    padding: 60px 20px;
}

.projects-section {
    padding: 60px 20px;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.project-card {
    background-color: #fff3e0;
    width: 250px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.project-card img {
    width: 100%;
    border-radius: 12px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.project-card h3 {
    color: #bc703a;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 14px;
    line-height: 1.4;
}

.project-card:hover {
    transform: translateY(-5px);
}


/* ===== Contact Page Styles ===== */
.contact-page {
  padding: 60px 20px;
  background-color: rgb(193, 153, 93); /* matches your other pages */
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2); /* slight transparent box look */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info {
  flex: 1 1 300px;
  color: #fff;
}

.contact-info h2 {
  color: #fff;
  margin-bottom: 10px;
}

.contact-info p {
  color: #f7f7f7;
  font-size: 16px;
  line-height: 1.5;
}

.contact-details p {
  margin-top: 10px;
  font-size: 15px;
  color: #fff;
}

.contact-details i {
  color: #00bfa6;
  margin-right: 8px;
}

/* Contact form */
.contact-form {
  flex: 1 1 350px;
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-form h3 {
  color: #bc703a;
  margin-bottom: 15px;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #bc703a;
}

.contact-form .btn {
  margin-top: 15px;
  background-color: #bc703a;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #a55f2e;
}

/* Responsive layout */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}












































/* =====  Footer Design ===== */
.modern-footer {
    background: #0f1010;
    color: #333;
    font-family: "Poppins", sans-serif;
    padding: 60px 20px 20px;
    border-top: 3px solid #07981a;
}

.footer-top {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo-area {
    flex: 1 1 250px;
}

.footer-logo {
    width: 130px;
    margin-bottom: 15px;
}

.footer-logo-area p {
    color: #f5f1f1;
    font-size: 0.95rem;
}

.footer-nav {
    flex: 1 1 200px;
}

.footer-nav h4,
.footer-social h4 {
    color: #00bfa6;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin: 8px 0;
}

.footer-nav ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.footer-nav ul li a:hover {
    color: #00bfa6;
    transform: translateX(5px);
}

.footer-social {
    flex: 1 1 200px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
  font-size: 24px;
  margin: 0 10px;
  color: #fff; /* change to your footer color */
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00aced; /* highlight color on hover */
}


.social-icons a:hover {
    background: #333;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #0f0f0f;
    padding-top: 15px;
    margin-top: 40px;
    color: #fef9f9;
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}
