/* Basic styling */
html {
	font-size: 16px;
    }
    
    body {
	font-family: "Montserrat Alternates", sans-serif;
	margin: 0;
	padding: 0;
	background-color: #0A0A0A;
	color: white;
	font-size: 1rem;
    }
    
    /* Animation */
    @keyframes slideUp {
	0% {
	    transform: translateY(100%);
	    opacity: 0;
	}
	100% {
	    transform: translateY(0%);
	    opacity: 100%;
	}
    }
    
    .container.slide-up {
	animation: slideUp 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }
    
    .container {
	max-width: 1800px;
	margin: 0 auto;
	padding: 20px;
	transform: translateY(100%);
    }
    
    /* Layout */
    .row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
    }
    

    img {
	max-width: 100%;
	height: auto;
    }

    .image-box {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	max-width: 100%;
	max-height: 400px;
    }
    
    .image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
    }
    
    .text-box {
	flex: 1;
	padding: 10px;
    }
    
    /* Typography */
    .headline {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	padding: 20px;
    }
    
    .headline_2 {
	font-size: 1.5rem;
	text-align: center;
	margin-top: 30px;
    }
    
    .sub_headline_center, .sub_headline_left, .sub_headline_right {
	font-size: 1.8rem;
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 30px;
    }
    
    .sub_headline_center_2 {
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	margin-top: 10px;
    }
    
    .text-content, .text-content-right, .text-content-center {
	font-size: 1.2rem;
	padding-top: 20px;
    }
    
    /* Specific elements */
    .headline-banner {
	position: relative;
	background-image: url('https://www.ordensschulen.at/images/Aussenaufnahmen/Ursulinen_Innsbruck.JPG');
	background-size: cover;
	background-position: center;
	padding: 0px;
	border-radius: 10px;
	margin-bottom: 60px;
    }
    
    .overlay {
	background: rgba(0, 0, 0, 0.5);
	padding: 40px;
	border-radius: 10px;
    }
    
    .footer {
	border-top: 0px solid #665e57;
	background-color: #665e57;
	border-radius: 8px;
	text-align: center;
	opacity: 0.5;
	padding: 3px;
	margin-top: 40px;
    }
    
    /* Buttons and links */
    .top-left-button {
	position: fixed;
	top: 25px;
	left: 25px;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 1em;
	z-index: 1000;
    }
    
    .top-left-button:hover {
	background-color: rgba(0, 0, 0, 0.9);
	color: rgb(218, 212, 196);
    }
    
    a {
	color: #ffd700;
	text-decoration: underline;
    }
    
    a:hover {
	color: #bf9002;
    }
    
    /* Eckdaten list */
    .eckdaten-list {
	list-style-type: none;
	padding: 0;
	margin-left: 20px;
    }
    
    .eckdaten-list li {
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
    }
    
    .eckdaten-label {
	font-weight: bold;
	min-width: 150px;
	margin-right: 10px;
	color: lemonchiffon;
    }
    
    .eckdaten-value {
	flex: 1;
    }
    
    /* Map container */
    .map-container {
	width: 100%;
	margin-top: 5px;
	border-radius: 20px;
	overflow: hidden;
    }
    
    .map-container iframe {
	width: 100%;
	height: 450px;
	border: none;
    }
    
    /* Utility classes */
    .vertical-spacing {
	margin-bottom: 2rem;
    }
    
    .mobile-separator {
	display: none;
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2);
	margin: 2rem 0;
    }

	.separator {
		width: 100%;
		height: 1px;
		background-color: rgba(255, 255, 255, 0.2);
		margin: 2rem 0;
		}
    .map-container iframe {
	max-width: 100%;
    }

    .fiesta-text {
	color: #111010;
	text-align: center;
	margin-top: 50px;
	font-weight: bold;
	font-size: 2em;
	background-color: lemonchiffon;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 768px) {
	.fiesta-text {
	    font-size: 1.5em;
	    padding: 15px;
	}
    }

    /* Ticket selection styles */
