* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #74EBD5, #9FACE6);
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.header, .content, .footer { 
    position: relative; z-index: 1; /* Ensure these elements are above the background shapes */ 
}

.header {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.logo {
    max-width: 1000px;
    height: auto;
    margin-left: 100px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
    border-bottom: 3px solid #D5C8C8;
    border-top: 3px solid #D5C8C8;
    background-color: #ffffff;
    height: 35px;
    width: 100%;
    padding: 5px 0;
    margin: 0;
}

.navbar .nav-link {
    text-decoration: none;
    font-size: 16px;
    color: #1E2022;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Outfit', Verdana, Lucida;
    margin-top: 1px;
    background: none;
    border: none;
}

.navbar .nav-link:hover {
    color: #FF6347;
    transform: scale(1.1);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 20px;
    gap: 20px;
    min-height: calc(100vh - 180px);
}

.content p {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}
.ticket-container {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    max-width: 1600px; 
    font-family: Arial, sans-serif;
}

.ticket-container h1 {
    font-size: 3.5em; 
    margin-bottom: 15px;
}

.ticket-container p {
    font-size: 1.5em; 
    color: #555;
    margin-bottom: 30px;
    max-width: 1500px;
}

.ticket-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; 
    margin: 20px auto;
    max-width: 1600px; 
}

.ticket-card {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    flex-basis: calc(48% - 30px); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10px; 
    margin: 20px;
}

.ticket-card img {
    width: 100%; 
    height: auto; 
    max-height: 700px; 
    object-fit: contain; 
    display: block;
}

.ticket-card:hover {
    transform: scale(1.1); 
}



.button {
    display: inline-block;
    padding: 30px 40px; /* Adjust the size of the button */
    background-color: #ffffff; /* White background */
    color: #4bcbd4; /* Dark text color for contrast */
    border: 2px solid #cccccc; /* Light border for a subtle look */
    border-radius: 30px; /* Oblong shape */
    text-align: center;
    font-size: 35px; /* Adjust font size */
    font-family: Arial, sans-serif; /* Ensure legible font */
    font-weight: bold;
    text-decoration: none; /* Remove underline for links */
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for a lifted effect */
    transition: all 0.3s ease; /* Smooth hover effect */
}

.button:hover {
    background-color: #f8f8f8; /* Light gray background on hover */
    border-color: #999999; /* Slightly darker border on hover */
    color: #000000; /* Darker text color on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}

.button:active {
    background-color: #e6e6e6; /* Even darker gray on click */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Reduced shadow for pressed effect */
    transform: scale(0.98); /* Slight shrink effect on click */
}
 


.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    background-color: white;
    border-top: 3px solid #D5C8C8;
    font-family: 'Inter', Verdana;
    font-size: 0.9rem;
    color: #1E2022;
    width: 100%;
    margin-top: auto;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 5px;
    margin-top: 3px;
}

.social-media img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease-in-out;
}

.footer p {
    margin-top: 1px;
}

.main {
    position: relative; /* Ensure positioning context for child elements */
    width: 100%;
    height: 100vh;
}

.background-shapes {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Ensure shapes stay behind content */
    overflow: hidden;
    pointer-events: none; /* Prevent shapes from blocking interactions */
}

.header, .content, .footer {
    position: relative; 
    z-index: 1; /* Ensure these elements are above the background shapes */
}

/* Ensure content has a higher z-index */
.header, .content, .footer {
    z-index: 1; /* These elements will stay in front of the shapes */
}

.shape {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.25); 
    background: none;
    border-radius: 0; 
}

/* Circles */
.shape.circle {
    border-radius: 50%;
}

/* Squares */
.shape.square {
    border-radius: 0;
}

/* Triangles */
.shape.triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(255, 255, 255, 0.25); /* Semi-transparent triangle */
}


@media (max-width: 1100px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .content {
        padding: 10px;
    }

    .logo {
        max-width: 800px;
        height: auto;
        margin-left: 50px;
    }

    .shape {
        width: 60px; /* Adjust size for smaller screens */
        height: 60px;
    }

    .ticket-container h1 {
        font-size: 2.5em;
    }

    .ticket-container p {
        font-size: 1.5em;
    }

    .ticket-grid {
        gap: 10px;
        margin: 10px auto;
    }

    .ticket-card {
        flex-basis: 85%;
        margin: 10;
    }

    .button {
        padding: 30px 40px; /* Adjust the size of the button */
        font-size: 30px;
        border-radius: 30px; 
    }


    

}

@media (max-width: 480px) {
    .navbar .nav-link {
        font-size: 10px;
        padding: 3px;
    }

    .navbar {
        gap: 3px;
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-link {
        font-size: 10px;
        padding: 1px;
    }

    .content {
        align-content: center;
        justify-content: center;
        gap: 15px;
        padding: 15px;
    }

    .logo {
        max-width: 500px;
        height: auto;
        margin-left: 50px;
    }


    .footer {
        padding: 5px;
        font-size: 0.8rem;
    }

    .social-media img {
        width: 20px;
        height: 20px;
    }

    .shape {
        border-width: 1px; 
        width: 50px; 
        height: 50px;
        
    }
    .ticket-container h1 {
        font-size: 1.5em;
    }

    .ticket-container p {
        font-size: 0.9em;
    }

    .ticket-card {
        flex-basis: 90%;
        margin: 5px;
    }

    .button {
        padding: 10px 20px; /* Adjust the size of the button */
        font-size: 20px;
        border-radius: 20px; 
    }
    
}



