|
1 | 1 | :root { |
2 | | - --input-bg: rgba(255, 255, 255, 0.05); |
| 2 | + --card-bg-glass: rgba(255, 255, 255, 0.03); |
| 3 | + --card-border-glass: rgba(255, 255, 255, 0.1); |
| 4 | + --hover-bg: rgba(255, 255, 255, 0.08); |
3 | 5 | } |
4 | 6 |
|
5 | 7 | .container { |
6 | | - max-width: 800px; |
| 8 | + max-width: 1000px; |
| 9 | + width: 100%; |
| 10 | + margin: 0 auto; |
| 11 | + padding: 0 20px; |
| 12 | + box-sizing: border-box; |
7 | 13 | } |
8 | 14 |
|
9 | | -/* Contact Section */ |
10 | 15 | .contact-section { |
11 | 16 | text-align: center; |
12 | | - padding: 40px 20px; |
13 | | - background: var(--card-bg); |
14 | | - border: 1px solid var(--card-border); |
15 | | - border-radius: 16px; |
16 | | - backdrop-filter: blur(10px); |
17 | | - box-sizing: border-box; |
18 | | - width: 100%; |
19 | | - max-width: 100%; |
20 | | - margin: 0 auto; |
| 17 | + padding: 60px 0; |
21 | 18 | } |
22 | 19 |
|
23 | 20 | .subtitle { |
24 | | - color: var(--secondary-text); |
| 21 | + color: #a0a0a0; |
25 | 22 | font-size: 1.1rem; |
26 | | - margin-bottom: 40px; |
27 | | -} |
28 | | - |
29 | | -.contact-info { |
30 | | - display: flex; |
31 | | - justify-content: center; |
32 | | - gap: 40px; |
33 | | - margin-bottom: 40px; |
34 | | - flex-wrap: wrap; |
| 23 | + margin-bottom: 50px; |
| 24 | + margin-top: 10px; |
35 | 25 | } |
36 | 26 |
|
37 | | -.info-item { |
38 | | - display: flex; |
39 | | - flex-direction: column; |
40 | | - align-items: center; |
41 | | - gap: 10px; |
| 27 | +.status-box { |
| 28 | + background: rgba(50, 205, 50, 0.08); |
| 29 | + border: 1px solid rgba(50, 205, 50, 0.3); |
| 30 | + padding: 30px; |
| 31 | + border-radius: 16px; |
| 32 | + text-align: left; |
| 33 | + margin-bottom: 30px; |
| 34 | + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); |
42 | 35 | } |
43 | 36 |
|
44 | | -.info-icon { |
45 | | - font-size: 2rem; |
46 | | - color: var(--accent-color); |
| 37 | +.contact-grid { |
| 38 | + display: grid; |
| 39 | + grid-template-columns: 1fr 1fr; |
| 40 | + gap: 30px; |
47 | 41 | } |
48 | 42 |
|
49 | | -.info-text { |
50 | | - font-size: 1.1rem; |
51 | | - font-weight: 500; |
| 43 | +.info-card { |
| 44 | + background: var(--card-bg-glass); |
| 45 | + border: 1px solid var(--card-border-glass); |
| 46 | + border-radius: 16px; |
| 47 | + padding: 35px; |
| 48 | + text-align: left; |
| 49 | + display: flex; |
| 50 | + flex-direction: column; |
| 51 | + transition: transform 0.3s ease, border-color 0.3s ease; |
| 52 | + height: 100%; |
| 53 | + box-sizing: border-box; |
52 | 54 | } |
53 | 55 |
|
54 | | -.info-label { |
55 | | - color: var(--secondary-text); |
56 | | - font-size: 0.9rem; |
| 56 | +.info-card:hover { |
| 57 | + border-color: rgba(124, 77, 255, 0.5); |
| 58 | + transform: translateY(-2px); |
57 | 59 | } |
58 | 60 |
|
59 | | -/* Contact Form */ |
60 | | -.contact-form { |
61 | | - display: grid; |
62 | | - gap: 20px; |
63 | | - max-width: 500px; |
64 | | - margin: 0 auto; |
65 | | - text-align: left; |
| 61 | +.card-title { |
| 62 | + margin-top: 0; |
| 63 | + font-size: 1.3rem; |
| 64 | + display: flex; |
| 65 | + align-items: center; |
| 66 | + gap: 12px; |
| 67 | + margin-bottom: 20px; |
| 68 | + font-weight: 600; |
66 | 69 | } |
67 | 70 |
|
68 | | -.form-group { |
| 71 | +.social-list { |
69 | 72 | display: flex; |
70 | 73 | flex-direction: column; |
71 | | - gap: 8px; |
| 74 | + gap: 15px; |
72 | 75 | } |
73 | 76 |
|
74 | | -label { |
75 | | - font-size: 0.9rem; |
76 | | - color: var(--secondary-text); |
77 | | -} |
78 | | - |
79 | | -input, textarea { |
80 | | - background: var(--input-bg); |
81 | | - border: 1px solid var(--card-border); |
82 | | - border-radius: 8px; |
83 | | - padding: 12px 16px; |
84 | | - color: white; |
85 | | - font-family: inherit; |
86 | | - font-size: 1rem; |
87 | | - transition: border-color 0.2s; |
| 77 | +.social-btn { |
| 78 | + display: flex; |
| 79 | + align-items: center; |
| 80 | + justify-content: space-between; |
| 81 | + background: rgba(255, 255, 255, 0.03); |
| 82 | + border: 1px solid rgba(255, 255, 255, 0.08); |
| 83 | + padding: 15px 20px; |
| 84 | + border-radius: 10px; |
| 85 | + color: #ccc; |
| 86 | + text-decoration: none; |
| 87 | + transition: all 0.2s ease; |
| 88 | + font-weight: 500; |
88 | 89 | } |
89 | 90 |
|
90 | | -input:focus, textarea:focus { |
91 | | - outline: none; |
92 | | - border-color: var(--accent-color); |
93 | | - background: rgba(255, 255, 255, 0.08); |
| 91 | +.social-btn:hover { |
| 92 | + background: rgba(124, 77, 255, 0.15); |
| 93 | + border-color: #7c4dff; |
| 94 | + color: #fff; |
| 95 | + padding-left: 25px; |
94 | 96 | } |
95 | 97 |
|
96 | | -.btn-form { |
97 | | - padding: 14px 32px; |
98 | | - justify-content: center; |
99 | | - border: none; |
100 | | - cursor: pointer; |
101 | | - margin-top: 10px; |
| 98 | +.social-btn i { |
| 99 | + font-size: 1.2rem; |
102 | 100 | } |
103 | 101 |
|
104 | | -.email-link { |
105 | | - color: var(--accent-color); |
106 | | - text-decoration: none; |
107 | | - transition: opacity 0.2s; |
108 | | -} |
109 | | -.email-link:hover { |
110 | | - opacity: 0.8; |
111 | | -} |
| 102 | +@media (max-width: 768px) { |
| 103 | + .contact-grid { |
| 104 | + grid-template-columns: 1fr; |
| 105 | + gap: 20px; |
| 106 | + } |
| 107 | + |
| 108 | + .status-box, .info-card { |
| 109 | + padding: 25px; |
| 110 | + } |
112 | 111 |
|
113 | | -@media (max-width: 600px) { |
114 | 112 | h1 { font-size: 2rem; } |
115 | | - .contact-info { gap: 20px; } |
| 113 | + |
| 114 | + .social-btn:hover { |
| 115 | + padding-left: 20px; |
| 116 | + } |
116 | 117 | } |
0 commit comments