BEGIN:VCALENDAR
VERSION:2.0
METHOD:PUBLISH
CALSCALE:GREGORIAN
PRODID:-//WordPress - MECv7.34.2//EN
X-ORIGINAL-URL:https://alicanteturismo.com/de//
X-WR-CALNAME:ALICANTE City &amp; Beach
X-WR-CALDESC:Portal de Turismo de Alicante
X-WR-TIMEZONE:Europe/Madrid
BEGIN:VTIMEZONE
TZID:Europe/Madrid
X-LIC-LOCATION:Europe/Madrid
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
TZNAME:CEST
DTSTART:20260329T030000
RRULE:FREQ=YEARLY;BYMONTH=03;BYDAY=-1SU
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
TZNAME:CET
DTSTART:20261025T020000
RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=4SU
END:STANDARD
END:VTIMEZONE
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-PUBLISHED-TTL:PT1H
X-MS-OLK-FORCEINSPECTOROPEN:TRUE
BEGIN:VEVENT
CLASS:PUBLIC
UID:MEC-d71bba295ff7dccd28ff4e760ce95d70@alicanteturismo.com
DTSTART;TZID=Europe/Madrid:20260918T000000
DTEND;TZID=Europe/Madrid:20261019T000000
DTSTAMP:20260916T085726Z
CREATED:20260916
LAST-MODIFIED:20260916
PRIORITY:5
SEQUENCE:0
TRANSP:OPAQUE
SUMMARY:Autumn Cultural Programme at the Alicante Water Museum
DESCRIPTION:Discover the special programme hosted by the Alicante Water Museum (Pozos de Garrigós) during September, October and November. A unique space where literature, multisensory art, live music and discussions come together.\n\nVenue: Alicante Water Museum – Pozos de Garrigós (Plaza del Puente, s/n)\nAdmission: Free admission to all activities until capacity is reached.\n\nTemporary Exhibitions\nFROM 18 SEPTEMBER TO 18 OCTOBER\nPlantoj, the contemplation of nature\nMultisensory exhibition by Luis Zaragoza An immersive experience to connect with the natural environment through visual arts and an Original Soundtrack composed by Jaime Zaragoza.\nAudience: All audiences.\nFROM 22 OCTOBER TO 15 NOVEMBER\n ZAPATEANDO – Flamenco Footwear\nExhibition in collaboration with the Elda Footwear Museum A journey through the tradition, design and craftsmanship of footwear in flamenco art.\n\nAudience: All audiences.\n\nProgramme\nSeptember\n\nTuesday, 17 September | 19:00 h  Book presentation: Mil vidas antes de levantarse\n\nAuthor: Juanjo Morote.\nModerator: Andrés Maestre.\nAudience: All audiences.\n\n\nTuesday, 24 September | 19:00 h Discussion „Más claro agua“: Presentation of Historia de la ultraderecha en España\n\nGuest: Gerardo Muñoz.\nModerator: Jorge Brugos.\nAudience: Over 16s.\n\n\n\nOctober\n\nWednesday, 1 October | 18:00 h  Discussion: Art and nature\n\nMeeting with: Luis Zaragoza together with artists and specialists from the worlds of art and ecology.\nAudience: Over 16s.\n\n\nFriday, 2 October | 19:00 h  Solidarity book presentation: 101 valencianos: ¿héroes o villanos?\n\nAuthors: Mateo Darrán and F.J. Cuerva.\nSolidarity project by Editorial Vinatea in aid of those affected by the DANA.\nAudience: All audiences.\n\n\nWednesday, 15 October | 19:00 h Discussion „Más claro agua“: Presentation of Qué hacer cuando ya no tienes ganas\n\nGuest: Vigela Lloret.\nModerator: Jorge Brugos.\nAudience: Over 16s.\n\n\nThursday, 16 October | 19:00 h  Closing Concert: SUKIJAZZ\n\nMusical grand finale to close Luis Zaragoza’s PLANTOJ exhibition.\nAudience: All audiences.\n\n\nSaturday, 25 October | 12:00 h  Morning Concert: BOLETUS\n\nLive performance by the indie pop/rock band.\nAudience: All audiences.\n\n\nWednesday, 29 October | 19:00 h  Discussion „Más claro agua“: Presentation of La isla de las flores amarillas\n\nGuest: Joaquín Hernández.\nModerator: Jorge Brugos.\nAudience: Over 16s.\n\n\n\n\n\n  /* Contenedor de la galería en cuadrícula de 3 columnas */\n  .galeria-grid {\n    display: grid;\n    grid-template-columns: repeat(3, 1fr);\n    gap: 20px;\n    margin: 20px 0;\n  }\n  /* Tarjeta de cada imagen */\n  .galeria-item {\n    position: relative;\n    overflow: hidden;\n    border-radius: 8px;\n    box-shadow: 0 4px 10px rgba(0,0,0,0.1);\n    cursor: pointer;\n    transition: transform 0.3s ease, box-shadow 0.3s ease;\n  }\n  .galeria-item:hover {\n    transform: translateY(-5px);\n    box-shadow: 0 8px 20px rgba(0,0,0,0.2);\n  }\n  .galeria-item img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    aspect-ratio: 4/5; /* Mantiene la proporción uniforme */\n    display: block;\n    transition: filter 0.3s ease;\n  }\n  .galeria-item:hover img {\n    filter: brightness(0.9);\n  }\n  /* Estilos de la Caja de Luz (Lightbox) */\n  .custom-lightbox {\n    display: none;\n    position: fixed;\n    z-index: 99999;\n    left: 0;\n    top: 0;\n    width: 100%;\n    height: 100%;\n    background-color: rgba(0, 0, 0, 0.85);\n    justify-content: center;\n    align-items: center;\n    backdrop-filter: blur(5px);\n  }\n  .custom-lightbox img {\n    max-width: 90%;\n    max-height: 85vh;\n    border-radius: 6px;\n    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);\n    animation: zoomIn 0.25s ease-out;\n  }\n  .custom-lightbox .close-btn {\n    position: absolute;\n    top: 20px;\n    right: 35px;\n    color: #fff;\n    font-size: 40px;\n    font-weight: bold;\n    cursor: pointer;\n    line-height: 1;\n    user-select: none;\n  }\n  .custom-lightbox .close-btn:hover {\n    color: #ccc;\n  }\n  @keyframes zoomIn {\n    from { transform: scale(0.8); opacity: 0; }\n    to { transform: scale(1); opacity: 1; }\n  }\n  /* Adaptación para pantallas pequeñas / móviles (1 columna) */\n  @media (max-width: 768px) {\n    .galeria-grid {\n      grid-template-columns: repeat(2, 1fr);\n      gap: 12px;\n    }\n  }\n  @media (max-width: 480px) {\n    .galeria-grid {\n      grid-template-columns: 1fr;\n    }\n  }\n\n\n\n\n    \n  \n\n    \n  \n\n    \n  \n\n    \n  \n\n    \n  \n\n    \n  \n\n    \n  \n\n    \n  \n\n    \n  \n\n    \n  \n\n
URL:https://alicanteturismo.com/de/events/autumn-cultural-programme-at-the-alicante-water-museum/
CATEGORIES:Ausstellungen,Hervorgehoben,Kongresse und Konferenzen,Konzerte,Kulture
ATTACH;FMTTYPE=image/jpeg:https://alicanteturismo.com/wp-content/uploads/2024/05/museo-aguas-alicante-spain-7-e1716543718353.jpg
END:VEVENT
END:VCALENDAR
