-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinvitacion-info.html
More file actions
195 lines (185 loc) · 5 KB
/
invitacion-info.html
File metadata and controls
195 lines (185 loc) · 5 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Detalles de la Invitación - Candelisse Concerts</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Roboto&display=swap');
html, body {
height: 100%;
margin: 0;
font-family: 'Roboto', sans-serif;
color: #fff;
}
/*body {
background: url('3def34ed655f69b3c3aa94888b700263.jpg') no-repeat center center fixed;
background-size: cover;
padding: 2rem 1rem 3rem 1rem;
overflow-y: auto;
}
.overlay {
background: url('bc102d32e7f89eb5877ec78ee3c936ad.jpg') no-repeat center center fixed;
background-size: cover;
border-radius: 20px;
padding: 3rem 2rem;
max-width: 600px;
box-shadow: 0 0 30px rgba(0,0,0,0.8);
color: #fff;
position: relative;
text-align: center;
margin: 3rem auto;
} */
body {
background:
linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
url('3def34ed655f69b3c3aa94888b700263.jpg') no-repeat center center fixed;
background-size: cover;
padding: 2rem 1rem 3rem 1rem;
overflow-y: auto;
}
.overlay {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-radius: 20px;
padding: 3rem 2rem;
max-width: 600px;
box-shadow: 0 0 30px rgba(0,0,0,0.5);
color: #fff;
position: relative;
text-align: center;
margin: 3rem auto;
border: 1px solid rgba(255, 255, 255, 0.2);
}
h1, h2 {
font-family: 'Playfair Display', serif;
color: #ffd700;
text-shadow: 2px 2px 8px #b8860b;
}
h1 {
font-size: 3rem;
margin-bottom: 1rem;
text-align: center;
}
h2 {
font-size: 2rem;
margin-top: 2rem;
border-bottom: 3px solid #ffe066;
padding-bottom: 0.3rem;
}
p {
font-size: 1.15rem;
line-height: 1.6;
margin-top: 1rem;
}
.dress-code {
background: #005f73;
padding: 1.3rem 1.5rem;
border-radius: 15px;
margin-top: 1.5rem;
box-shadow: 0 6px 15px rgba(0, 95, 115, 0.7);
}
.dress-code ul {
list-style-type: disc;
margin-left: 1.8rem;
font-size: 1.1rem;
}
a.btn-pdf {
display: inline-block;
background: linear-gradient(45deg, #ffd700, #b8860b);
color: #003049;
padding: 1rem 2.5rem;
font-weight: 700;
border-radius: 25px;
text-decoration: none;
box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8);
transition: background 0.4s ease, color 0.4s ease;
margin-top: 1.5rem;
font-size: 1.1rem;
}
a.btn-pdf:hover {
background: linear-gradient(45deg, #b8860b, #ffd700);
color: #001f2d;
}
form {
margin-top: 2rem;
text-align: left;
}
label {
display: block;
margin-top: 1.2rem;
font-weight: 700;
}
input[type="text"], input[type="email"], select {
width: 100%;
padding: 0.7rem;
margin-top: 0.4rem;
border-radius: 12px;
border: none;
font-size: 1.1rem;
box-shadow: inset 0 0 8px rgba(255,255,255,0.2);
background: #0077b6;
color: #f0f0f0;
transition: background 0.3s ease;
}
input[type="text"]:focus, input[type="email"]:focus, select:focus {
outline: none;
background: #0096c7;
}
button.btn-submit {
margin-top: 2rem;
background: linear-gradient(45deg, #ffd700, #b8860b);
border: none;
padding: 1rem 2.5rem;
font-size: 1.2rem;
font-weight: 700;
border-radius: 25px;
color: #003049;
cursor: pointer;
box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8);
transition: background 0.4s ease, color 0.4s ease;
}
button.btn-submit:hover {
background: linear-gradient(45deg, #b8860b, #ffd700);
color: #001f2d;
}
.thank-you {
margin-top: 1.5rem;
font-size: 1.3rem;
color: #ffe066;
font-weight: 700;
text-align: center;
}
footer {
text-align: center;
margin-top: 3rem;
font-size: 1rem;
color: #ffe066;
}
footer a {
color: #ffd700;
text-decoration: underline;
}
footer a:hover {
color: #fffacd;
}
</style>
</head>
<body>
<div class="overlay" role="main">
<h1>Detalles de la Invitación</h1>
<section class="details">
<h2>Información del Evento</h2>
<p><strong>Fecha:</strong> Sábado 20 de Septiembre, 2025</p>
<p><strong>Hora:</strong> 7:00 pm (se recomienda llegar 15 minutos antes)</p>
<p><strong>Lugar:</strong> Terraza Sexto Cielo, Cl. 11 #4 - 74 Piso 6, Cúcuta</p>
<p>Disfrutaremos de un concierto único con el grupo <em>Jóvenes Arcos Élite</em>, un sexteto de cuerdas que nos llevará por un viaje musical entre lo clásico y lo contemporáneo, acompañado de una experiencia gastronómica de tres tiempos.</p>
</section>
<a href="Candelisse Concerts - 20-Sep-2025.pdf" target="_blank" class="btn-pdf" download>Descargar PDF con detalles</a>
</div>
<footer>
<p>Para más información visita <a href="https://www.instagram.com/candelisse_concerts/" target="_blank" rel="noopener noreferrer">@candelisse_concerts</a></p>
</footer>
</body>
</html>