/* CSS Reset */
/**Universal*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* !! Theme Toggle */
:root {
  --bg-color-dark: #202020;
  --text-color-dark: #9e9e9e;

  --bg-color-light: #d6d6d6;
  --text-color-light: #494949;
  
  --text-shadow-light: 2px 2px 4px rgba(37, 37, 37, 0.699);
}
html[data-theme="dark"] body {
  background-color: var(--bg-color-dark);
  color: var(--text-color-dark);
}
html[data-theme="light"] body {
  background-color: var(--bg-color-light);
  color: var(--text-color-light);
}

html[data-theme="light"] .paragraph, .paragraph-l {
  color: var(--text-color-light);
}
html[data-theme="dark"] .paragraph, .paragraph-l {
  color: var(--text-color-dark);
}

html[data-theme="light"] .section-title-h2 {
  text-shadow: var(--text-shadow-light);
  color: #805f0f;
}

html[data-theme="light"] header {
  background-color: var(--bg-color-light);
  color: var(--text-color-light);
}

html[data-theme="light"] footer {
  background-color: var(--bg-color-light);
  color: var(--text-color-light);
}

html[data-theme="dark"] .hero::before {
  background-color: #0000008a; 
}
html[data-theme="light"] .hero::before {
  background-color: #0000008a; 
}
/* html[data-theme="light"] img {
  background-color: #856411; 
} */



/* Optional: transition for smooth effect */
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Toggle switch styling */
.theme-switch {
  margin-left: 5px;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.theme-switch input {
  opacity: 0;
  width: 50px;
  height: 0;
  margin-right: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #9b9b9b;
  border-radius: 24px;
  transition: 0.4s;
}

.slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #a77e19;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: rgb(77, 77, 77);
}

input:checked + .slider:before {
  transform: translateX(24px);
}
/* !! Theme Toggle End*/
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Adjust the opacity as needed */
    z-index: 1;
}

body {
    width: 100%;
    line-height: 1.6;
    font-family: 'Times New Roman', Times, serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Don't hardcode background or color here */
}

header {
    width: 100%;
    /* background-color: #202020; */
    border-bottom-style: solid;
    border-width: 1px;
    border-color: #a77e19;
}

header .container {
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    align-items: center; /* Ensures vertical alignment */
}

/* nav bar */
.container nav {
    width: auto; /* Adjust width if necessary */
    margin-left: auto; /* Pushes the nav to the right */
    margin-right: 50px;
    width: 1rem;
}
nav ul {
    list-style: none;
    display: flex;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    color: #a77e19;
    text-decoration: none;
    font-size: 15px;
    
}
nav ul li a:hover{
    color: #c2a253;
}
/* Burger Menu hidden on other screen sizes*/
.burger div{
    background-color: #c2a253;
    width: 100%;
    height: 3px;
    margin: 5px;
    transition: all 0.3s ease;
}

.burger {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    display: none;
    cursor: pointer;
    
}



/*! Buttons */
.cta-container{

    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
    align-items: center;

    z-index: 2;
    
}
.cta-container button{

    background-color: #5a430800;
    width: 25%;
    margin: 20px;

    padding-top: 10px;
    padding-bottom: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #5a4308;
    border-radius: 10px;

    color: #a77e19;
    
}
.cta-container button:hover{
    border-color: #805f0f;
    color:#a77e19;

    scale: 1.05;

}


/*  ! TEXT */
.hero-text{
    margin-top: 0px;
    margin-bottom: 20px;
    z-index: 2;
}

/* h1 = headers & Hero sections*/
.hero-text h1{
    width: 100%;    font-size: 50px;
    color: #a38945;
    font-family:'Times New Roman', Times, serif ;
}
.hero-text h3{

    font-size: 20px;
    color: #a77e19;
    font-family:Arial, Helvetica, sans-serif ;
    
}
/* h3 */
.interactive-title{

    color: #a77e19;
    font-family:'Times New Roman', Times, serif ;
    text-shadow: 2px 2px 5px rgb(0, 0, 0); /* Shadow for the text */
}
/* h2 = Section Titles */
.section-title-h2 {

    color: #a77e19;
    font-family:'Times New Roman', Times, serif ;
    font-size: 30px;
    text-shadow: 2px 2px 5px rgb(0, 0, 0); /* Shadow for the text */
    margin-bottom: 50px;
}
/* h3 = sub-titles */
.sub-title-h3{

    font-size: 20px;
    color: #a77e19;
    font-family:'Times New Roman', Times, serif ;
}
h4{
    color: #70550f;
}
/* p = paragraph */
.paragraph{
    /* color: #7c7c7c; */
    text-align: center;
    margin: 10px 0;
    font-size: 15px;

}
.paragraph-l{
    /* color: #7c7c7c; */
    text-align: left;
    margin: 10px 0;
    font-size: 15px;

}
.theme-toggle-text{
    color: #a77e19;
}



/* ! IMAGES */
/* logo */
.logo{
    width: 100%;

}
.logo a {
    width: fit-content;
    height: auto;
    margin-left: 50px;
    height: 50px;
}
.logo a img{
    width: 120px;
    height: auto;
    fill: #a77e19;
}



