body {
    font-family: sans-serif;
    text-align: center;
    background-color: #1e1e1e;
    color: #222;
    margin: 0;
    height: 100%;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #0054a6;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-weight: bold;
    font-size: 1.75rem;
    padding-left: 1rem;
    color: white;
    text-decoration: none;
    font-family: "Lato", sans-serif;
}

.nav {
    display: flex;
    gap: 1.25rem;
    padding-right: 1rem;
}

.nav a {
    font-family: "Lato", sans-serif;
    font-size: 1.1rem;
    margin-left: 1rem;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    padding: .5rem 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav a:hover {
    background-color: white;
    color: #0054a6;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: #fff;
    color: #222;
    border-top: 1px solid #e0e0e0;
  }

.site-footer a {
    color: #0054a6;
    text-decoration: none;
    font-size: 1.5rem;
}

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

.wrapper {
    padding-top: 64px;
    min-height: calc(100vh - 60px);
}

.landing {
    height: 87vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 2rem;
    background-color: white;
}

.profile-pic img{
    width: 180px;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
}

.landing-content {
    display: flex;
    align-items: center;
    max-width: 900px;
    width: 100%;
    gap: 2rem;
    flex-wrap: wrap;
}

.landing-text {
    flex: 1;
    color: #222;
}

.landing-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.landing-button a{
    display: inline-block;
    background-color: #0054a6;
    color: #fff;
    border-radius: 6px;
    padding: .75rem 1.25rem;
    text-decoration: none;
    font-weight: bold;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    border: none;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, transform 0.1s;
}

.landing-button a:hover {
    background-color: #003e7a;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}

.about-banner {
    display: flex;
    align-items: center;       
    height: 180px;            
    padding-left: 3rem;         
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.about-banner-content {
    display: flex;
    flex-direction: column;  
    text-align: left;
  }

.about-banner-content h1 {
    font-family: "Lato", sans serif;
    font-size: 2rem;
    color: #222;
    margin-bottom: 0;
}
 
.about-banner-content p {
    font-family: "Lato", sans-serif;
    font-size: 1.1rem;
    color: #444;
    margin-top: 0;
}

.profile-pic-2 img{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem;
    gap: 2rem;
    flex-wrap: wrap; /* Optional if you want it to stack on small screens */
  }

.about-content-text {
    text-align: left;
}

.about-content-text h1 {
    font-family: "Lato", sans-serif;
    font-size: 2rem;
}

.about-content-text p {
    font-family: "Lato", sans-serif;
    font-size: 1.5rem;
}

.about-content-text li {
    font-family: "Lato", sans-serif;
    font-size: 1.5rem;
}

.project-content * {
    font-family: "Lato", sans-serif;
    font-size: 1.5rem;
    text-align: left;
    padding-left: 10rem;
    padding-right: 10rem;
}

.project-content li {
    text-align: left;
    padding-left: 0;
    font-size: 2.5rem;
}

ul {
    list-style: none;
    padding: 0;
}

hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 2rem 0;
}

/* Contact Form Card */
.contact-card {
    background: #fff;
    max-width: 400px;
    margin: 2rem auto 3rem auto;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    color: #222;
    font-size: 1rem;
    font-family: "Lato", sans-serif;
    box-sizing: border-box;
    transition: box-shadow 0.2s, border 0.2s;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border: 1.5px solid #0054a6;
    box-shadow: 0 0 0 1.5px #0054a6;
}

#contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

#contact-form button {
    background: linear-gradient(90deg, #0054a6 60%, #007fff 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.85rem 1.5rem;
    font-size: 1.1rem;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, transform 0.1s;
}

#contact-form button:hover {
    background: linear-gradient(90deg, #007fff 60%, #0054a6 100%);
    transform: translateY(-2px) scale(1.03);
}

.form-feedback {
    margin-top: 1.2rem;
    font-size: 1rem;
    min-height: 1.5em;
    text-align: center;
    transition: color 0.2s;
}
.form-feedback.success {
    color: #197d2b;
}
.form-feedback.error {
    color: #b00020;
}

/* Minimal Card Styles for Main Content */
.landing-card, .about-card, .project-card, .contact-card {
    background: #fff;
    max-width: 900px;
    margin: 2.5rem auto 3rem auto;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.landing-card {
    justify-content: center;
}

.landing-content {
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    display: flex;
}

.profile-pic img, .profile-pic-2 img {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
}

.landing-text, .about-content-text, .project-content {
    color: #222;
    text-align: left;
}

.landing-text h1, .about-content-text h1, .about-content-text h2, .project-content h1, .project-content h2 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}

.landing-text p, .about-content-text p, .project-content p, .about-content-text li, .project-content li {
    font-family: "Lato", sans-serif;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.about-content-text section {
    margin-bottom: 1.5rem;
}

.project-content ul {
    padding: 0;
    margin: 0;
}

.project-content li {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.project-content h2 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

/* Button Styles */
.landing-button a, #contact-form button {
    display: inline-block;
    background-color: #0054a6;
    color: #fff;
    border-radius: 6px;
    padding: .75rem 1.25rem;
    text-decoration: none;
    font-weight: bold;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    border: none;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, transform 0.1s;
}
.landing-button a:hover, #contact-form button:hover {
    background-color: #003e7a;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}
#contact-form button i {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .landing-card, .about-card, .project-card, .contact-card {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    }
    .about-content {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }
    .profile-pic img, .profile-pic-2 img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 600px) {
    .about-banner {
        height: 90px;
        padding-left: 0.5rem;
    }
    .landing-text h1, .about-banner-content h1 {
        font-size: 1.3rem;
    }
    .about-content-text h2, .project-content h2 {
        font-size: 1rem;
    }
    .site-footer {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* Remove excessive padding from project-content on all screens */
.project-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Panorama Carousel Styles */
.panorama-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2.5rem auto 0 auto;
    max-width: 900px;
    overflow: hidden;
    height: 180px;
    position: relative;
}
.panorama-item {
    flex: 0 0 120px;
    height: 120px;
    background: #444;
    border-radius: 8px;
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(.4,2,.6,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}
.panorama-item:nth-child(3) {
    flex: 0 0 220px;
    height: 180px;
    opacity: 1;
    background: #0054a6;
    z-index: 2;
    font-size: 2.5rem;
}

.panorama-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.panorama-item:nth-child(3) img {
    object-position: top;
}

@media (max-width: 900px) {
    .panorama-carousel {
        max-width: 98vw;
        height: 110px;
        gap: 0.7rem;
    }
    .panorama-item {
        flex: 0 0 60px;
        height: 60px;
        font-size: 1rem;
    }
    .panorama-item:nth-child(3) {
        flex: 0 0 110px;
        height: 110px;
        font-size: 1.2rem;
    }
}