/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Layout Structure */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #ffffff;
}

/* Header */
.site-header {
    height: 60px;
    background: #ffffff;
}

/* Navigation */
.site-nav {
    height: 100px;
    background: #ffffff;
}

/* Main Layout */
.site-main {
    display: flex;
    flex: 1;
    margin-top: 50px;
    
}

/* Content */
.content {
    flex: 3;
    background: rgb(255, 255, 255);
}

/* Sidebar */
.sidebar {
    flex: 1;
    background: #ffffff;
    display: flex;
    padding: 10px;
    justify-content:  rgb(255, 255, 255);
}

/* Footer */
.site-footer {
    height: 60px;
    background: #ccc;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .sidebar {
        flex: 1.2;
    }
}

@media (max-width: 768px) {
    .site-main {
        flex-direction: column;
    }
    .sidebar {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .site-nav {
        height: 40px;
    }
    .site-header {
        height: 60px;
    }
    .sidebar {
        height: 150px;
    }
}


/* MENU */


/* Additionals */ 


.home{
  color: white;
  text-decoration: none;
  font-size: 20px;
}



#servicesContainers{
  padding: 10px;
}







/* NAV CONTAINER */
#nav_box {
    width: 100%;
    background: #000000;
    color: #fff;
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 9999;
    font-family: Arial, sans-serif;
   
}

/* NAV WRAPPER */
#nav_inner {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

#nav_brand {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

#nav_desktop_links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav_link {
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
}
.nav_link:hover {
    color: #00d0ff;
}

/* DESKTOP SUBMENU */
.submenu_box {
    position: relative;
}
.submenu_panel {
    position: absolute;
    top: 20px;
    left: 0;
    background: #111;
    border: 1px solid #222;
    display: none;
    flex-direction: column;
    width: 180px;
     overflow: scroll;
     height: 500px;
     overflow-x: hidden;
     
}
.submenu_item {
    padding: 10px 14px;
    font-size: 16px;
    cursor: pointer;
  
}
.submenu_item:hover {
    background: #222;
    color: #ffffff;
}

/* HAMBURGER */
#nav_ham {
    width: 32px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 6px;
}
.ham_line {
    width: 32px;
    height: 4px;
    background: #fff;
    border-radius: 3px;
}

/* MOBILE MENU */
#nav_drop {
    width: 100%;
    background: #111;
    display: none;
    flex-direction: column;
    padding: 10px 0 16px;
}

.drop_link {
    padding: 12px 22px;
    font-size: 20px;
    cursor: pointer;
}

.drop_link:hover {
    background: #222;
    color: #00d0ff;
}

/* MOBILE SUBMENU */
.mobile_submenu_panel {
    display: none;
    flex-direction: column;
    background: #1a1a1a;
    padding-left: 32px;
         overflow: scroll;
     height: 500px;
          overflow-x: hidden;
}

.mobile_submenu_item {
    padding: 10px 10px;
    font-size: 18px;
    cursor: pointer;
}
.mobile_submenu_item:hover {
    background: #222;
    color: #00d0ff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    #nav_desktop_links {
        display: none;
    }
    #nav_ham {
        display: flex;
    }
}












/* --- MAIN LINK STYLE (Desktop + Mobile) --- */
.submenu_item a,
.mobile_submenu_item a {
    display: block;
    padding: 10px 15px;
    margin: 0px 0;
    color: white;
    background: #4a4aff;          /* base color */
    border-radius: 6px;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
}

/* --- HOVER EFFECT --- */
.submenu_item a:hover,
.mobile_submenu_item a:hover {
    background: #111;
    transform: translateX(5px);
}


/* --- OPTIONAL: DIFFERENT COLORS ALTERNATING --- */
.submenu_item:nth-child(odd) a,
.mobile_submenu_item:nth-child(odd) a {
    background: #111;     /* soft red */
}

.submenu_item:nth-child(even) a,
.mobile_submenu_item:nth-child(even) a {
    background: #111;   /* modern blue */
}

/* Hover for alternates */
.submenu_item:nth-child(odd) a:hover,
.mobile_submenu_item:nth-child(odd) a:hover {
    background: #111;
}
.submenu_item:nth-child(even) a:hover,
.mobile_submenu_item:nth-child(even) a:hover {
    background: #111;
}




























