/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="48" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23000" stroke-width="2" d="M5.5 3.21V20.8c0 .45.54.67.85.35l4.86-4.86a.5.5 0 0 1 .35-.15h6.87a.5.5 0 0 0 .35-.85L6.35 2.85a.5.5 0 0 0-.85.35Z"></path></svg>') 0 0, default;
}

.logo:hover,
.cta-button:hover,
.project-card:hover,
.project-link:hover {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="48" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23000" stroke-width="2" d="M5.5 3.21V20.8c0 .45.54.67.85.35l4.86-4.86a.5.5 0 0 1 .35-.15h6.87a.5.5 0 0 0 .35-.85L6.35 2.85a.5.5 0 0 0-.85.35Z"></path></svg>') 0 0, default;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
    margin-top: 50px;
}

/* Navigation */
nav {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 150px;
}

.logo {
    height: 140px;
    min-height: 50px;
    width: auto;
}

.logo {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    border-radius: 30px;
    padding: 10px;
}

.logo:hover {
    background-color: rgba(202, 202, 202, 0.158);
    box-shadow: 0 0 40px 15px  rgba(202, 202, 202, 0.158);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000;
}

/* Hero Section */
.hero {
    background-color: #ffffffab;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text-container span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

/* Special styling for .com part */
.hero-text-container span.com-highlight {
    color: #00000031; /* Blue color for .com */
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.25rem;
    color: #727272;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
    background-color: #000;
    color: white;
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Projects Section */
.projects {
    padding: 80px 20px;
    background-color: #ffffffab;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    color: #666666;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 24px;
}

.project-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 12px;
}

.project-description {
    color: #666;
    margin-bottom: 16px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tech-tag {
    background-color: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 16px;
}

.project-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: #000;
    color: white;
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.contact p {
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 40px;
}

.contact .cta-button {
    background-color: white;
    color: #000;
}

.contact .cta-button:hover {
    background-color: #f0f0f0;
}

/* Footer */
footer {
    background-color: white;
    padding: 24px 20px;
    text-align: center;
    color: #666;
    border-top: 1px solid #e9ecef;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .projects {
        padding: 60px 20px;
    }
    
    .contact {
        padding: 60px 20px;
    }
}
