* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Rural colors - Greens */
    --rural-green: #2d7a2d;
    --rural-dark: #1a5c1a;
    --rural-light: #81c784;
    
    /* Urban colors - Grays, Blues */
    --urban-gray: #424242;
    --urban-dark: #212121;
    --urban-blue: #1976d2;
    --urban-light: #90caf9;
    
    /* Accent colors - Connection */
    --accent-orange: #ff6f00;
    --accent-yellow: #ffc107;
    --accent-purple: #7b1fa2;
    
    /* Neutral */
    --dark-text: #1a1a1a;
    --light-text: #555;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(76, 175, 80, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, 
        #e8f5e9 0%, 
        #c5e1a5 25%, 
        #90caf9 50%, 
        #ce93d8 75%, 
        #ffccbc 100%);
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(129, 199, 132, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(144, 202, 249, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 183, 77, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-main {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #2d7a2d 0%, #1976d2 50%, #ff6f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    letter-spacing: -1px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-dates {
    margin: 40px 0 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.dates-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.date-month {
    font-size: 48px;
    font-weight: 800;
    color: #1976d2;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.8);
}

.date-numbers {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, #2d7a2d 0%, #1976d2 50%, #ff6f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    line-height: 1;
    letter-spacing: -5px;
    animation: pulse 2s ease-in-out infinite;
}

.date-year {
    font-size: 56px;
    font-weight: 800;
    color: #ff6f00;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.95;
    }
}

.hero-tagline {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #2d7a2d 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 30px 0 25px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
    font-size: 22px;
    color: #424242;
    max-width: 900px;
    margin: 0 auto 35px;
    line-height: 1.9;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-description strong {
    font-weight: 700;
    font-size: 24px;
    position: relative;
    display: inline-block;
    padding: 0 4px;
}

.highlight-1 {
    color: #2d7a2d;
    text-shadow: 0 0 10px rgba(45, 122, 45, 0.3);
}

.highlight-2 {
    color: #1976d2;
    text-shadow: 0 0 10px rgba(25, 118, 210, 0.3);
}

.highlight-3 {
    color: #ff6f00;
    text-shadow: 0 0 10px rgba(255, 111, 0, 0.3);
}

.highlight-4 {
    color: #7b1fa2;
    text-shadow: 0 0 10px rgba(123, 31, 162, 0.3);
}

.hero-cta {
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-text {
    font-size: 20px;
    font-weight: 600;
    color: #424242;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    background: linear-gradient(135deg, rgba(45, 122, 45, 0.15) 0%, rgba(25, 118, 210, 0.15) 100%);
    border: 2px solid rgba(45, 122, 45, 0.4);
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-text:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dates Section */
.dates-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 50%, #c8e6c9 100%);
    position: relative;
    overflow: hidden;
}

.dates-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(102, 187, 106, 0.15) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.date-card-wrapper {
    perspective: 1000px;
    max-width: 900px;
    margin: 0 auto;
}

.date-card {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    cursor: pointer;
}

.date-card:hover {
    transform: rotateY(180deg);
}

.date-card-front,
.date-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.date-card-front {
    background: linear-gradient(135deg, #1a5c1a 0%, #2d7a2d 50%, #4caf50 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    text-align: center;
}

.date-card-back {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 50%, #81c784 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    text-align: center;
}

.date-illustration {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.illustration-icon {
    font-size: 60px;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.illustration-icon:nth-child(1) {
    animation-delay: 0s;
}

.illustration-icon:nth-child(2) {
    animation-delay: 0.3s;
}

.illustration-icon:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.date-content {
    position: relative;
    z-index: 1;
}

.date-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.date-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
}

.date-subtitle {
    font-size: 28px;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.date-badge {
    margin-top: 30px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.6); }
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.date-back-content {
    position: relative;
    z-index: 1;
}

.back-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: spin 3s linear infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.date-back-content h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-text {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 500;
}

.date-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.detail-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Section Styles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #2d7a2d 0%, #1976d2 50%, #ff6f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 40px;
}

/* Venue Section - Location + Gallery */
.venue-section {
    padding: 60px 0 0;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.location-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-icon {
    font-size: 32px;
}

.location-info h3 {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.address {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 12px;
    font-style: italic;
}

.location-note {
    color: var(--light-text);
}

.venue-presentation {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(45, 122, 45, 0.05) 0%, rgba(25, 118, 210, 0.05) 100%);
    border-radius: 16px;
    border-left: 4px solid #2d7a2d;
}

.venue-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
    font-style: italic;
    margin: 20px auto 40px;
    max-width: 800px;
    text-align: center;
}

.venue-gallery {
    margin-top: 0;
    margin-bottom: 50px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0 20px;
}

.gallery-elegant {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(45, 122, 45, 0.12) 0%, 
        rgba(25, 118, 210, 0.12) 100%);
    mix-blend-mode: overlay;
    z-index: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 0.9;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(45, 122, 45, 0.25);
    z-index: 10;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: saturate(1.1) contrast(1.05) brightness(0.95);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
    filter: saturate(1.2) contrast(1.1) brightness(1);
}



.venue-description {
    font-size: 20px;
    line-height: 1.8;
    color: #424242;
    font-weight: 500;
    font-style: italic;
}

.map-section {
    padding: 60px 0;
    background: var(--white);
}

.map-container-full {
    background: var(--white);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    height: 500px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.map-iframe-full {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.map-link {
    text-align: center;
    margin-top: 15px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.map-link a {
    color: #2d7a2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-link a:hover {
    color: #1976d2;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* How to Get Here Section */
.how-to-get-section {
    padding: 60px 0;
    background: linear-gradient(135deg, 
        #e8f5e9 0%, 
        #c5e1a5 25%, 
        #90caf9 50%, 
        #ce93d8 75%, 
        #ffccbc 100%);
    position: relative;
    overflow: hidden;
}

.how-to-get-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(129, 199, 132, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(144, 202, 249, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 183, 77, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.how-to-get-section .container {
    position: relative;
    z-index: 1;
}

.how-to-get-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-text);
    background: linear-gradient(135deg, #2d7a2d 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 40px;
    color: var(--dark-text);
}

.section-subtitle:first-of-type {
    margin-top: 0;
}

.airports-section {
    margin-bottom: 50px;
}

.airports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.airport-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.airport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 122, 45, 0.2);
    border-color: rgba(45, 122, 45, 0.3);
}

.from-airports-section {
    margin-bottom: 40px;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.address-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.transport-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 122, 45, 0.2);
    border-color: rgba(45, 122, 45, 0.3);
}

.transport-icon {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
}

.transport-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
    text-align: center;
}

.transport-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 12px;
}

.transport-description a {
    color: var(--rural-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.transport-description a:hover {
    color: var(--urban-blue);
    border-bottom-color: var(--urban-blue);
}

.transport-price-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px 0;
}

.transport-price-list li {
    font-size: 15px;
    line-height: 1.8;
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    color: var(--light-text);
}

.transport-price-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--rural-green);
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
}

.transport-address {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 500;
}

.transport-address strong {
    color: var(--rural-green);
    font-weight: 700;
}

.transport-note {
    font-size: 13px;
    color: var(--light-text);
    margin-top: 15px;
    font-style: italic;
    text-align: center;
}

.transport-note a {
    color: var(--urban-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.transport-note a:hover {
    color: var(--rural-green);
    text-decoration: underline;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    background: var(--white);
    aspect-ratio: 4/3;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: var(--white);
}

.about-text {
    font-size: 18px;
    color: var(--light-text);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.pillar-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2d7a2d, #1976d2, #ff6f00);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(45, 122, 45, 0.3);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    height: 60px;
}

.pillar-icon.hand-drawn {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

.pillar-icon.hand-drawn path,
.pillar-icon.hand-drawn circle,
.pillar-icon.hand-drawn rect {
    stroke-linejoin: round;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.pillar-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2d7a2d 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-description {
    font-size: 14px;
    line-height: 1.5;
    color: #424242;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    min-height: 63px;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(45, 122, 45, 0.1) 0%, rgba(25, 118, 210, 0.1) 100%);
    margin-top: auto;
    width: 100%;
    border: 2px solid transparent;
    font-size: 14px;
}

.pillar-card:hover .partner-link {
    background: linear-gradient(135deg, rgba(45, 122, 45, 0.15) 0%, rgba(25, 118, 210, 0.15) 100%);
    border-color: rgba(45, 122, 45, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-name {
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(135deg, #2d7a2d 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.partner-link:hover .partner-name {
    background: linear-gradient(135deg, #1976d2 0%, #ff6f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-arrow {
    font-size: 16px;
    color: #1976d2;
    transition: all 0.3s ease;
    font-weight: 700;
}

.partner-link:hover .partner-arrow {
    color: #ff6f00;
    transform: translateX(5px);
}

.partner-multiple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    width: 100%;
}

.partner-multiple .partner-link {
    flex: 1;
    min-width: 100px;
    margin-top: 0;
    font-size: 12px;
    padding: 8px 10px;
}

.partner-separator {
    font-weight: 700;
    font-size: 16px;
    color: #1976d2;
    margin: 0 4px;
}

/* Agenda Section */
.agenda-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #e8f5e9 100%);
}

.agenda-preliminary {
    text-align: center;
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 400px;
}

.agenda-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.agenda-day {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid #2d7a2d;
}

.agenda-day:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.agenda-day.day-special {
    border-left-color: #ff6f00;
    background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
}

.agenda-day.day-full-width {
    grid-column: span 2;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(45, 122, 45, 0.08) 0%, rgba(25, 118, 210, 0.08) 100%);
    border-bottom: 1px solid rgba(45, 122, 45, 0.15);
}

.day-special .day-header {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1) 0%, rgba(255, 183, 77, 0.1) 100%);
    border-bottom-color: rgba(255, 111, 0, 0.2);
}

.day-number {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #2d7a2d 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 40px;
}

.day-special .day-number {
    background: linear-gradient(135deg, #ff6f00 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.day-info {
    flex: 1;
}

.day-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
    background: linear-gradient(135deg, #2d7a2d 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.day-special .day-title {
    background: linear-gradient(135deg, #ff6f00 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.day-date {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.day-content {
    padding: 15px 20px;
}

.day-description {
    font-size: 14px;
    line-height: 1.6;
    color: #424242;
    margin-bottom: 12px;
}


.day-celebration {
    margin-top: 12px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.08) 0%, rgba(255, 183, 77, 0.08) 100%);
    border-radius: 10px;
    border: 1px dashed rgba(255, 111, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.celebration-icon {
    font-size: 24px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.celebration-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.celebration-text strong {
    font-size: 14px;
    color: #ff6f00;
    font-weight: 700;
}

.celebration-text span {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Logistics Section */
.logistics-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(45, 122, 45, 0.03) 0%, rgba(25, 118, 210, 0.03) 100%);
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.logistics-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.logistics-card:nth-child(1) {
    border-top-color: var(--rural-green);
}

.logistics-card:nth-child(2) {
    border-top-color: var(--urban-blue);
}

.logistics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.logistics-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logistics-icon {
    font-size: 32px;
    line-height: 1;
}

.logistics-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.logistics-content {
    color: var(--light-text);
}

.logistics-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--light-text);
}

.logistics-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.logistics-list li {
    font-size: 15px;
    line-height: 1.8;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--light-text);
}

.logistics-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--rural-green);
    font-size: 20px;
    line-height: 1.5;
}

.logistics-card:nth-child(2) .logistics-list li::before {
    color: var(--urban-blue);
}

/* Bring Section */
.bring-section {
    padding: 60px 0;
    background-color: var(--white);
}

.bring-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
    border-left: 4px solid var(--primary-green);
}

.bring-list {
    list-style: none;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 24px;
}

.bring-list li {
    padding: 8px 0;
    color: var(--dark-text);
}

.bring-note {
    color: var(--light-text);
    font-size: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background-color: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-image {
    max-width: 100%;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.partner-logo:hover .partner-image {
    filter: grayscale(0%);
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-green);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 32px;
}

.contact-link {
    font-size: 20px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-green);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, 
        #e8f5e9 0%, 
        #c5e1a5 25%, 
        #90caf9 50%, 
        #ce93d8 75%, 
        #ffccbc 100%);
    color: var(--dark-text);
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(129, 199, 132, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(144, 202, 249, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 183, 77, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-eu {
    justify-content: center;
    align-items: flex-start;
}

.eu-logo {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-contact {
    align-items: flex-end;
    text-align: right;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item .contact-icon {
    font-size: 20px;
}

.footer-contact-item .contact-link {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-contact-item .contact-link:hover {
    background: linear-gradient(135deg, #2d7a2d 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-contact-item .contact-link:hover {
    opacity: 0.8;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-copyright p {
    font-size: 14px;
    color: var(--dark-text);
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
    }

    .title-main {
        font-size: 42px;
        letter-spacing: 0;
    }

    .date-numbers {
        font-size: 72px;
        letter-spacing: -3px;
    }

    .date-month {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .date-year {
        font-size: 36px;
        letter-spacing: 1px;
    }


    .dates-large {
        gap: 10px;
    }

    .hero-tagline {
        font-size: 24px;
        margin: 20px 0 15px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 1.7;
        padding: 0 15px;
    }

    .hero-description strong {
        font-size: 20px;
    }

    .cta-text {
        font-size: 16px;
        padding: 12px 30px;
    }

    .dates-section {
        padding: 60px 0;
    }

    .date-card {
        height: 400px;
    }

    .date-title {
        font-size: 36px;
    }

    .date-subtitle {
        font-size: 20px;
    }

    .date-icon,
    .back-icon {
        font-size: 60px;
    }

    .illustration-icon {
        font-size: 40px;
    }

    .date-illustration {
        gap: 15px;
        margin-bottom: 20px;
    }

    .date-card-front,
    .date-card-back {
        padding: 40px 20px;
    }

    .date-back-content h3 {
        font-size: 32px;
    }

    .back-text {
        font-size: 18px;
    }

    .detail-item {
        font-size: 16px;
        padding: 12px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillar-card {
        padding: 30px 20px;
    }

    .pillar-title {
        font-size: 20px;
        min-height: auto;
    }

    .pillar-description {
        min-height: auto;
    }

    .pillar-icon-wrapper {
        height: 60px;
        margin-bottom: 20px;
    }

    .pillar-icon.hand-drawn {
        width: 60px;
        height: 60px;
    }

    .location-card {
        flex-direction: column;
        text-align: center;
    }

    .venue-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .map-container {
        height: 350px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-intro {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .agenda-timeline {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .agenda-day.day-full-width {
        grid-column: span 1;
    }

    .day-header {
        padding: 15px;
        gap: 12px;
    }

    .day-number {
        font-size: 28px;
        min-width: 35px;
    }

    .day-title {
        font-size: 16px;
    }

    .day-content {
        padding: 15px;
    }

    .day-description {
        font-size: 13px;
    }

    .day-celebration {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .celebration-icon {
        font-size: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .venue-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .map-container {
        height: 350px;
    }

    .gallery-elegant {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .venue-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .venue-presentation {
        padding: 20px;
        margin-bottom: 30px;
    }

    .venue-description {
        font-size: 16px;
    }

    .map-container-full {
        height: 350px;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }

    .map-iframe-full {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .airports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        .airports-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .transport-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .how-to-get-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .airport-card {
        padding: 25px 20px;
    }

    .transport-card {
        padding: 25px 20px;
    }

    .transport-icon {
        font-size: 35px;
    }

    .transport-title {
        font-size: 18px;
    }

    .transport-description {
        font-size: 14px;
    }

    .transport-address {
        font-size: 15px;
    }

    .logistics-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .logistics-card {
        padding: 25px 20px;
    }

    .logistics-title {
        font-size: 20px;
    }

    .logistics-text {
        font-size: 15px;
    }

    .logistics-list li {
        font-size: 14px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 0 20px;
    }

    .partner-image {
        max-height: 110px;
    }

    @media (max-width: 768px) and (min-width: 481px) {
        .partners-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .partners-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .partner-image {
            max-height: 130px;
        }
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-eu {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .eu-logo {
        max-height: 100px;
    }
}
