/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #f8f7f7;
  --primary-color:                #F8CB2E;
  --secondary-color:              #2f2d2b;
  --section-bg-color:             #ecf0f3;
  --custom-btn-bg-color:          #EE5007;
  --custom-btn-bg-hover-color:    #c01f27;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --body-font-family:             'Outfit', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  background-image: url('media/bhutan.png');
  background-repeat: repeat;
  background-size: 150px;
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}
/*---------------------------------------
Registation     
-----------------------------------------*/
.custom-box {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  min-height: 100px; /* Ensure consistency */
  background:  #f7efe8; /* Three-color gradient */
  border: 2px solid rgba(0, 0, 0, 0.2); /* Slightly dark border */
  border-radius: 8px; /* Rounded corners */
  padding: 10px;
  color: #333; /* Dark text for contrast */
  text-align: center;
}
.toggle-password {
  font-size: 1.5rem;
  color: #6c757d;
  cursor: pointer;
}
/* Styling for links inside .custom-box */
.custom-box h6 a,
.custom-box strong a,
.checkbox-label {
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  color: #fff; /* White text */
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Soft shadow for better visibility */
}

/* Add hover effect */
.custom-box:hover {
  background: #e98440; /* Reverse gradient on hover */
  transform: scale(1.02); /* Slight zoom effect */
  transition: all 0.3s ease-in-out;
}

/* Styling for checkbox container */
.checkbox-container {
  background: rgba(255, 255, 255, 0.3); /* Light background for contrast */
  padding: 5px;
  border-radius: 5px;
}

/*---------------------------------------
IMAGE        
-----------------------------------------*/
.image-wrap {
position: relative; /* Use relative positioning for the container */
width: 100%;
height: 100vh; /* Full viewport height */
overflow: hidden; /* Hide overflow if images are larger than the container */
z-index: 1; /* Adjust z-index as needed */
}

.custom-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover; /* Ensure images cover the container */
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.creative {
  color: #ff7700 !important;
  font-size: 30px; /* Adjust the value to your preference */
}
.bhutan {
    color: black !important;
    font-size: 30px; /* Adjust the value to your preference */
}
.navbar{
  box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.1); /* Soft shadow */
}
.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-item .nav-link {
  display: inline-block;
  color: var(--secondary-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: #FFA500;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 50px;
  height: 55px;
  outline: none;
  display: flex; /* Use Flexbox */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
}
hero-section

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler {
  border-color: black; /* Optional: change the border color */
}

/*---------------------------------------
  Home
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px); /* adjust as needed */
  background-image: url('media/photo.jpeg');
  background-size: 100% 100%;       /* Scales image to cover container */
  background-position: center;   /* Centers the image */
  background-repeat: no-repeat;
}

/* Watermark text */
.hero-section::after {
  content: "Photo Courtesy: DoMCIIP";
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 11px;
  color: rgba(238, 234, 234, 0.911); /* subtle white text */
  pointer-events: none; /* so it doesn't interfere with clicks */
  user-select: none; /* prevent copying */
}

.text-pink {
  color: var(--white-color);
  text-transform: uppercase;
}

.date-wrap i,
.location-wrap i {
  color: white !important;
}

.custom-btn {
  border-radius: 30px !important; /* Slightly rounded corners (adjust as needed) */
  background-color: #ED7014 !important; /* Pink background color */
  color: white !important; /* Text color */
  padding: 15px 30px; /* Adjusted padding for better proportions */
  transition: all 0.3s; /* Smooth transition */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  border: none; /* Remove default border */
  font-size: 16px; /* Adjust font size as needed */
  cursor: pointer; /* Change cursor to pointer on hover */
}

.custom-btn:hover {
  background-color: #ED7014 !important; /* Darker pink on hover */
  color: white !important; /* Text color on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
  transform: translateY(-2px); /* Slight lift effect on hover */
}

.hero-section .section-overlay {
  z-index: auto;
  opacity: 0.45;
  background-color: rgba(0, 0, 0, 0.5); /* Add an overlay to make text more readable */
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}
.hero-section .container .hero-register {
  margin-top: 305px;
  }
.background-color{
  background-color: #d8d8d863;
}
/*---------------------------------------
  ABOUT              
-----------------------------------------*/
/* General Styles for .services-info */
.services-info {
background-color: #ffffff; /* Light white background with transparency */
border-radius: 5px; /* Rounded corners */
padding: 40px; /* Add some padding inside the box */
margin-bottom: 5px; /* Space between the boxes */
border: 1px solid rgba(20, 1, 1, 0.2); /* Light white border */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 15px rgba(255, 17, 0, 0.5);
}

