/*region Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'inky-trail';
    src: url('assets/fonts/inky-trail.ttf') format('truetype'); /* Provide the path to the .ttf file */
    font-weight: normal;
    font-style: normal;
}
/* endregion */

/*region Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin Sans', Semi-gras, serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* endregion */

/*region Header section*/
.hero {
    background: url('assets/images/bitter_snowflake.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: min(150px, 5vh);
}

.hero-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

.header-menu ul {
    list-style: none;
    display: flex;
}

.header-menu li {
    margin-left: 15px;
    margin-right: 15px;
}

.header-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.header-menu a:hover {
    color: #6bb2ec;
}

.hero-content h1 {
    font-size: 4em;
}

.hero-content p {
    font-size: 1.5em;
}

.hero-title {
    font-family: 'inky-trail', serif; /* Change to the font of your choice */
    font-size: 4em; /* Adjust font size */
    font-weight: 100; /* Make it bold */
    color: white; /* Font color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optional: Add shadow for better readability */
    margin: 0;
    letter-spacing: 5px; /* Optional: Space between letters */
}


/* Social Menu on Top of Header */
.social-menu {
    display: flex; /* Aligns the items in a row */
    justify-content: center; /* Centers the icons horizontally */
}

/* Styling for the Unordered List */
.social-menu ul {
    list-style: none; /* Removes default bullets */
    display: flex; /* Aligns the icons horizontally */
}

/* Styling for Each List Item */
.social-menu li {
    margin: auto 15px; /* Space between the icons */
}

.social-menu img {
    width: 30px; /* Adjust the size */
    height: auto;
    transition: transform 0.3s ease;
}

.social-menu a:hover img {
    transform: scale(1.2); /* Hover effect for image icons */
}

/*endregion*/

/*region Tour Dates Section*/
.tour-section {
    background: url('assets/images/tour.jpg') no-repeat center center/cover;
    height: 100vh;
}

.tour-section-container {
    display: flex;
    justify-content: end;
    width: 80vw;
    padding-top: min(150px, 10vh);
    margin: 0 auto;
}

.tour-section-column {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 25px;
}

.tour-dates-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 590px;
    padding-right: 10px;
    max-height: 70vh; /* Limits height to 70% of the viewport height */
    overflow-y: auto;
}

.tour-date-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    color: black;
}

.tour-date-item:hover {
    transform: translateY(-5px);
}

.tour-date-info h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.tour-date-info p {
    font-size: 1.2em;
    padding-right: 10px;
    color: #555;
}

.buy-tickets-btn {
    background-color: #c96a03;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.buy-tickets-btn:hover {
    background-color: #a7471b;
}

/*endregion*/

/*region Video section*/
.video-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Fullscreen Video */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the entire background */
    z-index: -1;
}

/* Video Overlay Content */
.video-overlay-content {
    position: absolute;
    top: 33%;
    width: 80vw;
    z-index: 2;
}

.video-overlay-content h2 {
    font-size: 2.5em;
    color: #ffffff;
    z-index: 2;
}

/* Grid layout for videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    column-gap: 20px; /* Adjusts the space between columns */
    justify-items: center;
    z-index: 2;
    width: 80vw; /* 80% of the viewport width */
}

.video-item {
    width: 100%;
    height: 100%;
    border: none; /* Remove borders if necessary */
}

.video-item iframe {
    width: 100%;
    border-radius: 0;
}

/*endregion*/

