/* rgba(96, 5, 5, 1); /* Donker rood */
/* #b7d6a2; /* Light groen */
/* #F2EFE9; /* off white */
/* #E0D4BE; /* Menu Cream */
/* #4B2413; /* text */
:root {
  --main-bg-color: #F2EFE9;
  --nested-bg-color: #F2EFE9;
  --main-text-color: #4B2413;
  --menu-bg-color: #E0D4BE;
  --hover-menu-bg-color: #F2EFE9;
  --accent-color: #B68B5C;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
	/* background-color: var(--main-bg-color); */
    /* background-color: rgba(96, 5, 5, 1); */
}

.no-scroll {
    overflow: hidden;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

.imCssLink:link {
  color: var(--main-text-color);
}

a.imCssLink::after {
  content: "🔗";             /* or "↗", "→", etc. */
  margin-left: 0.3em;
  font-size: 0.9em;
  opacity: 0.7;
}

.imCssLink:visited{
  color: var(--main-text-color);
}

header{
    position: fixed;
    top: 0;
    width: 100%;
    /* z-index: 1000; */
    /* background: transparent; */
    background-color: var(--main-bg-color);
    color: #fff;
    padding: 20px 30px 5px;
    z-index: 10000;
    transition: .6s;
}
header.sticky{
    padding: 2px 100px 2px;
    background: var(--main-bg-color);
    color: #000;
}

header.sticky ul li a{
    /*color: #000;*/
	color: var(--main-text-color);
}

header.sticky .container .logo{
    color: #000;
}

header.sticky .container ul .dropDown::before{
    border-top-color: #000;
}

header.sticky .log-sign .btn{
    border-color: #000;
    color: #69bde7;
}

header.sticky .log-sign .btn:last-child{
    background: #000;
    color: #fff;
}
header.sticky .log-sign .btn:last-child:hover{
    background: #fff;
    color: #69bde7;
}

header.sticky .log-sign .btn:first-child:hover{
    background: #000;
    color: #fff;
}

.container{
    /* max-width: 110rem; */
    padding: 0 1rem;
    margin: auto;
    display: flex;
    position: relative;
	border-radius: 0 0 15px 15px;
	background: var(--menu-bg-color);
	border: 4px solid var(--menu-bg-color);
}

.logo-container{
	display: flex;
    position: relative;
	border-radius: 15px 15px 0 0;
    top: 2px;
    z-index: 1003;
	padding: 0.1rem 0.8rem 0.8rem 0.8rem; /* top right bottom left */
    overflow: hidden;
	background: #F2EFE9;
}

.logo{
    color: #fff;
	width: 396px;
}

.phone{
	position: absolute;
    top: 6px;
    right: 3%;
    color: #fff;
}

.nav-btn{
    flex: 3;
    display: flex;
}

.nav-links{
    flex: 2;
}

.log-sign{
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
	background: var(--menu-bg-color);
}

.lang-flag{
	background: var(--menu-bg-color);
}

.btn{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    transition: .3s;
    margin: 0 .2rem;
    text-transform: uppercase;
}

.btn.solid, .btn.transparent:hover{
    background-color: #fff;
    color: #69bde7;
}

.btn.transparent, .btn.solid:hover{
    background-color: transparent;
    color: #fff;
}

.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
	background: var(--menu-bg-color);
}

.nav-link{
    position: relative;
}

.nav-link > a{
    line-height: 3rem;
	background: var(--menu-bg-color);
    color: #4E2317;
    padding: 1.1rem;
    letter-spacing: 1px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: 0.5s;
    white-space: pre;
    overflow: auto;
    word-wrap: normal;
}


a:hover{
    text-decoration: underline;
    text-decoration-thickness: 2px;
}


.dropDown::before {
	background-color: var(--menu-bg-color);
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #4E2317; /* The color of the arrow */
    cursor: pointer;
    transition: .3s;
}

.dropDown:hover::before{
    display: none;
}

/* Dropdown Menu */
.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 10rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.dropdown ul{
    position: relative;
}

.dropdown-link{
    position: relative;
}

.dropdown-link > a{
    display: flex;
    padding: 0.5rem 1rem;
    /* background-color: #fff; */
	background-color: var(--menu-bg-color);
    color: #4E2317;
    border-bottom: 1px solid #4E2317;
    font-size: 0.9rem;
    transition: .3s;
}

.dropdown-link:nth-child(7) > a{
    border-width: 4px;
}

.dropdown-link:hover > a{
    background-color: var(--hover-menu-bg-color); /*#4E2317;*/
    color: #000;
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #4E2317;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #4E2317;
}


.dropdown.second{
    top: 0;
    left: 100%;
    padding-left: 0.8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow{
    top: 10px;
    left: -5.5px;
}

.dropdown.third .dropdown-link:nth-child(3) a{
    border-width: 4px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
    opacity: 1;
    pointer-events: auto;
    transform: translate(0,0);
}

.subDropdown{
    position: relative;
}

.subDropdown::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #4E2317; /* The color of the arrow */
    cursor: pointer;
    transition: .3s;
}

