:root {
    --primary: #4361ee;
    --primary-light: #4895ef;
    --secondary: #3f37c9;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --accent: #f72585;
    --success: #4cc9f0;
    --text: #2b2d42;
    --text-light: #8d99ae;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: none;
}

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
p { margin-bottom: 1rem; }

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

/* Skills Section */
/* .hexagon {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.skill-name {
  visibility: hidden;
  width: max-content;
  background-color: #ff0000;
  color: #fcf400;
  text-align: center;
  border-radius: 4px;
  padding: 4px 8px;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  white-space: nowrap;
  font-size: 12px;
  z-index: 10;
}

.hexagon:hover .skill-name {
  visibility: visible;
  opacity: 1;
} */


/* Responsivity */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .hero-image {
        width: 50%;
        height: 60%;
        visibility: hidden;
    }

    .hero-image img {
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    #hero {
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        margin: 0 auto 50px;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        top: auto;
        right: auto;
        transform: none;
        margin: 0 auto;
    }

    .hero-image img {
        opacity: 0.4;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 70px 0;
    }

    .contact-container {
        padding: 30px;
    }

    /* Enable default cursor on mobile */
    * {
        cursor: auto;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content.active {
    animation: fadeIn 0.5s ease;
}