/*
Theme Name: Twenty Twenty-one child theme
Author: 
Description: This is Twenty Twenty-one Child Theme
Version: 1.0
Template: twentytwentyone

This is the child theme for Twenty Twenty-One theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the container */
    z-index: -1; /* Keeps the video behind your content */
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Add padding/margins as needed */
}

/* Target mobile devices in landscape orientation */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  /* Adjust the mobile logo */
  .mobile-logo img {
    max-width: 100px; /* Adjust this value as needed */
    width: auto;
    height: auto;
  }
  
  /* Optionally adjust the logo inside the menu if it's also shown on mobile */
  .menu .logo img {
    max-width: 100px; /* Adjust this value as needed */
    width: auto;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  /* Mobile Logo - align to right and set a fixed image size */
  .mobile-logo {
    text-align: right;
    padding-right: 15px; /* Optional: adjust padding as needed */
  }
  
  .mobile-logo a img {
    width: 50px;   /* Set the desired size */
    height: auto;  /* Maintain aspect ratio */
    display: inline-block;
  }
  
  /* Contact Info - force vertical stacking and right alignment */
  .contact-info {
    text-align: right; /* Align the entire container's content to the right */
    padding-right: 15px; /* Optional: adjust as needed */
  }
  
  /* Each contact link takes its own line */
  .contact-info a {
    display: block;
    text-align: right; /* Ensure each link’s content is right-aligned */
    margin-bottom: 5px;  /* Optional: spacing between phone and address */
  }
  
  /* Set the same image size for both phone and address icons */
  .contact-info a img {
    width: 50px;  /* Same as mobile logo image */
    height: auto;
    vertical-align: middle;
    margin-right: 5px; /* Space between the icon and text */
  }
  
  /* Adjust the text size if needed */
  .contact-info a span {
    font-size: 16px; /* Change as desired */
  }
}