/*region Shop Section */
.section-shop {
    background: url('assets/images/shop-bg-title.jpg') no-repeat left center/cover;
    display: flex;
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.rotated-text {
    transform: rotate(332deg);
    transform-origin: left top; /* Optional: adjust origin point for rotation */
    display: inline-block; /* Ensures the element is treated like a block for proper rotation */
    font-size: 6em;
    margin-bottom: 40px;
    color: #242323;
    font-family: 'inky-trail', serif; /* Change to the font of your choice */
    position: relative;
    top: 360px;
    left: 100px;
    letter-spacing: 8px; /* Optional: Space between letters */
}

.rotated-text.with-background {
    margin-top: -30px;
    padding-top: 30px;
    margin-left: -20px;
    padding-left: 20px;
    height: 120px;
    min-width: 350px;
    z-index: -1;
}

.shop-items {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.shop-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    width: 100%; /* Make items full-width on small screens */
    max-width: 420px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.shop-item-image {
    width: 100%;
    height: auto; /* Ensures images maintain aspect ratio */
    object-fit: cover;
    border-radius: 4px; /* Adds a slight border radius */
}

.slick-dots {
    color: #000000; /* Style the dots */
    transform: scale(1.5);
}

.shop-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.shop-item h3 {
    font-size: 2em;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.shop-item-description {
    font-size: 1.5em;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.shop-item-price {
    font-size: 1.7em;
    color: #333;
    margin: 15px 0;
}

.shop-item-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1.5em;
}

.shop-item-button:hover {
    background-color: #454343;
}

.slick-arrow {
    display: none !important;
}

/*endregion*/

/* region Contact Section */
.contact-section {
    background: url('assets/images/contact.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding: 50px;
    background-color: #fff;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    width: 100%;
}

.contact-section h2 {
    font-size: 2.5em;
    color: #000000;
}

.contact-section input, .contact-section textarea {
    padding: 10px;
    font-size: 1em;
    font-family: 'josefin sans', serif;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

.contact-section button {
    padding: 10px 20px;
    background-color: #000000;
    font-family: 'josefin sans', serif;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-section button:hover {
    background-color: #4c1515;
}

.contact-section .contact-feedback {
    color: white;
    text-align: center;
}
/*endregion*/

/* region Footer */
.footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.25);
    color: #000000;
    text-align: center;
    padding: 10px 0;
    z-index: 10; /* Ensures it stays above content */
    margin-top: -36px;
    height: 36px;
}

.footer p {
    margin: 0;
}

/*endregion*/

/* region Responsive Design */
@media (max-width: 1800px) {
    .shop-item {
        max-width: 300px;
    }
}

@media (max-width: 1350px) {
    .rotated-text.with-background {
        display: none;
    }
}

@media (max-width: 1300px) {
    .shop-item {
        max-width: 250px;
    }

    .hero-title {
        top: 10px; /* Adjust vertical position */
        text-align: center;
        transform: scale(1.5);
    }

    .hero-content {
        margin-top: 25px;
    }

    .hero-row {
        flex-direction: column;
    }

    .social-menu, .site-header {
        z-index: 1;
    }
}

@media (max-width: 1024px) {
    .video-overlay-content {
     display: none;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium devices */
        transform: scale(1.2); /* Adjust scale */
    }

    .rotated-text {
        font-size: 5em; /* Adjust size for tablet screens */
        top: 300px; /* Adjust vertical position */
        left: 50px; /* Adjust horizontal position */
    }
}

@media (max-width: 860px) {
    .section-shop {
        padding: 40px 10px; /* Reduce padding on smaller screens */
        height: auto; /* Allow section to adjust height */
    }

    .shop-item {
        width: 100%; /* Full width for smaller devices */
    }

    .shop-items {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
        left: 0;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {

    .social-menu {
        flex-direction: column; /* Stack icons vertically */
        top: -200px; /* Adjust position */
        right: 0; /* Center it */
        transform: scale(0.7);
    }

    .header-menu {
        flex-direction: column; /* Stack menu items vertically */
        top: -200px; /* Adjust position */
        left: 0; /* Center it */
        transform: scale(0.7);
    }

    .header-menu a {
        display: none;
    }

    .tour-dates-grid {
        justify-items: center;
        align-items: center; /* Center items */
        left: 0;
    }

    .tour-section {
        padding: 20px; /* Reduced padding for smaller screens */
        justify-items: center;
    }

    .tour-title {
        font-size: 2em; /* Smaller font size */
        text-align: center;
        margin: 0;
    }

    .tour-date-item {
        top: 0; /* Reset top positioning */
        right: 0; /* Reset position */
        padding: 15px; /* Adjust padding */
    }

    .tour-date-info h3 {
        font-size: 1.2em; /* Smaller font size */
    }

    .tour-date-info p {
        font-size: 1em; /* Smaller font size */
    }

    .buy-tickets-btn {
        padding: 8px 15px; /* Smaller button padding */
        align-items: center; /* Center items */
        justify-items: center;
        left: 0;
    }

    .video-item iframe {
        height: 250px; /* Smaller video height */
    }

    /* Mobile responsiveness */
    .video-grid {
        grid-template-columns: 1fr; /* Stack videos on smaller screens */
        transform: scale(1); /* No scale on small devices */
    }

    .contact-section {
        padding: 30px; /* Reduce padding */
    }

    .contact-section h2 {
        font-size: 2em; /* Adjust font size for smaller screens */
    }

    .contact-section input,
    .contact-section textarea {
        padding: 8px; /* Adjust padding */
        font-size: 0.9em; /* Adjust font size */
    }

    .contact-section button {
        padding: 8px 15px; /* Adjust button size */
    }

    .checkout-container {
        padding: 15px; /* Reduce padding in checkout container */
    }
}


/* Smaller mobile screens */
@media (max-width: 480px) {
    .social-menu {
        padding: 5px 0; /* Less padding */
    }

    .header-menu a {
        display: none;
    }

    .hero-title {
        font-size: 2em; /* Smaller title size */
        letter-spacing: 3px; /* Less spacing */
    }

    .hero-content h1 {
        font-size: 2em; /* Smaller size for h1 */
    }

    .hero-content p {
        font-size: 1em; /* Smaller paragraph size */
    }

    .tour-section h2 {
        font-size: 1.5em; /* Even smaller font size for very small screens */
    }

    .tour-date-item {
        flex-direction: column; /* Stack elements vertically */
        align-items: flex-start; /* Align to start */
    }

    .tour-date-info {
        margin-bottom: 10px; /* Space between elements */
    }

    .video-grid {
        grid-template-columns: 1fr; /* Keep 1 column */
        margin-top: 30px; /* Adjust margin for smaller screens */
    }

    .video-item {
        max-width: 100%; /* Ensure full width on extra small devices */
    }

    .video-item iframe {
        height: 200px;
    }

    .rotated-text {
        display: none;
    }

    .shop-item {
        width: 100%; /* Full width for items */
        margin: 0 10px; /* Add margin for spacing */
    }

    .contact-section {
        padding: 20px; /* Further reduce padding */
    }

    .contact-section h2 {
        font-size: 1.5em; /* Further adjust font size */
    }

    .contact-section input,
    .contact-section textarea {
        padding: 6px; /* Further adjust padding */
        font-size: 0.8em; /* Further adjust font size */
    }

    .contact-section button {
        padding: 6px 12px; /* Further adjust button size */
    }
}

/*endregion*/