/* Hamburger */
.hamburger-menu-container{
    flex: 1;
    display: none;
    justify-content: flex-end;
    align-items: center;
}

.hamburger-menu{
	background-color: var(--menu-bg-color);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    /*background-color: #fff;*/
	background-color: #4E2317;
    border-radius: 3px;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div::before, .hamburger-menu div::after{
    position: absolute;
    content: "";
    width: inherit;
    height: inherit;
    /*background-color: #fff;*/
	background-color: #4E2317;
    border-radius: inherit;
    transform: translateY(-7px);
    transition: 0.5s;
}

.hamburger-menu div::after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div::before{
    transform: translateY(0) rotate(-45deg);
}
#check:checked ~ .hamburger-menu-container .hamburger-menu div::after{
    transform: translateY(0) rotate(45deg);
}


@media screen and (max-width:1220px) {
    .nav-link > a{
        font-size: 0.8rem;
        padding: 0.6rem;
  		background-color: var(--menu-bg-color);
    }
	li.nav-link {
		background-color: var(--menu-bg-color);
	}
}

@media screen and (max-width:1080px) {
    header.sticky{
        padding: 10px 40px;
  		background: var(--main-bg-color);
   }
    
    .logo{
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 920px){
    header.sticky{
        padding: 10px 40px;
 		background: var(--main-bg-color);
   }
    
    .hamburger-menu-container{
        display: flex;
		background-color: var(--menu-bg-color);
    }

    #check{
        display: block;
    }

    header.sticky .hamburger-menu div,
    header.sticky .hamburger-menu div::before,
    header.sticky .hamburger-menu div::after{
        background-color: #000;
    }

    .nav-btn{
        position: fixed; /* jokon scroll korbo tkn jayga teke sorbe na.*/
        height: calc(100vh - 8.7rem);
        top: 9.7rem;
        right: 0;
        width: 50%;
        /* background-color: #69bde7; */
		background-color: var(--menu-bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }

    header.sticky .nav-btn{
        top: 4rem;
    }

    #check:checked ~ .nav-btn{
        transform: translateX(0);
    }

    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign{
        animation: animate .5s ease forwards var(--i); /* aikane var(--i) holo animation delay. */
    }

    @keyframes animate {
        from{
            opacity: 0;
            transform: translateY(25px);
        }

        to{
            opacity: 1;
            transform: translateY(-20px);
        }
    }

    .nav-links{
        width: 100%;
        flex: initial;
    }

    .nav-links ul{
        width: 100%;
        flex-direction: column;
    }

    .nav-link{
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    .nav-link a{
        padding: 1.2rem 2rem;
        display: block;
    }

    .nav-link:hover > a{
        background-color: var(--hover-menu-bg-color); /*#9E2317;*/
    }

    .log-sign{
        width: 100%;
        flex: initial;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }

    .dropdown, .arrow{
        box-shadow: none;
    }

    .dropDown::before {
        bottom: 15px;
        left: 60px;
    }

    .dropdown-link:nth-child(4) > a{
        border-width: 1px;
    }

    .dropdown.third .dropdown-link:nth-child(3) a{
        border-width: 1px;
    }

    .dropdown, .dropdown.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: var(--hover-menu-bg-color); /*#3183ac;*/
        display: none;
    }

    .nav-link:hover > .dropdown,
    .dropdown-link:hover > .dropdown{
        display: block;
    }

    .dropdown-link > a{
        background-color: transparent;
        color: #000;
        padding: 1.2rem 2rem;
        line-height: 1;
    }

    .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 3rem;
    }

    .dropdown.second .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .nav-link:hover .arrow{
        background-color: #9E2317;
    }

    .arrow{
        background-color: #69bde7;
        left: 8%;
        transform: scale(1.1) rotate(45deg);
        z-index: 1;
    }

    .dropdown.second .arrow{
        top: -5.5px;
        left: 45px;
        background-color: #3498db !important;
        box-shadow: none;
        z-index: 1;
    }

    .dropdown.third .arrow{
        left: 62px;
    }

    .subDropdown::before {
        top: 55%;
        right: 10px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #fff; /* The color of the arrow */
    }
    
    header.sticky ul li a{
        /*color: #fff;*/
		color: var(--main-text-color);
    }
    
    header.sticky .container ul .dropDown::before{
        /*border-top-color: #fff;*/
		border-top-color: #4E2317;
    }
    
    header.sticky .log-sign .btn{
        border-color: #fff;
        color: #fff;
    }
    
    header.sticky .log-sign .btn:last-child{
        background: #fff;
        color: #69bde7;
    }
    header.sticky .log-sign .btn:last-child:hover{
        background: #fff;
        color: #69bde7;
    }
}