/* Ticket selection styles */
.full-width {
	width: 100%;
    }
    
    .ticket-selection {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
    }
    
    .ticket-option {
	flex: 1 1 calc(50% - 20px);
	box-sizing: border-box;
	margin-bottom: 20px;
	padding: 20px;
	border: 1px solid #665e57;
	border-radius: 5px;
	transition: background-color 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
    }
    
    .ticket-option h4 {
	margin: 0 0 10px 0;
	font-size: 1.2em;
    }
    
    .ticket-description {
	font-size: 0.9em;
	color: #ccc;
	margin-bottom: 10px;
    }
    
    .ticket-option input[type="number"] {
	width: 80px;
	padding: 8px;
	border: 1px solid #665e57;
	background-color: rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 1em;
    }
    
    .ticket-option:hover {
	background-color: rgba(255, 255, 255, 0.1);
    }
    
    .ticket-option.vip {
	border-color: #ffd700;
	background-color: rgba(255, 215, 0, 0.1);
    }
    
    .ticket-option.disabled {
	opacity: 0.5;
	pointer-events: none;
    }
    
    /* Responsive design for tickets */
    @media (max-width: 768px) {
	.ticket-option {
	    flex: 1 1 100%;
	}
    }
    
    .table-reservation-info {
	margin-bottom: 20px;
	padding: 20px;
	border: 1px solid #665e57;
	border-radius: 5px;

    }
	.table-reservation-info-link {
		color: #ffeb3b;
		transition: color 0.3s ease; 
		}

	.table-reservation-info a:hover {
        color: #bf9002; /* Setzt die Farbe des Links beim Hover auf einen dunkleren Farbton */
    }
    
    .buy-button {
	background-color: #ffd700;
	color: #111010;
	border: none;
	padding: 15px 30px;
	font-size: 1.2em;
	cursor: pointer;
	transition: background-color 0.3s;
	border-radius: 25px;
	width: 100%;
	margin-top: 20px;
    }
    
    .buy-button:hover {
	background-color: #ffeb3b;
    }
    
    /* Modal styles */
    .custom-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
    }
    
    .modal-content {
	background-color: #111010;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #665e57;
	border-radius: 5px;
	width: 80%;
	max-width: 500px;
	position: relative;
    }
    
    .close-btn {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
    }
    
    .close-btn:hover,
    .close-btn:focus {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
    }

    .info-button, .discount-button {
	background-color: #ffd700;
	color: #111010;
	border: none;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	cursor: pointer;
	margin-left: 5px;
	vertical-align: middle;
	padding: 0;
    }
    
    .info-button:hover, .discount-button:hover {
	background-color: #ffeb3b;
    }
    
    .info-button strong {
	font-weight: bold;
    }
    
    .discount-button {
	font-weight: bold;
	font-size: 14px;
    }

    .program-schedule {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 20px;
    }
    
    .program-item {
	display: flex;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 10px;
	border-radius: 5px;
    }
    
    .program-time {
	font-weight: bold;
	min-width: 100px;
	color: #ffd700;
    }
    
    .program-description {
	flex-grow: 1;
    }
    
    .program-disclaimer {
	margin-top: 20px;
	padding: 10px;
	background-color: rgba(255, 215, 0, 0.1);
	border: 1px solid #ffd700;
	border-radius: 5px;
	font-size: 0.9em;
	color: #ffd700;
	text-align: center;
    }
    
    /* Responsive design */
    @media (max-width: 768px) {
	html {
	    font-size: 14px;
	}
    
	body {
	    overflow-x: hidden;
	}
    
	.container {
	    padding: 10px;
	}
    
	.row {
	    flex-direction: column;
	    margin-left: 0;
	    margin-right: 0;
	}
    
	.image-box, .text-box {
	    width: 100%;
	    height: auto;
	    margin-bottom: 2rem;
	    padding-left: 0;
	    padding-right: 0;
	}
    
	.sub_headline_right, .text-content-right {
	    text-align: left;
	    margin-right: 0;
	}
    
	.eckdaten-list {
	    margin-left: 0;
	}
    
	.eckdaten-list li {
	    flex-direction: column;
	}
    
	.eckdaten-label {
	    margin-bottom: 0.5rem;
	}
    
	.mobile-separator {
	    display: block;
	}
    
	.map-container iframe {
	    height: 300px;
	}
    }