@import url("fonts/font.css");
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
body{
	font-family: var(--f3), sans-serif;
	background-color: #dfdfdd;
}
a {
  text-decoration: none !important;
  display: inline-block !important;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
  margin:0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

:root {
  --c1: #FF000E;
  --c2: #fff;
  --c3: #000;
  --f1: "Cinzel Decorative";
  --f2: "Cormorant";
  --f3: "Orange Avenue";
}
::selection {
  background: var(--c1);
	color:var(--c2)
}
.spacing{
	padding:100px 0;
}
/* inner-wrapper */

.inner-header {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 300px;
  background-position: center !important;
  background-attachment: fixed !important;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}
.inner-header:before {
  width: 100%;
  content: "";
  background: rgb(0 0 0 / 0%);
  position: absolute;
  left: 0;
  top: 0;
}
.inner-header .container {
  position: relative;
}
.inner-header .inner-header-title h2 {
  color: #000;
  font-size: 40px;
  font-weight: 700;
}

/* end inner-wrapper */
/* MAIN HEADER  */

header.main-header {
    position: absolute;
    left: 0;
    top: 34px;
    width: 100%;
	z-index:9;
}

.main-menu ul li a {
    color: var(--c3);
    font-weight: 900;
    font-size: 17px;
    transition: all .7s;
    position: relative;
}
.main-menu ul li a:before {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--c1);
    content: "";
    transition: all.7s;
}
.main-menu ul li a:hover:before {
    width: 100%;
}
.main-menu ul li a:hover {
    color: var(--c1);
}
.main-menu ul {
    display: flex;
    justify-content: center;
    gap: 48px;
}
.lanuage-translator ul {
    display: flex;
    gap: 4px;
    justify-content: end;
}
.lanuage-translator ul li button {
    background: unset !important;
    border: unset !important;
    line-height: 1;
    font-size: 16px;
    color: var(--c3);
    font-weight: 700;
}
.lanuage-translator ul li {
    line-height: 1;
    color: #000;
    font-weight: 900;
}
.lanuage-translator ul li:first-child button {
    color: var(--c1);
}

/* MAIN BANNER  */
.banner {
    position: relative;
}

.banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000000;
}
.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-content: center;
    z-index: 2;
}
.banner-img img {
    height: 1000px;
    object-fit: cover;
}
.banner-title h1 {
    font-variant-ligatures: discretionary-ligatures;
    font-feature-settings: "liga" 1, "clig" 1, "dlig" 1;
    font-family: 'Orange Avenue', serif;
    color: var(--c3);
    font-size: 64px;
    letter-spacing: 3%;
    line-height: 1.3;
    margin-bottom: 34px;
    position: relative;
    padding-bottom: 30px;
    padding-right: 80px;
}

.banner-title h1:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 2px;
    background-color: var(--c1);
    content: "";
}
.banner-title h1 span {
    color: var(--c1);
}
.banner-title p {
    color: var(--c3);
    font-size: 16px;
    margin-bottom: 30px;
    width: 760px;
}
.banner-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.web-btn a {
    transition: all.7s;
    background-color: var(--c1);
    color: var(--c2);
    font-size: 16px;
    padding: 15px 46px;
    line-height: 1;
    font-weight: 500;
    border: 1px solid var(--c1);
}
.web-btn.web-btn-outline a {
    background-color: transparent;
    border-color: var(--c1);
    color: var(--c2);
}
.web-btn a:hover {
    background-color: var(--c3);
    border-color: var(
    --c2);
}
.web-btn.web-btn-outline a:hover {
    background-color: var(--c1);
    border-color: var(--c1);
}

/* ABOUT US  */
.about-image {
    position: relative;
}

.about-image:before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 340px;
    height: 340px;
    border-width: 5px 0px 0px 5px;
    border-style: solid;
    border-color: #FF000E;
}
.about-image img {
    height: 300px;
    object-fit: cover;
    object-position: center;
}
.web-title h4 {
    color: var(--c1);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 5px;
}
.about-content .web-title h3 {
    color: var(--c3);
    margin-bottom: 25px;
}
.about-content {
    padding-left: 20px;
}
.about-content p {
    margin-bottom: 16px;
    color: var(--c3);
	    text-align: justify;
}
.about-content .web-btn {
    margin-top: 30px;
}
.about-content .web-btn a:hover {
    border-color: var(--c1);
    color: var(--c1);
}
section.about-us {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.music-section {
	background-attachment:fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
}

.music-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 70%);
  z-index: 1;
}

