/* CSS Document */
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL */
body {
    /*font-family: Arial, sans-serif;*/
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
    text-align: center; /* centers most content */
	
}

a {
  color: #ff5733; /* Change to your preferred hex code or color name */
  
}


/* CONTAINER */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
	
}

/* SECTION COLORS (for layout visibility) */
.header-section {
	background: #fd511d;
	background: linear-gradient(180deg,rgba(253, 81, 29, 1) 0%, rgba(252, 176, 69, 1) 100%);
	/*
    background: #1e1e1e;
    color: white;
	*/
}

.main-section {
    background: #f4f4f4;
}

.footer-section {
	background: #0025f5;
	background: linear-gradient(0deg,rgba(0, 37, 245, 1) 0%, rgba(69, 176, 252, 1) 100%);
	
	/*
    background: #333;
    color: white;
	font-size: 2rem 
	*/
	
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;  /*header height*/
}

/* LOGO */
.logo a {
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: bold;
}

logo-iso {
	width:auto;
	height: 50px;
}


/* NAV */
nav {
    display: none;
	
}

nav ul {
    list-style: none;
}

nav ul li {
    margin: 10px 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
	
}

/* ACTIVE MOBILE MENU */
nav.active {
    display: block;
    background: #444;
    padding: 5px 0;
}

/* HERO */  /*Main logo image size*/
.hero {
    padding: 10px 0;
}

.hero img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: block;
	border-radius: 10px;
}

general-text {
}

.general-text h1 {
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size: 1.4rem;
	font-weight:normal;
}




/* FOOTER */
footer {
    padding: 40px 0;
}

footer p {
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:1.4rem;
	color: white;
    margin: 5px 0;
}
.footer-container {
	font-size: 1.5rem
	}

/* Social Media icons */
.fab {
  padding: 15px;
  font-size: 4rem;
  width: 7rem; /* Adjust width for desired size */
  text-align: center;
  text-decoration: none;
  border-radius: 50%; /* For round icons */
  color: white;
  margin: 5px;
}

/*
.fa-facebook {
  background: #3B5998; /* Facebook brand color */




/* MENU PAGE */

.menu-title {
	font-size: 2.2rem;
    /*margin: 30px 0;*/
}

.menu-title p {
	font-family:'Montserrat', Arial, Helvetica, sans-serif;	
    font-size: 1.5rem;
    color: #555;
    margin: 2px 0;
}

.menu-title h1{
	font-family:'Montserrat', Arial, Helvetica, sans-serif;	
	font-size: 3rem;
    /*margin: 30px 0;*/
}

.menu-item {
    margin: 30px 0;
}

.menu-item h1 {
	font-family:'Montserrat', Arial, Helvetica, sans-serif;	
    font-size: 1.4rem;
    font-weight: bold;
}

.menu-item h2 {
	font-family:'Montserrat', Arial, Helvetica, sans-serif;	
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.menu-item p {
	font-family:'Montserrat', Arial, Helvetica, sans-serif;	
    font-size: 1.2rem;
    color: #555;
    margin: 2px 0;
}

/* SECTION HEADERS */
.menu-section {
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
    margin-top: 40px;
    font-size: 1.3rem;
    font-weight: bold;
}

/* LIST ITEMS */
.menu-list {
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
    margin-top: 10px;
}

.menu-list p {
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    margin: 4px 0;
    color: #444;
}

.menu-divider img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 20px auto;
}



/* SLIDESHOW */
.slideshow-container {
    max-width: 500px;
    margin: 20px auto;
    position: relative;
}

/* HIDE ALL SLIDES */
.slide {
    display: none;
}

/* IMAGE STYLE */
.slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* FADE ANIMATION */
.fade {
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}




/* DESKTOP ENHANCEMENT */
@media (min-width: 768px) {

    .menu-title {
        font-size: 1.5rem;
    }

    .menu-item h2 {
        font-size: 1.6rem;
    }

    .menu-item p {
        font-size: 1rem;
    }

    .menu-section {
        font-size: 1.5rem;
    }
	

}



/* DESKTOP */
@media (min-width: 768px) {

    /* HIDE HAMBURGER */
    .menu-toggle {
        display: none !important;
    }

    /* SHOW NAV */
    nav {
        display: block !important;
    }

    /* HORIZONTAL MENU */
    nav ul {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        font-size: 2rem;  /* Menu font size on PC */
    }

    /* CENTER HEADER CONTENT BETTER */
    .header-container {
        justify-content: space-between;
    }

    /* HERO BIGGER */
    .hero {
        padding: 10px 0;
    }
}