/* ! CONTAINERS & SECTIONS */
.hero .container{
    width: 50%;
    margin-top: 70px;
    margin-bottom: 150px;
    display: flex;
    flex-direction: row;
}
section{
    width: 100%;
    margin-top: 100px;
}
.main-container{
    width: 70%;
    margin-left: 15%;

}
.container{
    width: 80%;
    align-items: center;
    display: flex;
    flex-direction: column;
    
}

/* divider lines */

.divider{
    position: relative;
    width: 75%;
    margin-left: 12.5%;
    height: 1px;
    background-color: #70550f;
    margin-top: 100px;

}
.divider::before,
.divider::after {
  content: '◆'; /* Unicode bullet */
  position: absolute;
  top: -20px; /* adjust vertically */
  font-size: 25px;
  color: #70550f; /* or any accent color */
}
.divider::before {
    left: -5px;
}
  
.divider::after {
    right: -5px;
}


/* footer */
footer{
    margin-top: 150px;
    background-color: #202020;
    width: 100%;
    height: auto;
    bottom: 0;

}
footer .container{
    width: 100%;
    text-align: center;
    height: 50px;
    border-top: solid;
    border-color: #a77e19;
    border-width: 1px;
}
footer .container p{
    padding: 10px;
    color: #646464;
}
footer .container a{
    text-decoration: none;
    color: #646464;

}
footer .container a:hover{
    color: #a77e19;
}

#backToTop{
    position: fixed;
    right: 20px;
    bottom: 20px;

    padding: 10px;
    color: #a77e19;
    background-color: #202020;

    border: solid;
    border-width: 1px;
    border-radius: 15px;

    
    z-index: 2;
}

/* copy popup */
.image-warning {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 30, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    box-shadow: 0 0 10px black;
    z-index: 2000;
    transition: opacity 0.3s ease;
  }
  
  .image-warning.hidden {
    display: none;
  }


/* TODO Media With Optimized */
/* Designed on 1920 X 1080 */

/* large Desktop Screens */
@media (min-width: 2560px) {
    /*  ! TEXT */
    .hero-text{
        margin-top: 0px;
        margin-bottom: 20px;
        z-index: 2;
    }

    /* h1 = headers & Hero sections*/
    .hero-text h1{
        width: 100%;    
        font-size: 60px;

        
    }
    .hero-text h3{

        font-size: 30px;
    }
    /* h3 */
    .interactive-title{

        font-size: 25px;
   
         /* Shadow for the text */
    }
    /* h2 = Section Titles */
    .section-title-h2 {


   
        font-size: 40px;
        text-shadow: 2px 2px 5px rgb(0, 0, 0); /* Shadow for the text */
        margin-bottom: 50px;
    }
    /* h3 = sub-titles */
    .sub-title-h3{

        font-size: 25px;

  
    }

    .paragraph{
        
        
        font-size: 20px;
    
    }
    .paragraph-l{
       
        font-size: 20px;
    
    }
    .cta-container button{
        font-size: 20px;
    }



}



/* laptop Screens */
@media (max-width: 1366px){

    .main-container{
        width: 85%;
        margin-left: 7.5%;
    }
    .divider{
        width: 90%;
        margin-left: 5%;
    }






}


/* Mobile - Cellphones */
@media (min-width:350px) and (max-width: 450px){
    /* #backToTop{
        position: fixed;
        right: 75px;
        bottom: 20px;
    
        padding: 10px;
        color: #a77e19;
        background-color: #2020209c;
    
        border: solid;
        border-width: 1px;
        border-radius: 15px;
    
        
        z-index: 2;
    } */

    /**Navbar*/
    .nav-links {
        background-color: #202020;
        display: none;
        flex-direction: column;
        width: fit-content;
        text-align: center;
        position: absolute;
        top: 100px;
        padding: 20px;
        z-index: 2;
    }
    .nav-links li {
        margin: 10px 0;
    }
    
    header .container .deco img{
        width: 150px;
        height: auto;
        position:absolute;
        z-index: 2;
        top: 0;
        left: 0;
    }

    .logo a{
        margin-left: 80px;
    }
    .logo a img{
        width: 75px;
        margin-left: 0px;
    }

    nav{
       width: 100%;
       margin-top: 25px;
    }
    nav ul li {
        text-align: left;
    }

    .burger {
        display: block;
        margin-left: 50px;
    }
    .nav-active {
        display: flex;
    }
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .burger.toggle .line2 {
        opacity: 0;
    }
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .theme-switch {

        width: 100px;
        height: 24px;
    }
    /** Hero section */
    
    

    /* Fonts & Texts */
    .hero-text h1{
        width: 100%;    font-size: 25px;
        color: #a38945;
        font-family:'Times New Roman', Times, serif ;
    }
    .hero-text h3{
    
        font-size: 15px;
        color: #a77e19;
        font-family:'Times New Roman', Times, serif ;
        
    }

    




}


/* tablets */