.music-section .container {
  position: relative;
  z-index: 2;
}

.music-desc {
  color: #c9c9c9;
  font-size: 15px;
  line-height: 26px;
  max-width: 480px;
  margin-bottom: 30px;
}

.player-box {
  background: #1c1c1c;
  border-radius: 0;
  padding: 20px 28px;
  max-width: 100%;
  margin-bottom: 40px;
}

.player-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ctrl-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #ffffff;
  font-size: 14px;
}

.play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 14px;
}

.play-btn i {
  margin-left: 2px;
}

.play-btn i.fa-pause {
  margin-left: 0px;
}

.time-text {
  color: #9a9a9a;
  font-size: 13px;
  white-space: nowrap;
  min-width: 32px;
}

.progress-wrap {
  position: relative;
  flex-grow: 1;
  height: 3px;
  background: #444444;
  border-radius: 3px;
  cursor: pointer;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #d21f1f;
  border-radius: 3px;
  pointer-events: none;
}

.progress-dot {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: grab;
}

.progress-dot:active {
  cursor: grabbing;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9a9a9a;
  font-size: 13px;
  white-space: nowrap;
}

.meta-item i {
  font-size: 14px;
}

.view-all-btn {
  display: inline-block;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #ffffff;
  color: #000000;
}

.music-right {
  display: flex;
  justify-content: center;
}

.album-card {
  width: 100%;
  max-width: 400px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 60%);
}