/* Styles for the About Section */
.about-section {
background: linear-gradient(45deg, #704010, #f1c18a, #f66646); /* Mixing three colors */
background-repeat: no-repeat; /* Prevent background image from repeating */
background-size: cover; /* Ensure the background covers the entire section */
position: relative; /* Relative positioning for child elements */
}

/* Wrapper for About Text */
.about-text-wrap {
position: relative; /* Relative positioning */
border-radius: 5px; /* Rounded corners */
padding: 12px; /* Add some padding inside the box */
}

.about-text-wrap .about-image {
  height: 410px;        /* or any height you want */
  width: auto;          /* maintain aspect ratio */
  object-fit: cover;    /* ensures image fills the box, cropping if necessary */
  border-radius: 5px 5px 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 15px rgba(255, 17, 0, 0.5);
}
/* Icon Styles in About Section */
.about-text-icon {
background: var(--primary-color); /* Use primary color for the icon background */
border-radius: 100%; /* Circular shape */
font-size: var(--h3-font-size); /* Set font size using CSS variable */
width: 70px; /* Fixed width */
height: 70px; /* Fixed height */
line-height: 70px; /* Center text vertically */
text-align: center; /* Center text horizontally */
}

.about-text-info {
  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 10px; /* Smaller corner rounding */
  border: 1px solid rgba(209, 213, 219, 0.2);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 11px 12px; /* Reduced margin */
  padding: 20px; /* Reduced padding */
}

.image-watermark {
  position: absolute;
  bottom: 408px;
  right: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.905);
  pointer-events: none;
  user-select: none;
}

/*------------------------------
Login
--------------------------------*/
.custom-form {
  background: #fff; /* White background */
  padding: 30px;
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.custom-form h5 {
  color: #333; /* Darker text for contrast */
}

.form-group label {
  font-weight: 600; /* Make labels slightly bold */
  color: #555;
}

.form-control {
  border-radius: 8px; /* Rounded input fields */
  border: 1px solid #ddd; /* Subtle border */
  padding: 10px;
}

.btn-primary {
  background: #28a745; /* Green login button */
  border: none;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
}

.btn-primary:hover {
  background: #218838; /* Slightly darker green on hover */
}

.text-center a {
  color: #f9f6f3; /* Link color */
  text-decoration: none;
}

.text-center a:hover {
  text-decoration: underline;
}
/* Styling for input fields with icons */
.input-with-icon {
  padding-left: 40px; /* Space for the icon */
}

/* Positioning icons inside input fields */
.input-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #090909; /* Light gray color */
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
  background-color: #fff;
  padding: 1rem;
  font-size: 0.9rem;
  color: #6c757d;
  background-image: url('../media/bhutan.png'); /* Adjusted path */
  background-repeat: repeat;
  background-size: 150px; /* Fixed size instead of percentage */
  background-attachment: fixed;
  margin-bottom: 1px;
}


/*---------------------------------------
  Artist               
-----------------------------------------*/
/* Container for the artist boxes */
.artists-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between boxes */
  justify-content: center;
}

/* Individual artist box */
.artist-box {
  flex: 1 1 calc(25% - 40px); /* Four per row, minus gap */
  max-width: calc(25% - 40px);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 15px rgba(0, 123, 255, 0.5);
}

/* Image wrapper */
.artists-image-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

/* Image styling */
.artists-image .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* Fallback emoji block */
.fallback-emoji {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fallback-emoji span {
  font-size: 80px;
  color: white;
  user-select: none;
}

/* Thumb container */
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

/* Hover overlay */
.artists-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(241, 193, 137, 0.7); /* Dark overlay */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 10px;
}

.artists-hover:hover {
  opacity: 1;
}

