* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DotGothic16', sans-serif;
}
body {
    line-height: 1.7;
    background-color: #eaeaea;
    color: #333;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 6px rgba(51, 51, 51,0.1);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    font-size: 1.5rem;
    font-weight: 600;
}
.nav ul {
    display: flex;
    gap: 1.5rem;
}
.nav ul li a {
    color: #fff;
    transition: color 0.3s;
}
.nav ul li a:hover {
    color: #ff9800;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background-color: rgba(51, 51, 51, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 6px rgba(51, 51, 51,0.1);
}
.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

/* Landing Section */
.landing {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #333, #555);
    color: #fff;
    text-align: center;
}
.landing h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.landing p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #ff9800
}

.scroll-btn {
    padding: 0.7rem 1.5rem;
    background-color: #ff9800;
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s;
}
.scroll-btn:hover {
    background-color: #e68900;
}

.logo-container {
    margin: 50px 0; 
}

.circular-logo {
    width: 300px; 
    height: 300px; 
    border-radius: 50%; 
    background-color: black; 
    padding: 10px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circular-logo:hover {
    transform: scale(1); 
    box-shadow: 0 0 20px 5px rgba(0, 132, 184, 0.7); 
}

/* About Section */
.about, .projects, .contact {
    padding: 12rem 2rem;
    text-align: center;
}
.about {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}
.about-content {
    flex: 1 1 50%;
    text-align: left;
}
.about-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}
.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}
.about-img {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
}
.about-img img {
    max-width: 300px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.aboutbutton{
    margin-top: 5rem;
}
.about-btn {
    padding: 0.7rem 1.5rem;
    background-color: #ff9800;
    color: #0f0f0f;
    border-radius: 5px;
    transition: background 0.3s;
    margin-top: 2rem; /* Adjust as needed */
}

.about-btn:hover {
    background-color: #e68900;
}


/* Projects Section */
.project-list {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}
.project {
    background-color: #222;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.project h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.project h3 a {
    color: #ffcc00;
    font-size: 1.2rem;
    text-decoration: none;
}

.project h3 a:hover {
    text-decoration: underline;
  }
  
.project p {
    color: #bbb;
    font-size: 1rem;
}

.project img {
    width: 100%;
    border-radius: 10px;
}

.projectabout-content {
    flex: 1 1 50%;
    text-align: center;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.social-links a img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
}
.social-links a img:hover {
    transform: scale(1.2);
}

/* Portfolio Section */
.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; 
    margin-top: 40px;
}

.logo {
    width: 60px; 
    height: auto;
    transition: transform 0.4s ease-in-out;
}

.logo:hover {
    transform: scale(1.2); 
}

#contact {
    padding-bottom: 100px; 
}

#contact h2 {
    text-align: center;
    margin-bottom: 1.5rem; 
    font-size: 1.5rem; 
    color: #333; 
}

/* Footer */
footer {
    background-color: rgb(51, 51, 51);
    color: #fff;
    text-align: center;
    padding: 10px;
    position: relative;
    width: 100%;
    bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #333;
        width: 100%;
        text-align: center;
    }
    .nav.active {
        display: block;
    }
    .nav ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    .nav ul li {
        margin: 0;
    }
    .nav ul li a {
        font-size: 1.2rem;
    }
    .nav ul li a:hover {
        color: #ff9800;
    }
    .project {
                padding: 15px;
            }
}