/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFC107;
    --dark-gold: #B8860B;
    --light-gold: #FFF8DC;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent-blue: #4361ee;
    --accent-purple: #7209b7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Star Field Animation */
.star-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.star-field .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.star-field .layer:nth-child(1) {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-gold), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, var(--primary-gold), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, var(--primary-gold), rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: float 50s linear infinite;
    opacity: 0.7;
}

.star-field .layer:nth-child(2) {
    background-image: 
        radial-gradient(1px 1px at 80px 120px, var(--secondary-gold), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 100px 200px, var(--secondary-gold), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 150px 80px, var(--secondary-gold), rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: float 100s linear infinite;
    opacity: 0.5;
}

.star-field .layer:nth-child(3) {
    background-image: 
        radial-gradient(3px 3px at 200px 50px, var(--light-gold), rgba(0,0,0,0)),
        radial-gradient(3px 3px at 250px 150px, var(--light-gold), rgba(0,0,0,0)),
        radial-gradient(3px 3px at 300px 250px, var(--light-gold), rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 400px 400px;
    animation: float 150s linear infinite;
    opacity: 0.3;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(-1000px) translateX(-200px);
    }
}

/* Glitter Particles */
.glitter-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.glitter {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: glitter-fall linear infinite;
    box-shadow: 0 0 10px var(--primary-gold), 0 0 20px var(--primary-gold);
}

@keyframes glitter-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

h1 {
    font-size: 4.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

p {
    line-height: 1.8;
    color: var(--text-gray);
}

.gold-text {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
}

.logo {
    position: relative;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    display: inline-block;
}

.logo-text {
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.logo:hover .logo-glow {
    opacity: 1;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 2px;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-gray);
    transition: color 0.3s;
}

.nav-icon {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.nav-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover .nav-glow {
    opacity: 1;
}

.theme-toggle {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.theme-toggle i {
    position: absolute;
    transition: all 0.3s;
}

.theme-toggle .fa-moon {
    opacity: 1;
}

.theme-toggle .fa-sun {
    opacity: 0;
}

.theme-toggle:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(45deg);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
}

.menu-toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.menu-toggle .fa-times {
    opacity: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, rgba(0,0,0,0) 50%);
    pointer-events: none;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.greeting {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.greeting-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.greeting span {
    color: var(--text-gray);
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.hero-name, .hero-lastname {
    display: block;
    line-height: 1;
}

.hero-lastname {
    color: var(--text-light);
}

.hero-titles {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.title-wrapper {
    position: relative;
    display: inline-block;
}

.title-text {
    position: relative;
    z-index: 2;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--primary-gold);
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.title-wrapper:hover .title-glow {
    opacity: 1;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 30px 0 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-gold, .btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--dark-bg);
}

.btn-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0) 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-gold:hover .btn-glow {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-gold);
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gold);
}

.frame-corner.tl {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.tr {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bl {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
}

.frame-corner.br {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.profile-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.image-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.stat-divider {
    width: 1px;
    background: rgba(255, 215, 0, 0.2);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: float-element 6s ease-in-out infinite;
}

.float-element.el1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.float-element.el2 {
    top: 50%;
    right: -20px;
    animation-delay: 1s;
}

.float-element.el3 {
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

.float-element.el4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float-element {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

.arrow {
    color: var(--primary-gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.title-number {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--primary-gold);
    opacity: 0.7;
}

.title-text {
    position: relative;
    color: var(--text-light);
}

.title-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: rgba(5, 5, 5, 0.7);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 2;
}

.about-intro {
    margin-bottom: 40px;
}

.about-intro h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cv-section {
    margin-top: 40px;
}

.cv-section h4 {
    margin-bottom: 20px;
    color: var(--text-light);
}

.cv-card {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.cv-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.cv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.cv-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.cv-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
}

.cv-item i {
    color: var(--primary-gold);
    width: 20px;
}

.cv-actions {
    display: flex;
    gap: 15px;
}

.btn-gold-small, .btn-outline-small {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-gold-small {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--dark-bg);
}

.btn-outline-small {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.stat-card h4 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.stat-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    border-radius: 3px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Skills Section */
.skills {
    background: rgba(10, 10, 10, 0.7);
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.skills-category h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
    padding-left: 20px;
    position: relative;
}

.skills-category h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.skill-item {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.skill-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.skill-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-gold);
}

.skill-info {
    flex: 1;
}

.skill-info h4 {
    color: var(--text-light);
    margin-bottom: 5px;
}

.skill-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.skill-level {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.level-bar {
    width: 100px;
    height: 6px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.level-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    border-radius: 3px;
    width: 0;
    transition: width 1s ease-in-out;
}

.level-percent {
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 600;
}

/* Projects Section */
.projects {
    background: rgba(5, 5, 5, 0.7);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.project-link:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: rotate(45deg);
}

.project-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.project-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tech span {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Contact Section */
.contact {
    background: rgba(10, 10, 10, 0.7);
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-card:hover .icon-glow {
    opacity: 1;
}

.contact-card h4 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.contact-numbers, .contact-email {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-numbers span, .contact-email span {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.social-mini {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-mini a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.social-mini a:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: rotate(45deg);
}

.card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-card:hover .card-hover {
    opacity: 1;
}

.hover-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80%;
}

.hover-option {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--primary-gold);
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.hover-option:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.contact-form {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0);
    transition: box-shadow 0.3s;
    pointer-events: none;
}

.form-group input:focus ~ .input-glow,
.form-group textarea:focus ~ .input-glow {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
    background: rgba(5, 5, 5, 0.9);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 2rem;
}

.footer-brand p {
    margin-top: 15px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h4,
.footer-social h4,
.footer-newsletter h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: rotate(45deg);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    width: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border: none;
    border-radius: 10px;
    color: var(--dark-bg);
    cursor: pointer;
    transition: transform 0.3s;
}

.newsletter-form button:hover {
    transform: rotate(45deg);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom .fa-heart {
    color: #ff6b6b;
    margin: 0 5px;
}

.footer-bottom .fa-code {
    color: var(--primary-gold);
    margin: 0 5px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
}

.close-modal:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 1200px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-titles {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .navbar .container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        border-top: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .fa-bars {
        opacity: 0;
    }
    
    .menu-toggle.active .fa-times {
        opacity: 1;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}