*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --primary-color: #780000;
    --secondary-color: #C1121F;
    --tertiary-color: #FDF0D5;
    --quaternary-color: #003049;
    --quinary-color: #669BBC;
    --gold-color: #FFD700;

}

html,
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/*Utility Classes*/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-sm {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    border: 1px solid transparent;
    border-radius: 32px;
    background-color: var(--gold-color);
    padding: 1rem 2rem;
    font-weight: 900;
    
}

.btn:hover {
    border-radius: 32px;
    background-color: var(--quaternary-color);
    /* padding: 1rem 2rem; */
    font-weight: 900;
    transition: background-color 0.3s ease;
    border: 3px solid var(--gold-color);
    box-shadow: 0px 0px 15px var(--gold-color);
    transform: scale(1.05);
    font-size: 1.1rem;
}

.details-span {
    color: var(--secondary-color);
}
/*Navbar*/

.navbar {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.5s ease-in-out;
}

.navbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar img {
    width: 80px;
    height: 80px;
}

.navbar .main-menu-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 600;
    margin-left: 8rem;
}

.navbar .navbar-link:hover {

    color: var(--gold-color);
}


.navbar .navbar-link-icon {
    color: var(--gold-color);
}

.navbar .main-menu-items i:hover {
    color: #fff;
}

.navbar-scroll {
    background-color: rgba(78, 00, 00, 0.8);
    backdrop-filter: blur(10px);
}

/*Mobile Menu*/

.navbar .mobile-menu-toggle {
    color: #fff;
    cursor: pointer;
}

.navbar .mobile-menu {
    display: none;
}

.navbar .mobile-menu-items.active {
    transform: translateX(0);
}

.navbar .mobile-menu-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0px 0px 5px var(--gold-color);
    transform: translateX(100%);
    transition: transform 0.2s ease-in-out;
}

.navbar .mobile-menu-list li {
    margin-bottom: 2rem;
}

.navbar .mobile-menu .navbar-link:hover,
.navbar .mobile-menu .mobile-menu-toggle:hover {
    color: var(--gold-color);
}

.navbar .mobile-menu .navbar-link-icon:hover {
    color: #fff;
}


.navbar .mobile-menu-list {
    display: flex;
    flex-direction: column;
}

.header .header-buttons i {
    margin-right: 1rem;
}


/*Header*/
.header {
    background: url(../images/header-background.jpg) center center/cover no-repeat;
    width: 100%;
    padding: 10rem 2rem 0rem ;
    
}

.header .header-items {
    padding-bottom: 5rem;
}


.header .header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7rem;
}

.header .header-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--gold-color);
    box-shadow: 0px 0px 5px var(--gold-color);
}

.header .header-title {
    color: var(--gold-color);
    font-weight: 900;
    font-size: 4rem;
    
    
}

.header .header-text {
    font-weight: 300;
}

.header .header-span {
    color: var(--gold-color);
    font-weight: 700;
}

.header .header-title-span {
    display: block;
}

.header .header-content-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header .header-buttons {
    display: flex;
    gap: 1rem;
}

.header .header-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;

}


/*About*/
 .about {
    background: var(--quaternary-color);
    width: 100%;
 }

 .about .about-images {
    width: 100%;
    max-width: 700px;
    border: 2px solid var(--gold-color);
    box-shadow: 0px 0px 5px var(--gold-color);
    margin: 0 auto;
    border-radius: 32px;
 }
 .about .about-images img {
    border-radius: 32px;
 }
 .about .about-images {
   margin-bottom: 7rem;
 }

 .about .about-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
 }

 .about .about-content {
      display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;

 }

 .about .about-border{
    background-color: var(--gold-color);
    width: 75px;
    height: 4px;
    border-radius: 32px;
    
 }

 .about .about-content .about-title {
    font-weight: 600;
    padding-top: 2rem;
 }

 .about .about-content .about-text {
    font-weight: 300;
 }

 .about .about-content h3 {
    font-weight: 400;
 }

 .about .about-span {
    color: var(--gold-color);
 }

 /*Details*/
 .details {
    background: #fff;
 }

 .details .details-items i {
    color: var(--secondary-color);
 }

 .details .details-icon {
    margin: 2rem;
 }

 .details .details-title h1 {
    font-weight: 800;
    font-size: 2rem;
 }

  .details .details-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
  }
 
 .details .details-item {
    color: black;
    font-weight: 400;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.5);
    background-color: #fff;
    /* padding: 0 1rem; */
    text-align: center;
 }
 .details .details-list {
    text-align: center;
    padding: 0 1.5rem;
 }

 .details .frame-decoration {
    margin-top: 4rem;
 }

 /*Accordion*/
 .accordion {
   background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
   padding: 4rem 0;
   position: relative;
   overflow: hidden;
 }

 .accordion::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
   opacity: 0.3;
   pointer-events: none;
 }

 .accordion .accordion-title {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
 }

 .accordion .accordion-title h1 {
   font-size: 2.5rem;
   letter-spacing: 2px;
   text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 1rem;
   position: relative;
   color: #fff;
 }

 .accordion .accordion-title h1 i {
   color: var(--gold-color);
   animation: pulse 2s infinite;
 }

 @keyframes pulse {
   0%, 100% { transform: scale(1); }
   50% { transform: scale(1.1); }
 }

 .accordion .accordion-title::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 80px;
   height: 3px;
   background: var(--gold-color);
   border-radius: 2px;
 }

 .accordion .accordion-title span {
    color: var(--gold-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
 }

 .accordion .accordion-lists {
    padding: 2rem;
    margin: 0 auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
 }

 .accordion li {
    list-style: none;
    width: 100%;
    margin: 1rem 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
 }

 .accordion li:hover {
   transform: translateY(-2px);
   box-shadow: 
     0 12px 40px rgba(0, 0, 0, 0.3),
     0 0 20px rgba(255, 215, 0, 0.2),
     inset 0 1px 0 rgba(255, 255, 255, 0.2);
   border-color: rgba(255, 215, 0, 0.4);
 }

 .accordion li label {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.05) 50%, transparent 100%);
 }

 .accordion li:hover label {
   background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.15) 50%, rgba(255, 215, 0, 0.1) 100%);
 }

 .accordion label::before {
    content: '+';
    margin-right: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-color);
    background: rgba(255, 215, 0, 0.2);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
 }

 .accordion li:hover label::before {
   background: rgba(255, 215, 0, 0.3);
   transform: scale(1.1);
 }

 .accordion input[type="checkbox"] {
    display: none;
 }

 .accordion .content {
    color: rgba(255, 255, 255, 0.9);
    padding: 0 1.5rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.1);
 }

 .accordion .content p {
   margin: 1rem 0;
   font-size: 1rem;
   text-align: left;
 }

 .accordion .content .btn {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: var(--gold-color);
   color: var(--primary-color);
   padding: 0.8rem 1.5rem;
   border-radius: 25px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
   margin-top: 1rem;
   box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
 }

 .accordion .content .btn:hover {
   background: #ffed4a;
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
 }

 .accordion input[type="checkbox"]:checked + label + .content {
    max-height: 800px;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
 }
    
 .accordion input[type="checkbox"]:checked + label::before {
   content: '−';
   background: var(--gold-color);
   color: var(--primary-color);
   transform: rotate(180deg);
 }

 .accordion input[type="checkbox"]:checked + label {
   background: linear-gradient(90deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.2) 50%, rgba(255, 215, 0, 0.15) 100%);
   border-bottom: 1px solid rgba(255, 215, 0, 0.3);
 }