/* Hover text */
.artists-hover p {
  text-align: center;
  margin: 0;
  color: #000a95;
  font-size: 1rem;
}
/*---------------------------------------
  Event          
-----------------------------------------*/
.event-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(to right, #f8f9fa, #eca753);
    border-radius: 20px;
    color: #111112; /* Light text color */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Ensures rounded corners are visible */
  }

  .event-table th,
  .event-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #d96646; /* Light border between rows */
  }
  .event-table small {
    font-size: 0.8em; /* Smaller font size */
    color: #1a1919; /* Light gray color */
    display: block; /* Ensure it appears on a new line */
  }

  .event-table th {
    background-color: #121211; /* Slightly darker background for headers */
    font-weight: bold;
  }

  .event-table tbody tr:hover {
    background-color: #e3dfdd; /* Hover effect for rows */
  }

  .event-table tbody tr:last-child td {
    border-bottom: none; /* Remove border from the last row */
  }

  .event-table td p {
    margin: 0; /* Remove default paragraph margin */
  }

  .text-center {
    text-align: center;
  }

  /* Style for the title box with background image */
  .title-box {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 50px 20px; /* Adjust padding to suit the title's positioning */
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* Style for the title text */
.title-box h2 {
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional: Adds text shadow for better visibility */
    margin: 0; /* Ensure no extra space around the title */
}

/* Event Table Styles */
.event-table {
    width: 100%;
    border-collapse: collapse;
}

.event-table th, .event-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.event-table th {
    background-color: #FF7F32;
    color: white;
}

.event-table tr:nth-child(even) {
  background: linear-gradient(to right,#eca753,  #f8f9fa);
}

.event-table tr:hover {
    background-color: #ddd;
}

/* Image styling for the event */
.event-image {
    width: 200px; /* You can adjust this value */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
  

/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  background: linear-gradient(to right, #4d4d4e, #dda45f);
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
    filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #e8bb66 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7880a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}
.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: #08bef1;
  position: relative;
  z-index: 2;
}


/*---------------------------------------
    Post            
-----------------------------------------*/
/* Update to orange color for borders */
.artists-thumb{
  background-color: #ffffff;
  height: 100%;
}
.post-thumb {
  border: 5px dotted #d15e0c; /* Orange color */
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

/* Small text under the heading, adjust font and margins */
.post-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
  color: #FF6347; /* Soft Tomato color for a subtle look */
}
a {
  text-decoration: none !important;
  color: #000000 !important;
}
a:hover {
  color: #FF6347 !important; /* Example hover color, you can change it as needed */
  text-decoration: none; /* Ensure no underline on hover */
}
/* Two-column layout for the post list */
.post-list {
  column-count: 2;
  padding-left: 20px;
  color: #333333; /* Dark text color for better readability */
  background-color: #ffffff;
}

/* Adjust the spacing and margin between items */
.post-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* Styling for the post tag circle, with an orange background */
.post-tag {
  background-color: #d57d19; /* Orange color */
  border-radius: var(--border-radius-large);
  color: #ffffff;
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: -10px;
  right: 0;
  margin: 20px;
}

/* Adjust the size of the text in the post tag */
.post-tag span {
  font-size: 180%;
  line-height: normal;
  color: #ffffff; /* Ensuring text remains white */
}

/* Styling for links with no underline on hover */
.post-thumb .link-fx-1 {
  color: #FFA500; /* Orange color */
  text-decoration: none; /* Removing underline */
  font-weight: normal; /* Make text normal weight */
}

.post-thumb .link-fx-1:hover {
  color: #FF4500; /* Darker orange color for hover */
  text-decoration: none; /* Ensuring no underline on hover */
}

/* Optional: Improve spacing and appearance of the whole post thumb */
.post-thumb {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
  transition: transform 0.3s ease-in-out; /* Add a smooth scaling effect */
}

.post-thumb:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.bordered-image {
  border-radius: 50%; 
  width: 120px;
  height: 120px;
}

.site-footer {
  background-color: #efe8e4;
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  box-shadow: 5px 5px 15px #888888 ;
}

  .site-footer-bottom {
  border-top: 1px solid #050505;
  margin-top: 60px;
}

.site-footer-title {
  color: #FFA500 ; 
}

.site-footer-link,
.copyright-text {
  color: #000000;
  text-decoration: none;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  margin-right: 15px;
}

.link-fx-1 span,
.icon {
  color: #0f0e0e;
}

.copyright-text {
  font-size: rgb(25, 24, 24) ;
  text-align: center;
  font-weight: bold;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: #FFA500;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: #fbf6f6;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .register-section {
    padding-top: 130px;
  }

  .register-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .artist-box {
      flex: 1 1 calc(50% - 20px); /* Two boxes per row on tablets */
      max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .artist-box {
      flex: 1 1 100%; /* One box per row on mobile */
      max-width: 100%;
  }
}

/* Responsive adjustments for phones */
@media (max-width: 768px) {
  .hero-section {
    background-size: cover;       /* or 'contain' depending on your image */
    background-position: center center;
    padding-top: 70px;
    height: 100vh;
  }
}