.album-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .music-right {
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .music-title {
    font-size: 30px;
  }

  .player-row {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .progress-wrap {
    order: 10;
    flex-basis: 100%;
  }
}
.music-content h3 {
    margin-bottom: 25px;
}

.web-title.dark-text h3 {
    color: var(--c3);
}

.latest-composition-section {
}

/* Web title */
.dark-text span {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
    display: block;
    margin-bottom: 10px;
}

.dark-text h3 {
    font-weight: 700;
    font-size: 44px;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

/* Table */
.composition-table {
    width: 100%;
}

.composition-table-head,
.composition-table-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

.composition-table-head {
    padding: 0 20px 16px;
    margin-bottom: 4px;
}

.composition-table-row {
    padding: 20px 20px;
    transition: all 0.5s;
}

.composition-table-row:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

.composition-table-row:hover {
    background: rgba(0,0,0,0.03);
}

/* Columns */
.comp-col {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
}

.composition-table-head .comp-col {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.comp-listen,
.comp-plays,
.comp-comments {
    text-align: center;
}

/* Play button */
.comp-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1a1a;
    border: none;
    color: #fff;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s;
    margin: 0 auto;
}

.comp-play-btn:hover {
    background: #e8192c;
    transform: scale(1.1);
}

.bg-img-blog {
    position: relative;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.blog-image img {
    aspect-ratio: 1.5;
    object-fit: cover;
}
























/* Web Title  */
.web-title span{
	font-weight: 600;
	text-transform: uppercase;
	color: var(--c1);
	font-variant-ligatures: discretionary-ligatures;
	font-feature-settings: "liga" 1, "clig" 1, "dlig" 1;
	font-family: 'Orange Avenue', serif;
}
.web-title p{
	color: var(--c2);
}
.web-title h3{
	font-size: 42px;
	color: var(--c2);
	font-variant-ligatures: discretionary-ligatures;
	font-feature-settings: "liga" 1, "clig" 1, "dlig" 1;
	font-family: 'Orange Avenue', serif;
}
/* Blog Section Css Start */
.home-writing::before{
	opacity: 0.6 !important;
}
.home-writing {
	position: relative;
}
.writing-section .web-title h3{
	color: var(--c3);
}
.writing-section{
	background-attachment: unset !important;
}
.blog-section{
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
.main{
	margin-top: 50px;
}
.blog-box {
	background: var(--c2);
}
.blog-content {
	padding: 20px;
}
.blog-content span{
	font-weight: 600;
	font-size: 13.5px;
}
.blog-content h5{
	font-size: 20px;
	margin: 5px 0 10px 0;
	font-weight: bold;
}
.blog-content p{
	font-weight: 500;
	font-size: 15px;
}
.blog-content h5 a {
    color: #000;
    transition:all.7s;
}
.blog-content h5 a:hover {
    color: var(--c1);
}
.read-more{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.read-more a:first-child{
	color: var(--c1);
	font-weight: 600;
}
.read-more a:last-child:hover{
	color: var(--c1);
}
.read-more a:first-child:hover{
	color: var(--c3);
}
.read-more a{
	transition: all 0.5s ease;
	gap: 5px;
	display: flex !important;
	align-items: center;
}
.read-more {
	margin-top: 10px;
}
.read-more a:last-child i{
	font-size: 20px;
}
.read-more a:last-child{
	color: var(--c3);
	font-size: 13px;
}
.read-more a:last-child span{
	font-size: 11px;
	font-weight: 500;
}

/* Contact Form Css */

.contact-section{
	background-size: cover;
	background-repeat: no-repeat;
	color: var(--c2);
	background-position: center;
	position: relative;
	z-index: 99;
	background-attachment: fixed;
}
.contact-home::before,
.home-writing::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	background: var(--c3);
	opacity: 0.8;
	z-index: -1;
}

/* Footer Css Start */
.footer {
	background-repeat: no-repeat;
	padding-top: 80px;
	border-top: 1px solid #999;
}
.footer-menu ul,
.footer-socials ul{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 45px;
}
.footer a{
	color: var(--c3);
}
.footer-logo a{
 	color: #000 !important;
    font-variant-ligatures: discretionary-ligatures;
    font-feature-settings: "liga" 1, "clig" 1, "dlig" 1;
    font-family: 'Orange Avenue', serif;
}
.footer-logo a h1{
	font-weight:550;
}
.footer-menu {
	margin-top: 50px;
}
.footer-menu ul a{
	transition: all 0.5s ease-in-out;
	text-transform: uppercase;
	font-weight: 500;
}
.footer-menu ul a:hover{
	color: var(--c1);
}
.footer-socials ul{
	gap: 8px;
}
.footer-socials{
	padding: 40px 0 50px 0;
}
.footer-socials ul a{
	transition: all 0.5s ease-in-out;
	background: var(--c3);
	color: var(--c2);
	width: 40px;
	height: 40px;
	display: flex !important;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}
.footer-socials ul a:hover{
	background: var(--c1);
}
.copyright p{
	font-weight: 500;
	border-top: 1px solid #00000050;
	padding: 12px 0;
	color: var(--c3);
}
.contact-content h3{
	margin: 5px 0 30px 0;
	color: var(--c2);
}
.contact-home .contact-content li,
.contact-home .contact-content a{
	color: var(--c2);
}
.contact-content a{
	margin-top: 7px;
	color: var(--c3);
	font-size: 15px;
}
.contact-home .contact-content i {
    background-color: var(--c2);
    color: var(--c1);
}

.contact-content i {
    font-size: 25px;
    background-color: var(--c1);
    color: var(--c2);
    padding: 12px 16px;
    border-radius: 5px;
}

.contact-content li {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}
.contact-content h6{
	font-weight: 600;
}
.contact-content p{
    font-size: 17px;
    padding-right: 50px;
}
.contact-content ul{
	margin-top: 30px;
	color: var(--c3);
}
.contact-home .contact-form {
	background: var(--c2);
}
.contact-form {
	background: var(--c1);
	padding: 65px 45px;
}
.contact-form input,
.contact-form textarea{
	margin-bottom: 12.5px;
	outline: 0;
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #CACACA;
	font-size: 14px;
}
.contact-form .wpcf7-form-control-wrap{
	display: block;
	margin-bottom: 12.5px;
}
.contact-home .contact-form .wpcf7-submit.has-spinner{
    color: var(--c2);
    background: var(--c1);
    transition: all 0.5s ease-in-out;
    border: 1px solid var(--c1) !important;
}
.contact-home .contact-form .wpcf7-submit.has-spinner:hover{
    background: transparent;
    border: 1px solid var(--c1) !important;
    color: var(--c1);
}
.contact-form .wpcf7-submit.has-spinner {
    width: max-content;
	margin-bottom: 0 !important;
    padding: 12px 50px;
    border: 1px solid var(--c3) !important;
    font-size: 15px;
    font-weight: 500;
    color: var(--c2);
    background: var(--c3);
    transition: all 0.5s ease-in-out;
}
.contact-form .wpcf7-submit.has-spinner:hover{
    background: transparent;
    color: var(--c2);
    border-color: var(--c2) !important;
}
.contact-home .contact-form h3{
	color: var(--c3) !important;
}
.contact-form h3{
	margin-bottom: 40px;
	color: var(--c2) !important;
}



.quote-form-main {
    padding: 25px;
    border-radius: 5px;
    background-color: rgb(29, 29, 29);
}

.quote-form-main h2 {
   font-size: 28px;
    font-weight: 600;
    color: var(--c1);
    margin-bottom: 20px;
    text-align: center;
}

.quote-form-item input {
    background: unset;
    border: 1px solid #ffecec26;
    padding: 12px 15px;
    border-radius: 4px;
    outline: 0;
    width: 100%;
    color: var(--c2);
}
.quote-form-item {
    margin-bottom: 15px;
}
.quote-form-item input:focus {
    border-color: var(--c2);
}
.quote-form-item input::placeholder {
    color: #ffecec8c;
    font-size: 15px;
}
.quote-submit input {
    padding: 10px 20px;            
    background-color: var(--c1);
    border: 0;
    outline: 0;
    color: var(--c2);
    font-weight: 600;
    border-radius: 4px;
    transition: all .7s;
    width: 100%;
}
.quote-submit input:hover {
    background-color: var(--c1);
    color: var(--primary);
}
.quote-submit {
    text-align: center;
    margin-top: 20px;
}
.side-links-main {
    margin-bottom: 30px;
}
section.single-service.spacing {
    padding: 150px 0 100px 0px;
}
.single-content h2 {
    color: var(--c1);
    font-family: var(--f1);
    font-size: 34px;
    font-weight: 600;
    padding-bottom:10px;
}
.single-content h2 span{
    color:var(--primary);    
    font-family: var(--f1);
}
.inner-header-title {
    padding-top: 65px;
}
.contact-form span.wpcf7-not-valid-tip {
    color: var(--c1);
    font-size: 16px;
    font-weight:600;
    text-transform: capitalize;
    font-family: var(--f2) !important;
}
.contact-form .wpcf7-response-output{
    font-family: var(--f2) !important;
    border-color: var(--c1) !important;
    color: var(--c3);
    font-weight: 600;
    font-size: 16px;
    padding: 12px !important;
    line-height: 1;
    margin: 20px 0 0 0 !important;
}
.contact-form p:last-child br{
	display:none;
}
body.page-template-contact-us .wpcf7-response-output{
    border-color: var(--c2) !important;
    color: var(--c12)
}
body.page-template-contact-us .wpcf7-not-valid-tip{
    color: var(--c2);
}



/* RESPONSIVE MENU CSS */

.responsive-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 70%);
	z-index: 99999;
	transition: all .5s;
}

.responsive-menu-inner {
	height: 100%;
	padding: 34px 35px;
	position: relative;
	width: 90%;
	background-color: var(--c2);
	left: -100%;
}
.respon-logo a img {
    filter: brightness(0);
	width: 180px;
}
.responsive-logo-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.respon-cross a,
.respon-cross a i {
	display: block;
}

.respon-cross a {
    border: 1px solid var(--c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--c3);
    transition: all .5s;
}

.respon-cross a:hover {
	color: var(--c1);
	border-color: var(--c1);
}
.responsive-links ul li a {
	color: var(--c3);
	transition: all .5s;
	font-size: 15px;
	font-weight: 600;
	display: block;
	padding: 14px 0px;
}

.responsive-links {
	margin-top: 50px;
	overflow-y: auto;
	height: calc(100vh - 232px);
}

.responsive-links ul li ul {
	display: none;
}

.responsive-links ul li a:hover {
	color: var(--c1);
}

.responsive-links ul li ul li a {
	padding-left: 40px;
	font-size: 22px;
}

.responsive-links ul li:has(ul)::before {
	position: absolute;
	content: "\f067";
	top: 16px;
	right: 0;
	font-family: "Font Awesome 5 Pro";
	font-size: 22px;
	color: var(--c2);
}

.responsive-links ul li {
	position: relative;
	border-bottom: 1px solid #80808047;
}

.responsive-links ul li.active::before {
	content: "\f068";
	color: var(--c1);
}

.responsive-links ul li:last-child a {
	border-bottom: 0px;
}

.responsive-menu.active {
	left: 0;
}

.responsive-menu.active .responsive-menu-inner {
	left: 0;
	transition-delay: .3s !important;
	transition: all .7s;
}

body.stop-scroll {
	overflow-y: hidden;
}
.baar-menu{
	text-align:end;
}
.baar-menu a i {
    font-size: 26px;
    color: var(--c2);
}
.banner-btns .web-btn-outline a {
    color: #000;
}
.main-logo a img {
    filter: brightness(0);
}
.main-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.comp-col a {
    color: var(--c3);
    text-decoration: underline !important;
}

.composition-des-content ul li {
    list-style: disc;
}

.composition-des-content ul {
    padding-left: 19px;
    margin-bottom: 11px;
}









body.page-template-contact-us .contact-section,
body.page-template-about-us .about-us{
	background-size: cover !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
a.glink.gt-current-lang {
    font-weight: bold;
	color:var(--c1) !important;
}
.lanuage-translator ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lanuage-translator a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-weight: 400;
}

.lanuage-translator a:hover {
    color: #666;
}

.main-logo a {
    color: #000 !important;
    font-variant-ligatures: discretionary-ligatures;
    font-feature-settings: "liga" 1, "clig" 1, "dlig" 1;
    font-family: 'Orange Avenue', serif;
}
.main-logo a h1 {
    font-weight: 550;
}

.single-content-img {
    margin-bottom: 25px;
}

.single-content p {
    margin-bottom: 1.5rem;
    color: #000;
    font-family: var(--f3);
}


/* Comments Section Wrapper */
.comments-section .card-body h3,
.comments-section .card-body h4 {
    font-weight: 600;
    color: #1a1a1a;
}

/* Single Comment Item */
.comment-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.comment-item:last-of-type {
    border-bottom: none;
}

.comment-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.comment-item h6 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.comment-item small {
    font-size: 12px;
    color: #999;
}

.comment-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-top: 8px;
}

/* No Comments Text */
.comments-section .text-muted {
    font-size: 14px;
    padding: 15px 0;
}

/* Add a Comment Form */
.comment-respond {
    margin-top: 10px;
}

.comment-respond .comment-form-comment textarea,
.comment-respond .comment-form-author input,
.comment-respond .comment-form-email input {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-respond .comment-form-comment textarea:focus,
.comment-respond .comment-form-author input:focus,
.comment-respond .comment-form-email input:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    outline: none;
}

.comment-respond .form-submit input[type="submit"] {
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    transition: opacity 0.2s ease;
}

.comment-respond .form-submit input[type="submit"]:hover {
    opacity: 0.85;
}

/* Divider */
.comments-section hr {
    border-color: #eee;
    margin: 30px 0;
}
#cancel-comment-reply-link {
    display: none !important;
}



.comment-item {
    padding: 0px 0 20px;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.comment-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-item img.avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
    font-size: 15px;
}

.comment-date {
    font-size: 12px;
    color: #999;
}

.comment-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-top: 8px;
    margin-bottom: 0;
}

.watch-on-youtube a {transition: all.4s ease;background-color: #f03;color: var(--c2) !important;padding: 18px 40px;line-height: 1;border-radius: 13px;position: relative;}
.watch-on-youtube a:hover {
    padding-left: 48px;
}
.watch-on-youtube a:before {
    position: absolute;
    top: 50%;
    transform: translateY(-57%);
    left: 20px;
    content: "\f167";
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    font-size: 18px;
    visibility: hidden;
    opacity: 0;
    transition: all.4s ease;
}
.watch-on-youtube a:hover:before {
    visibility: visible;
    opacity: 1;
}
.single-composition .quick-actions-wrapper {
    display: none;
}

.latest-composition-section .about-content {
    display: flex;
    flex-direction: column;
    gap: 20px !important;
}

.about-content h1 {
    font-size: 50px;
    font-weight: 600;
}