/* navigation */
























  /* Container */
  #uniqueNavContainer {
    margin-top: 10px;
    overflow-x: auto;
    white-space: nowrap;
    background-color: #000000;
    padding: 10px 0;
    scrollbar-width: thin; /* Firefox */

  }

  /* Scrollbar for Webkit */
  #uniqueNavContainer::-webkit-scrollbar {
    height: 8px;
  }

  #uniqueNavContainer::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }

  #uniqueNavContainer::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  /* Navigation items */
  #navItemHome {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    margin: 0 5px;
    background-color: #444;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.2rem;
  }
  #navItemHome:hover { background-color: #555; transform: scale(1.05); }

  #navItemAbout {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    margin: 0 5px;
    background-color: #444;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.2rem;
  }
  #navItemAbout:hover { background-color: #555; transform: scale(1.05); }

  #navItemServices {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    margin: 0 5px;
    background-color: #444;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.2rem;
  }
  #navItemServices:hover { background-color: #555; transform: scale(1.05); }

  #navItemPortfolio {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    margin: 0 5px;
    background-color: #444;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.2rem;
  }
  #navItemPortfolio:hover { background-color: #555; transform: scale(1.05); }

  #navItemBlog {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    margin: 0 5px;
    background-color: #444;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.2rem;
  }
  #navItemBlog:hover { background-color: #555; transform: scale(1.05); }

  #navItemContact {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    margin: 0 5px;
    background-color: #444;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.2rem;
  }
  #navItemContact:hover { background-color: #555; transform: scale(1.05); }

  #navItemSupport {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    margin: 0 5px;
    background-color: #444;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.2rem;
  }
  #navItemSupport:hover { background-color: #555; transform: scale(1.05); }

  #navItemFAQ {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    margin: 0 5px;
    background-color: #444;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.2rem;
  }
  #navItemFAQ:hover { background-color: #555; transform: scale(1.05); }

  /* Responsive adjustments */
  @media (min-width: 1200px) {
    #navItemHome, #navItemAbout, #navItemServices, #navItemPortfolio,
    #navItemBlog, #navItemContact, #navItemSupport, #navItemFAQ {
      padding: 16px 32px;
    }
  }

  @media (max-width: 768px) {
    #navItemHome, #navItemAbout, #navItemServices, #navItemPortfolio,
    #navItemBlog, #navItemContact, #navItemSupport, #navItemFAQ {
      padding: 14px 28px;
      font-size: 1.1rem;
    }
  }





































  /* content *?/





/* Container for all sections */
#servicesContainer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 15px;
}

/* Each service card */
.serviceCard {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

/* Images */
.serviceImage {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Zoom effect on hover */
.serviceCard:hover .serviceImage {
  transform: scale(1.05);
}

/* Overlay text */
.serviceText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .serviceText {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .serviceText {
    font-size: 0.9rem;
  }
}










  /* Container for all albums 
#albumContainer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: #000000;
  color: white;
}
*/
/* Each category container 
.categoryBlock {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
*/
/* Category title 
.categoryTitle {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
*/
/* Photo grid for each category 
.photoGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
*/

/* Link wrapper for each block
.blockLink { 
  text-decoration: none;
  flex: 1 1 300px;  
  max-width: 300px 
  position: relative;  needed for square aspect ratio 
}
*/


/* Square block 
.photoItem {
  width: 100%;
  padding-top: 100%; /* 1:1 aspect ratio
  background-color: #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, background-color 0.3s;
}
*/ 
/* Text inside block 
.photoItem span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 20px;
  color: #333;
  text-align: center;
}

.photoItem:hover {
  transform: scale(1.05);
  background-color: #aaa;
}
*/
/* Responsive adjustments 
@media (max-width: 768px) {
  .blockLink {
    flex: 1 1 45%;
    max-width: none;
  }
}
*/
/*
@media (max-width: 480px) {
  .blockLink {
    flex: 1 1 100%;
  }
}

*/
































/* aside */

 /* Aside container */
  #uniqueAside {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background-color: #000000;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 10px;
  }

  /* Links container */
  #uniqueLinksContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* Individual link styles */
  .uniqueLinkItem {
    text-decoration: none;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    background-color: #413d3d;
    transition: background-color 0.3s, transform 0.2s;
  }

  .uniqueLinkItem:hover {
    background-color: #353131;
    transform: translateX(5px);
  }

  /* Responsive adjustments */
  @media (max-width: 500px) {
    #uniqueAside {
      width: 100%;
      padding: 15px;
    }

    #uniqueLinksContainer {
      flex-direction: column;
    }
  }


/* Footer */

/* Container for footer */
#studioFooter {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, sans-serif;
}

/* Footer sections */
.footer-section {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Contact info */
#contactInfo {
  flex: 1 1 250px;
  margin: 10px;
}

#contactInfo h3 {
  margin-bottom: 15px;
}

#contactInfo p {
  margin: 5px 0;
  line-height: 1.6;
}

/* Social links */
#socialLinks {
  flex: 1 1 200px;
  margin: 10px;
}

#socialLinks h3 {
  margin-bottom: 15px;
}

#socialLinks a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

#socialLinks a:hover {
  color: #ffcc00;
}

/* Map container */
#mapContainer {
  flex: 1 1 300px;
  margin: 10px;
}

#mapContainer iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 8px;
}

/* Bottom copyright */
#footerBottom {
  border-top: 1px solid #444;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-section {
    flex-direction: column;
    align-items: center;
  }

  #mapContainer iframe {
    height: 180px;
  }
}



/* slide show */

.c2 {display: none;}
.c3 {vertical-align: middle; height: 300px;}

/* Slideshow container */
.c4 {
  max-width: 700px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.c5, .c6 {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Right button */
.c6 {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Hover */
.c5:hover, .c6:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.c7 {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text */
.c8 {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Dots */
.c9 {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.c10 { background-color: #717171; }

/* Fade animation */
.c11 {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Responsive text */
@media only screen and (max-width: 300px) {
  .c5, .c6, .c7 {font-size: 11px;}
}