@media (max-width: 1200px) {

    .header .header-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }


}

@media (max-width: 992px) {
    .navbar .main-menu-items {
        display: none;
    }

    .navbar .mobile-menu {
        display: flex;
    }

    .details .details-items {
        grid-template-columns: repeat(2 , 1fr);
    }
}

@media (max-width: 768px) {
    .details .details-items {
        grid-template-columns: 1fr;
    }

    .accordion .accordion-title {
        margin-bottom: 2.5rem;
        padding: 1.5rem 0;
    }

    .accordion .accordion-title h1 {
        font-size: 2rem;
        letter-spacing: 1px;
        gap: 0.8rem;
        flex-direction: column;
        line-height: 1.2;
    }

    .accordion .accordion-title h1 i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .accordion .accordion-lists {
        max-width: 95%;
        padding: 1rem;
    }

    .accordion li label {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .accordion label::before {
        width: 2rem;
        height: 2rem;
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }

    .accordion .content {
        padding: 0 1.2rem;
    }

    .accordion input[type="checkbox"]:checked + label + .content {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {

    .header .header-buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .header .header-buttons a {
        width: 100%;
        flex: none;
    }

    .header .header-buttons .btn {
        width: 100%;
        display: block;
        text-align: center;
    }

    .accordion {
        padding: 3rem 0;
    }

    .accordion .accordion-title {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

    .accordion .accordion-title h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
        gap: 0.6rem;
        flex-direction: column;
        line-height: 1.3;
        text-align: center;
    }

    .accordion .accordion-title h1 i {
        font-size: 2rem;
        margin-bottom: 1rem;
        display: block;
    }

    .accordion .accordion-title::after {
        width: 60px;
        height: 2px;
    }

    .accordion .accordion-lists {
        padding: 0.5rem;
    }

    .accordion li {
        margin: 0.8rem 0;
        border-radius: 12px;
    }

    .accordion li label {
        padding: 1rem;
        font-size: 0.95rem;
        text-align: left;
    }

    .accordion label::before {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 1rem;
        margin-right: 0.6rem;
    }

    .accordion .content {
        padding: 0 1rem;
        font-size: 0.9rem;
    }

    .accordion input[type="checkbox"]:checked + label + .content {
        padding: 1rem;
    }
}

/*Footer*/
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
}

.footer-links h4,
.footer-social h4,
.footer-contact h4 {
    color: var(--gold-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--gold-color);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--gold-color);
}

.social-link i {
    color: var(--gold-color);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--gold-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 1.5rem 0;
    text-align: center;
    background-color: #1a1a1a;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Footer Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .footer-logo {
        grid-column: span 3;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-logo {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-logo img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        grid-column: span 2;
        margin-bottom: 1rem;
    }
    
    .footer-logo img {
        width: 70px;
        height: 70px;
    }
    
    .footer-links ul,
    .footer-contact {
        text-align: left;
    }
    
    .social-icons {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
    
    .footer-logo img {
        width: 60px;
        height: 60px;
    }
    
    .footer-links ul,
    .footer-contact {
        text-align: center;
    }
    
    .social-icons {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .social-link {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .accordion .accordion-title h1 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        flex-direction: column;
        text-align: center;
        line-height: 1.4;
    }

    .accordion .accordion-title h1 i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        display: block;
    }

    .accordion .accordion-title {
        padding: 0.5rem 0;
        margin-bottom: 1.5rem;
    }

    .accordion .accordion-title::after {
        width: 50px;
        height: 2px;
    }
}