.merriweather-light {
  font-family: "Merriweather", serif;
  font-weight: 300;
  font-style: normal;
}

.merriweather-bold {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-style: normal;
}


/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    background-color: black;
    text-align: center;
    height: 100%;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: #282c34;
    padding: 20px 0;
}

.header-container {
    display: flex;
    flex-direction: column; /* Align header elements in a column */
    justify-content: center; /* Center the header text */
    align-items: center;
    width: 100%; /* Full width */
    margin: 0 auto;
    color: white;
}

h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: 500;
    color: gold; /* Gold color for the text */
    text-transform: uppercase; /* Make "VIOLINION" uppercase */
}

.subheading {
    font-size: 1.5rem; /* Smaller size for "Travel" */
    margin: 5px 0; /* Add some spacing above and below */
    color: gold; /* Change color of "Travel" to gold */
}

.contact-link {
    font-size: 1rem;
    color: #f9f9f9;
    text-decoration: none;
    border: 2px solid #f9f9f9;
    padding: 8px 16px;
    border-radius: 5px;
    transition: 0.3s;
    position: absolute;
    right: 20px;
    top: 20px;
}

.contact-link:hover {
    background-color: #f9f9f9;
    color: #282c34;
}

/* Video Section Styles */
.video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Black background for contrast */
    overflow: hidden; /* Hide overflow */
    height: auto;
    width: auto;
}

.video-container video {
    max-width: 100%;
    height: auto;
    max-height: 100vh; /* Ensure video doesn't exceed viewport height */
    border-radius: 50px; /* Set border radius */
margin-top:8px;
}

/* Custom Sound Button Styles */
.video-control {
    position: absolute;
    top: 20px;
    right: 20px; /* Align to the top right corner */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: gray;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 2;
}

.video-control:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Darker on hover */
}

button#playPauseButton {
    left: 20px;
    width: min-content;
    color: gold;
}

/* Media Queries for Responsiveness */

/* For small screens (tablets, mobile devices) */
@media (max-width: 768px) {
    .video-container {
        position: relative;
        height: 100vh; /* Full height of the viewport */
        width: 100vw; /* Full width of the viewport */
    }

    .video-container video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Makes the video cover the entire container */
        transform: translate(-50%, -50%);
    }

    .video-control {
        top: 10px;
        right: 10px;
        font-size: 18px;
    }
}

/* For smaller mobile devices */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .subheading {
        font-size: 1.2rem; /* Adjust size for smaller screens */
    }

    .contact-link {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .video-control {
        top: 5px;
        right: 5px;
        font-size: 18px;
        padding: 8px 16px;
    }
}

.blink_me {
  animation: blinker 1s linear infinite;
color:gold;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}


/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column; /* Stack number and icons vertically */
    align-items: center; /* Center align */
    margin-top: 10px;
}

.contact-number {
    color: white; /* Text color for the number */
    margin-bottom: 5px; /* Space between number and icons */
    font-size: 1rem; /* Font size for the number */
}

.social-icons {
    display: flex; /* Align icons in a row */
    gap: 20px; /* Space between icons */
}

.icon-link {
    display: inline-block; /* Make the icon clickable */
}

.social-icon {
    width: 30px; /* Width of the icons */
    height: 30px; /* Height of the icons */
}