.banner{
    position: relative;
    width: 100%;
    /* min-height: 10vh; */ 
    background: #F2EFE9;
}

.banner p{
    padding: 40px;
    font-size: 0.7rem;
    color: var(--main-text-color);
    text-align: justify;
}

.banner p:first-child{
    padding-top: 190px;
}

main {
  padding-top: 175px; /* adjust to the height of your fixed header */
}

section {
  display: block;
  width: 100%;
  margin-top: 0rem;
}

section:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 525px){
	main {
	padding-top: 140px; /* adjust to the height of your fixed header */
	}

    .nav-btn{
		/* top: 100px; */
        position: fixed; /* jokon scroll korbo tkn jayga teke sorbe na.*/
        height: calc(100vh - 19rem);
        top: 8.6rem;
        width: 72%;
    }

	.logo{
		color: #fff;
		max-width: 90%;
	}

	.phone{
		position: absolute;
		top: 6px;
		right: 3%;
		color: #fff;
		max-width: 60%;
	}

}

.page-title {
  color: var(--main-text-color);
  text-align: center;
  padding: 11rem 1rem;
}

:where(h1) {
  margin-block: 0.67em;
  font-size: 2em;
}
.page-title h1 {
  font-size: 2rem;
}

.info-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.8rem 2rem 0.8rem 2rem; /* top right bottom left */
  gap: 1.5rem;
  background-color: var(--main-bg-color);
  position: relative;
}

.info-columns .info-columns {
  background-color: var(--nested-bg-color);
  padding: 0.8rem 0rem 0.8rem 0rem; /* top right bottom left */
}

.column {
  flex: 1;
  min-width: 255px;
  max-width: 100%;
  background-color: #F2EFE9;
  color: var(--main-text-color);   /* Text color in colums */
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.row {
  padding: 0.5rem 0rem; /* less vertical space inside each row */
  background-color: #F2EFE9;
  border-bottom: 0 solid #e5e7eb;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

/* === Start GLOBAL IMAGE STYLE (matches gallery style) === */
/* === Controlled image style (only when you add the class) === */
.image-style {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

/* Optional wrapper for centered presentation */
.image-wrapper {
  display: inline-block;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.custom-img {
  height: auto;      /* preserves aspect ratio */
  max-width: 600px;  /* optional limit */
}

.float-left {
  float: left;
  margin-right: 15px;  /* space between image and text */
  margin-bottom: 10px; /* space below image */
}

.float-right {
  float: right;
  margin-left: 15px;
  margin-bottom: 10px;
}
/* === End GLOBAL IMAGE STYLE (matches gallery style) === */

.column-footer {
  flex: 1;
  min-width: 255px;
  background-color: var(--menu-bg-color);
  color: var(--main-text-color);   /* Text color in colums */
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 0.7rem;
}

ul {
  list-style-type: none;  /* no bullets */
  padding-left: 0;        /* remove indentation */
  margin: 0;              /* optional, for consistent spacing */
}

ul.with-bullets {
  list-style-type: disc;  /* normal filled circle bullets */
  padding-left: 1.5rem;   /* re-add indentation */
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Start Text over images */
/* how to use
	<div class="image-overlay-container">
	   <div class="image-overlay-text">
          <span style="font-family: 'Great Vibes', cursive;'; overflow-wrap: break-word; white-space: pre-wrap;">Text goes here</span>
          <p>Experiment place text over gallery needed for weddings page</p>
       </div>
    </div>
*/

.image-overlay-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.image-overlay-text-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.image-overlay-text {
  position: absolute;
  top: 20px;
  left: 20px;                    /* minimal distance from left */
  margin-right: 20px;            /* ensures spacing from right edge if it grows */
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 1.2em;
  display: inline-block;          /* ✅ shrink-wrap to text */
  max-width: calc(100% - 40px);   /* ✅ prevents overflow near right edge */
  box-sizing: border-box;
}
/* End Text over images */

.footer-row {
  display: flex;
  justify-content: space-between; /* Left item on left, right item on right */
  align-items: flex-start;        /* Top-align the text blocks */
  flex-wrap: wrap;                /* Stack vertically on small screens */
  gap: 1rem;                      /* Optional spacing between them */
  background-color: var(--menu-bg-color);
}

.footer-left,
.footer-right {
  flex: 1;                        /* Let them share available width */
  background-color: var(--menu-bg-color);
}

.footer-right {
  text-align: right;              /* Align right block text */
  background-color: var(--menu-bg-color);
}

/* Responsive behavior */
@media (max-width: 900px) {
  .column {
    flex: 1;
    min-width: 255px;
    max-width: 100%;
    background-color: #F2EFE9;
    color: var(--main-text-color);   /* Text color in colums */
    border-radius: 10px;
    overflow: hidden;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .info-columns {
    flex-direction: column;
  }
}
