File size: 3,145 Bytes
b8d618b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/* Contact & Footer Section Styles */

/* Contact Section */
.contact {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.1;
    transition: all 0.3s ease;
    animation: robotMove 25s ease-in-out infinite;
}

.contact:hover .contact-bg-image {
    opacity: 0.15;
    transform: scale(1.02);
}

@keyframes robotMove {
    0%, 100% {
        transform: translateX(0px) scale(1);
    }
    25% {
        transform: translateX(10px) scale(1.005);
    }
    50% {
        transform: translateX(0px) scale(1.01);
    }
    75% {
        transform: translateX(-10px) scale(1.005);
    }
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-text {
    margin-bottom: 3rem;
}

.contact-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-text p:last-child {
    color: var(--primary);
    font-weight: 600;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    min-height: 70px;
}

.contact-item:hover {
    color: var(--light);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 25px;
    text-align: center;
}

/* Specific colors for contact icons */
.contact-item .fa-github {
    color: #24292e;
}

.contact-item:hover .fa-github {
    color: #ffffff;
    background: radial-gradient(circle, #24292e 0%, #333333 100%);
    border-radius: 50%;
    padding: 5px;
}

.contact-item .fa-envelope {
    color: #ea4335;
}

.contact-item:hover .fa-envelope {
    color: #ffffff;
    background: radial-gradient(circle, #ea4335 0%, #d33b2c 100%);
    border-radius: 50%;
    padding: 5px;
}

.contact-item .fa-map-marker-alt {
    color: #4285f4;
}

.contact-item:hover .fa-map-marker-alt {
    color: #ffffff;
    background: radial-gradient(circle, #4285f4 0%, #1a73e8 100%);
    border-radius: 50%;
    padding: 5px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    background: var(--dark);
    color: var(--gray);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}