* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html{
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

.header {
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(to bottom,  rgba(58, 110, 165, 0.55) 0%, rgba(244, 162, 97, 0.45) 100% ), url(LisbonCity1.jpg);
	background-position: center;
	background-size: cover;
	position: relative;

}

nav {
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}

nav img{
	width: 150px;

}

.navbar {
	flex: 1;
	text-align: right;
}

nav img {
	width: 150px;
}

.navbar ul li {
	list-style: none;
	display: inline-block;
	padding: 6px 12px;
	position: relative;
}

.navbar ul li a {
	color: #ffff;
	text-decoration: none;
	font-size: 20px;
	font-weight: bold;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar ul li::after{
	content:'';
	width: 0%;
	height: 2px;
	background: #c5694f;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.navbar ul li:hover::after{
	width: 100%;
}

.ttl-logo{
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	cursor: pointer;
}

.ttl-logo a{
	text-decoration: none;
	color: inherit;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.ttl-main{
	font-size: 42px;
	font-weight: 800;
	color: #ffffff;
	background: #c5694f;
	padding: 8px 20px;
	border-radius: 10px;
	letter-spacing: 1px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.ttl-sub{
	font-size: 16px;
	font-weight: 600;
	color: #ffff;
	margin-top: 4px;
	letter-spacing: 1px;
}


.text-title{
	width: 90%;
	color: #ffff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	
}

.text-title h1{
	font-size: 120px;
	font-weight: bold;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 10);

}

.text-title p{
	margin: 10px 0 40px;
	font-size: 23px;
	color: #ffff;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 10);
}

.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #ffff;
	border: 1.5px solid #ffff;
	padding: 20px 40px;
	font-size: 18px;
	font-weight: 700;
	background: transparent;
	position: relative;
	cursor: pointer;
	border-radius: 8px;
}

.hero-btn:hover{
	border:  1px solid #c5694f;
	background: #c5694f;
	transition: 1s;
}



@media(max-width: 800px){

	nav{
		padding: 12px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 12px;
		
	}

    .navbar{
        padding: 12px 0;
        background: #c5694f;  
        position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 999;
		margin: auto;
    }

    .navbar ul {
		justify-content: flex-start;
        display: flex;
        overflow-x: auto;     
        gap: 20px;
        padding: 0 10px;
        white-space: nowrap; 
		width: 100%;
    }

	.navbar ul::-webkit-scrollbar{
		height: 4px;
	
	}

	.navbar ul::-webkit-scrollbar-track{
		background: #c5694f;
	}

	.navbar ul::-webkit-scrollbar-thumb{
		background: #ffff;
		border-radius: 4px;
		border: 1px solid rgba(58, 110, 165, 0.55);
		background-image: linear-gradient(45deg,
        rgba(58, 110, 165, 0.55) 25%,
        transparent 25%,
        transparent 50%,
        rgba(58, 110, 165, 0.55) 50%,
        rgba(58, 110, 165, 0.55) 75%,
        transparent 75%,
        transparent);
		background-size: 6px 6px;

	}


    .navbar ul li a {
        font-size: 10px;
    }

	.text-title h1{
	font-size: 65px;
	font-weight: bold;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);

    }

	.text-title{
		top: 60%;
	}

	.ttl-logo{
		transform: scale(0.75);
		transform-origin: left center;
		margin-left: 10px;
		margin-top: 50px;
	}

	.ttl-main{
		font-size: 25px;
		padding: 5px 14px;
		border-radius: 8px;
	}

	.ttl-sub{
		font-size: 12px;
		margin-top: 2px;
	}

	.hero-btn{
		padding: 12px 24px;
		font-size: 14px;
		background: #c5694f;
	}

    }


/*------Lisbon Intro-------*/


.section-intro{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px;
}

.section-divider{
	content: "";
	display: block;
	width: 60%;
	height: 1px;
	background: #ddd;
	margin: 20px auto 40px auto;
}

.intro-paragraph{
    max-width: 2000px;
    width: 80%;
    margin: 60px auto;
    background: #DEF3F7;
    padding: 35px 40px; 
    border-radius: 14px;
    text-align: left;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

.intro-paragraph h3{
	font-size: 26px;
	margin-bottom: 18px;
	color: #c5694f;
	font-weight: 700;
}

.intro-image{
	flex: 0.6;
	height: 600px;
	overflow: hidden;
	border-radius: 12px;
}

.intro-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.intro-text{
	flex: 1;
	padding-top: 5px;
}

.intro-text p{
	padding: 0;
}

.intro-highlights{
	list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.intro-highlights li {
	color:#333333;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.6;
	padding: 2px;
	margin-bottom: 12px;
	line-height: 1.6;
}

.intro-highlights li::before {
    content: "•";
    color: #c5694f;
    font-weight: 700;
    margin-right: 10px;
    position: relative;
    top: 0;
}

h1{
	font-size: 45px;
	font-weight: 700;
	padding-bottom: 10px;
}

p{
	color:#333333;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.6;
	padding: 10px;
}

.row{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 800px){

	.intro-paragraph{
		flex-direction: column;
		text-align: center;
		padding: 30px;
	}

	.intro-image img{
		width: 100%;
		height: 250px;
		margin-bottom: 20px;
	}

	.intro-text{
		text-align: center;
	}
}

/*------Destinations Cards-------*/


.destination-col{
	flex-basis: 23%;
	margin-bottom: 30px;
	position:relative;
	cursor: pointer;
	display: flex;
	flex-direction: column;

}

.image-wrapper{
	position: relative;
	height: 600px;
	overflow: hidden;
	border-radius: 15px;
}

.image-wrapper img{
	width: 100%;
	height: 600px;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.4s ease;
}

.layer{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	transition: 0.5s;
	z-index: 2;
}

.image-wrapper:hover .layer{
	background: rgba(232, 131, 71, 0.45);
}

.layer h3{
	width: 100%;
	color: #ffff;
	font-size: 28px;
	font-weight: 600;
	bottom: 20%;
	left: 50%;
	opacity: 0;
	transform: translateX(-50%);
	position: absolute;
	opacity: 0;
	transition: opacity 0.5s ease, bottom 0.5s ease;

}

.image-wrapper:hover .layer h3{
	bottom: 50%;
	opacity: 1;
}

.image-wrapper:hover img{
	transform: scale(1.05);
}

.card-title{
	font-size: 18px;
	font-weight: 600;
	margin-top: 10px;
	color: #333333;
}

.card-btn{
	text-align: center;
	margin-top: 12px;
	position: relative;
	z-index: 5;
	margin-top: auto;
}

.card-btn a{
	display: inline-block;
	padding: 10px 16px;
	background-color: #3a6ea5;
	color: #ffff;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.3s ease, transform 0.3s ease;
}

.card-btn a:hover{
	background-color: #2d5886;
	transform: translateY(-2px);
}


@media(max-width: 800px){
	.row{
		flex-direction: column;
	}
}


/*------DayTrips Highlight-------*/


.daytrip{
	max-width: 2000px;
	width: 80%;
	margin: 100px auto;
	padding: 50px;
	background: #EDDFBF;
	border-radius: 14px;
	display: flex;
	gap: 50px;
	align-items: center;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.daytrip-text{
	flex: 1;
}

.daytrip-text h3{
	font-size: 26px;
	margin-bottom: 18px;
	color: #3a6ea5;
	font-weight: 700;
}

 
.daytrip-text p{
	margin-bottom: 20px;
}

.daytrip-btn{
	display: inline-block;
	background:#3a6ea5;
	color: #ffff;
	padding: 10px 16px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	transition: background 0.3s ease, transform 0.3s ease;
}

.daytrip-btn:hover{
	background-color: #2d5886;
	transform: translateY(-2px);
}

.daytrip-images {
	flex: 1;
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.daytrip-images img{
	width: 100%;
	height: 380px;
	object-fit: cover;
	border-radius: 15px;
	transition: transform 0.35s ease;
}

.daytrip-images img:hover{
	transform: scale(1.03);
}

.img-wrapper{
	flex: 1;
	position: relative;
}

.img-caption{
	position: absolute;
	bottom: 10px;
	left: 12px;
	color: #ffff;
	background: rgba(0, 0, 0, 0.35);
	padding: 6px 10px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	z-index: 5;
}

@media(max-width: 800px){
	.daytrip{
		flex-direction: column;
	}

	.daytrip-images{
		flex-direction: column;
	}
}

/*------Map Image with Districts-------*/


.section-intro p{
	margin-bottom: 40px;
}

.districts-content{
	max-width: 2000px;
    width: 95%;
    margin: 60px auto;
	display: flex;
	gap: 40px;
	align-items: flex-start;
	text-align: left;
	background: #FBDEC5;
	padding: 40px;
	border-radius: 14px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.map-image{
	flex: 1;
}

.map-image img{
	width: 100%;
	height:  auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


.districts-text{
	flex: 1;
}

.districts-text h3{
	font-size: 26px;
	margin-bottom: 18px;
	color: #3a6ea5;
	font-weight: 700;
}

#link-text{
	margin-bottom: 20px;
}

.districts-text ul{
	padding-left: 3px;
	margin-bottom: 20px;
	list-style: none;
}

.districts-text ul li{
	color:#333333;
	font-size: 22px;
	font-weight: 400;
	line-height: 22px;
	padding: 10px;
	margin-bottom: 12px;
	line-height: 1.6;
}

.districts-text ul li::before{
	content: "•";
	color: #c5694f;
	font-weight: 700;
	margin-right: 8px;
}

.districts-text ul li strong{
	font-weight: 600;
}

.districts-btn{
	display: inline-block;
	background: #3a6ea5;
	color: #ffff;
	padding: 10px 16px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s ease, transform 0.3s ease;
}

.districts-btn:hover{
	background: #2d5886;
	transform: translateY(-2px);
}

@media(max-width: 800px){
	.distrcits{
		flex-direction: column;
		
	}

	.map-image, .distrcits-text{
		flex: 1 1 100%;
	}

	.districts-content{
		flex-direction: column;
		text-align: left;
		gap: 30px;
	}

	.map-image img{
		width: 100%;
		height: auto;
		margin: 0 auto;
	}
}


/*------Reviews-------*/


.reviews-row{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;

	align-items: stretch;
	gap: 30px;

	
}

.reviews-col{
	flex: 0 1 500px;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
	background: #EDDFBF;
	padding: 25px;
	cursor: pointer;
	display: flex;

	gap: 20px;
}

.reviews-col img{
	height: 40px;
	margin-left: 5px;
	margin-right: 30px;
	border-radius: 50%;
}

.reviews-col p{
	padding: 0;
}

.reviews-col h3{
	margin-top: 15px;
	text-align: left;
}

.reviews-col i{
	color: #c5694f;
}


/*------AboutUs-------*/


.section-intro  p{
	margin-bottom: 40px;
}

.about-content{
	display: flex;
	gap: 150px;
	align-items: center;
	text-align: left;

	max-width: 1100px;
	margin: 0 auto;

	border: 1px solid #EAD8B1;
	padding: 40px 40px;
	border-radius: 14px;	
}

.about-text{
	flex: 1;
}

.about-text h3{
	font-size: 26px;
	font-weight: 700;
	color: #c5694f;
	margin-bottom: 20px;
	text-align: left;
	letter-spacing: 0.5px;
}

.about-image{
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
}

.about-image img{
	width: 285px;
	height: 285px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

@media(max-width: 800px){

	.about-content{
		flex-direction: column;
		text-align: center;
		gap: 30px;
	}

    .about-image img{
		width: 200px;
		height: 200px;
		margin-top: 10px;
	}

	.about-text{
		text-align: center;
	}

}


/*------Call To Action-------*/

.section-divider{
	content: "";
	display: block;
	width: 60%;
	height: 1px;
	background: #ddd;
	margin: 20px auto 40px auto;
}



.cta{
	margin: 100px auto;
	width: 60%;
	background-image: linear-gradient(to bottom,  rgba(58, 110, 165, 0.55) 0%,
	 rgba(0,0,0,0.7) 100% ), url(YellowTram2.jpg);
	background-position: center 80%;
	background-size:  cover;
	border-radius: 10px;
	text-align: center;
	padding: 100px 0;
}


.cta h1{
	color: #ffff;
	margin-bottom: 10px;
	padding: 0;
}

.cta p{
	color: #ffff;
	font-weight: 530;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
	margin-bottom: 30px;
}

@media(max-width: 800px){
	.cta h1{
		font-size: 25px;
	}

}


/*------Footer-------*/


.footer{
	width: 100%;
	text-align: center;
	padding: 40px 0;
	color: #ffff;
	background-color: #3a6ea5;

	margin-top: 100px;
}

.footer-links{
	margin-bottom: 20px;
}

.footer-links a{
	color: #ffff;
	text-decoration: none;
	margin: 0 12px;
	font-size: 20px;
	font-weight: 500;
	transition: opacity 0.3s ease;
}

.footer-links a:hover{
	opacity: 0.7;
}

.footer-socials{
	margin-bottom: 20px;
}

.footer-socials i{
	font-size: 22px;
	margin: 0 10px;
	cursor: pointer;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-socials i:hover{
	transform: translateY(-3px);
	opacity: 0.7;
}

.footer-credit{
	font-size: 17px;
	opacity: 0.9;
	color: #ffff;
}



/*------Hotels page-------*/


.sub-header{
	height: 40vh;
	width: 100%;
	background-image: linear-gradient(to bottom,  rgba(58, 110, 165, 0.55) 0%, rgba(244, 162, 97, 0.45) 100% );
	background-position: center; 
	background-size: cover;
	text-align: center;
	color: #ffff;
}

.sub-header h1{
	margin-top: 0;
	font-size: 80px;
	font-weight: bold;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.sub-header p{
	margin: 10px 0 40px;
	font-size: 23px;
	color: #ffff;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
}


/*------Hotels Intro-------*/


.section-intro p{
	margin-bottom: 25px;
}

.hotelintro-filters{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 10px;

}

.filter-tag{
	background: #3a6ea5;
	color: #ffff;
	font-weight: bold;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 14px;
	border: 1px solid #d4c298;
	transition: 0.25s ease;
}

.filter-tag:hover{
	background: #c5694f;
	color: #ffff;
	transform: translateY(-2px);
}

@media(max-width: 800px){

	.sub-header h1{
		font-size: 40px;
		margin-top: 0;

	}

	.sub-header p{
		font-size: 18px;
		padding-top: 2px;
		margin-top: 0;
	}

	.hotel-intro h1{
		font-size: 32px;
	
	}
}


/*------Hotels Cards-------*/


.hotel-list{
	width: 80%;
	margin: 0 auto 100px auto;
	padding-top: 50px;
}

.hotel-list::before{
	content: "";
	display: block;
	width: 60%;
	height: 1px;
	background: #ddd;
	margin: 20px auto 40px auto;
}

.hotel-card{
	display: flex;
	align-items: flex-start;
	padding: 20px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
	border-left:  6px solid #c5694f;
	
}

.hotel-image{
	flex: 0 0 575px;
	margin-right: 20px;
}

.hotel-image img{
	width: 100%;
	height: 420px;
	display: block;
	border-radius: 8px;
	filter: brightness(0.98) saturate(1.05);
}

.photo-credit{
	font: 10px;
	color: #333333;
	margin-top: 6px;
}

.hotel-info{
	flex: 1;
	text-align: left;
}

.hotel-info h3{
	font-size: 23px;
	font-weight: 600;
	margin: 0 0 6px 0;
}

.hotel-star{
	font-size: 23px;
	font-weight: 600;
	color: #2d5886;
	margin-bottom: 6px;
}

.hotel-filters{
	margin: 0 0 12px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-start;

}

.price{
	font-weight: bold;
	margin-bottom: 10px;
}

.hotel-btn{
	display: inline-block;
	padding: 10px 16px;
	background: #3a6ea5;
	color: #ffff;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: background 0.3s ease, transform 0.3s ease;
}

.hotel-btn:hover{
	background: #2d5886;
	transform: translateY(-2px);
}

@media(max-width: 800px){

	

	.hotel-card{
		flex-direction: column;
		align-items: flex-start;
		padding: 16px;
		border-left: 4px solid #c5694f
	}

	.hotel-image{
		margin: 0 0 15px 0;
		width: 100%;
		flex: none
	}

	.hotel-image img{
		width: 100%;
		height: auto;
		object-fit: cover;
		border-radius: 8px;
	}

	.hotel-info h3{
		font-size: 22px;
	}

	.hotel-info p{
		font-size: 18px;
	}

}


/*------Attractions Page  Highlight Box-------*/

.section-intro-strip::before{
	display: none;
}

.highlight-strip{
	width: 100%;
	background: #DEF3F7;
	padding: 30px 0;
}

.attraction-highlight{
	width: 80%;
	margin: auto;
	padding-top: 50px;
	padding-bottom: 80px;
}

.highlight-box{
	display: flex;
	gap: 40px;
	align-items: center;
	background: #ffff;
	padding: 40px;
	border-radius: 14px;
	margin-bottom: 60px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);

	align-items: stretch;
}

.reverse{
	flex-direction: row-reverse;
}

.highlight-image{
	flex: 0 0 50%;
	max-width: 45%;

	overflow: hidden;
	border-radius: 12px;
}

.highlight-image img{
	width: 100%;
	height: 600px;
	object-fit: cover;
	transform: scale(1.08);
	transition: transform 0.3s ease, object-position 0.35s ease;
}

.highlight-image img:hover{
	transform: scale(1);
}

.highlight-info{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 0;
	height: 100%;
}

.highlight-info h3{
	font-size: 28px;
	font-weight: 700;
	color: #c5694f;
	margin-bottom: 12px;
	margin-top: 0;
}

.highlight-info p{
	margin-top: 0;
	margin-bottom: 20px;
	flex-grow: 1;
}

.attraction-tags{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 15px;
}

.free-tag{
	background: #f4a261;
	color: #ffff;
	border: 1px solid #EAD8B1;
	font-weight: 600;
	padding: 6px 10px;
	border-radius: 6px;
	position: relative;
}

.free-tag::before{
	content: "✦";
	margin-right: 6px;
	color: #ffff;
	font-size: 12px;
}

.attraction-btn{
	display: inline-block;
	padding: 10px 16px;
	background: #3a6ea5;
	color: #ffff;
	border-radius: 8px;
	text-decoration: none;
	margin-top: auto;
	font-weight: 600;
	font-size: 16px;
	transition: background 0.3s ease, transform 0.3s ease;
	align-self: flex-start;
	width: auto;
}

.attraction-btn:hover{
	background: #2d5886;
	transform: translateY(-2px);
}

@media(max-width: 800px){

	.highlight-box, .reverse{
		flex-direction: column;
		text-align: left;
		gap: 20px;
		padding: 20px;
	}

	.highlight-image{
		max-width: 100%;
		flex: none;
	}

	.highlight-image img{
		width: 100%;
		max-width: 100%;
		height: 220px;
		object-fit: cover;
	}

	.highlight-info p{
		font-size: 18px;
	}
}


/*------Attractions Cards-------*/


.attraction-lists{
	width: 70%;
	margin: auto;
	padding-top: 50px;
	padding-bottom: 100px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
}

.attraction-card{
	display: flex;
	padding: 10px;
	border-bottom: 1px solid #ddd;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	flex-direction: column;
	height: 100%;
	border: 1px solid #eee;

}

.attraction-card:hover{
	transform: translateY(-2px);
	transition: 0.3s ease;
}

.card-image img{
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 10px;
}

.card-info{
	flex: 1;
	display: flex;
	flex-direction: column;
}

.card-info h4{
	font-size: 22px;
	font-weight: 700;
	color: #333333;
	margin-bottom: 10px;
}

.card-info.attraction-tags{
	margin-bottom: 12px;
}

.card-info p{
	margin-bottom: 12px;
}

.card-image{
	overflow: hidden;
	border-radius: 12px;
	transition: 0.3s ease;
}

.card-image img {
	transition: transform 0.35s ease;
	overflow: hidden;
	border-radius: 12px;
}

.card-image img:hover{
	transform: scale(1.05);
}


@media(max-width: 800px){

	.attraction-lists{
		grid-template-columns: 1fr;
		width: 80%;
	}

	.attraction-card{
		flex-direction: column;
		text-align: left;

	}

	.card-image img{
		width: 100%;
		height: 220px;
		object-fit: cover;
	}

	.card-image{
		width: 100%;
	}

	.card-info p{
		font-size: 18px;
	}
}


/*------Activities Cards-Intro-------*/


.activity-cards-intro{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px
}

.activity-cards-intro::before{
	content: "";
	display: block;
	width: 60%;
	height: 1px;
	background: #ddd;
	margin: 20px auto 40px auto;
}


/*------Activities Cards-------*/


.activities-highlight{
	width: 70%;
	margin: auto;
	padding-top: 50px;
	padding-bottom: 100px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
	
}

.activity-card{
	display: flex;
	padding: 10px;
	border-bottom: 1px solid #ddd;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	flex-direction: column;
	height: 100%;
	border: 1px solid #eee;
}

.activity-card:hover{
	transform: translateY(-2px);
	transition: 0.3s ease;
}

.activity-tags{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 15px;
}

.card-info.activity-tags{
	margin-bottom: 12px;
}

.activity-btn{
	display: inline-block;
	padding: 10px 16px;
	background: #3a6ea5;
	color: #ffff;
	border-radius: 8px;
	text-decoration: none;
	margin-top: auto;
	font-weight: 600;
	font-size: 16px;
	transition: background 0.3s ease, transform 0.3s ease;
	align-self: flex-start;
	width: auto;
}

.activity-btn:hover{
	background: #2d5886;
	transform: translateY(-2px);
}

@media(max-width: 800px){

	.activities-highlight{
		grid-template-columns: 1fr;
		width: 80%;
	}

	.activity-card{
		flex-direction: column;
		text-align: left;

	}

	.card-image img{
		width: 100%;
		height: 220px;
		object-fit: cover;
	}

	.card-image{
		width: 100%;
	}

	.card-info p{
		font-size: 18px;
	}
}

@media(max-width: 1024px){
	.activities-highlight{
		grid-template-columns: repeat(2, 1fr);
	}
}


/*------Activities DayTrips-------*/

.daytrip-box{
	max-width: 2200px;
	width: 100%;
	margin: 60px auto;
	padding: 28px;
	background: #DEF3F7;
	border-radius: 14px;
	display: flex;
	gap: 30px;
	align-items: stretch;
}

.daytrip-box.reverse{
	flex-direction: row-reverse;
}

.day-trip-images{
	flex: 1.6;
	display: flex;
	flex-direction: row;
	gap: 15px;
}

.daytrip-img{
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	flex: 1;
	height: auto;

	display: block;
	isolation: isolate
}

.daytrip-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.08);
	transition: transform 0.3s ease, object-position 0.35s ease;
}

.daytrip-img img:hover{
	transform: scale(1);
}

.img-align-left{
	object-fit: cover;
	object-position: 35% center;
}

.daytrip-info{
	flex: 0.8;
	text-align: left;

	display: flex;
	flex-direction: column;
}

.daytrip-info h3{
	font-size: 26px;
	margin-bottom: 18px;
	color: #c5694f;
	font-weight: 700;
}

.daytrip-info p{
	margin-bottom: 6px;
}

.recommended{
	margin-bottom: 20px;
	font-size: 20px;
}

.daytrip-info h4{
	margin-top: 16px;
	margin-bottom: 8px;
	color: #3a6ea5;
	font-size: 24px;
}

.daytrip-info ul{
	padding-left: 3px;
	margin-bottom: 10px;
	list-style: none;
}

.daytrip-info ul li{
	color:#333333;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.6;
	padding: 4px 0;
	margin-bottom: 6px;
	line-height: 1.4;
}

.daytrip-info ul li strong{
	font-weight: 600;
	
}

.daytrip-info ul li::before{
	content: "•";
	color: #c5694f;
	font-weight: 700;
	margin-right: 8px;
}

.sight{
	margin-bottom: 18px;
}

.sight strong{
	color: #333333;
	font-size: 22px;
}

.daytrip-btn{
	display: inline-block;
	padding: 10px 16px;
	background-color: #3a6ea5;
	color: #ffff;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.3s ease, transform 0.3s ease;
	margin-top: auto;
	width: fit-content;
	align-self: flex-start;
}

.daytrip-btn:hover{
	background-color: #2d5886;
	transform: translateY(-2px);
}

@media(max-width: 800px){
	.daytrip-box{
		flex-direction: column;
		padding: 25px;
		gap: 30px;
	}

	.day-trip-images{
		flex-direction: column;
		
	}

	.daytrip-img{
		height: 260px;
		position: relative;
		overflow: hidden;
		
	}
	
	.daytrip-img img{
		height: 260px;
		width: 100%;
		object-fit: cover;
	}

	

	.daytrip-box.reverse{
		flex-direction: column;
	}
}


/*------Sintra-Cascais Park Hike Trail-------*/

.park-hero-image{
	width: 100%;
	height: 350px;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	margin-bottom: 35px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.park-hero-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.08);
	transition: transform 0.3s ease, object-position 0.35s ease;
}

.park-hero-image img:hover{
	transform: scale(1);
}

.natural-park{
	width: 90%;
	margin: 0 auto;
	margin-top: 20px;
}

.park-content{
	display: flex;
	justify-content: flex-start;
	gap: 40px;
	padding: 25px;
	border: 1px solid #e6e6e6;
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	align-items: flex-start;
	margin-bottom: 20px;
	text-align: left;
}

.park-text-block{
	flex: 2;
	padding-right: 20px;
	border-right: 1px solid #e4e4e4;
}

.park-text{
	margin-bottom: 18px;
}

.park-content h3{
	font-size: 26px;
	margin-bottom: 18px;
	color: #c5694f;
	font-weight: 700;
}

.park-content ul{
	padding-left: 3px;
	margin-bottom: 10px;
	list-style: none;
}

.park-content ul li{
	color:#333333;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.6;
	padding: 4px 0;
	margin-bottom: 6px;
	line-height: 1.4;
}

.park-content ul li strong{
	font-weight: bold
}

.park-content ul li::before{
	content: "•";
	color: #c5694f;
	font-weight: 700;
	margin-right: 4px;
}

.park-btn{
	display: inline-block;
	padding: 10px 16px;
	background-color: #3a6ea5;
	color: #ffff;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.3s ease, transform 0.3s ease;
	margin-top: auto;
	width: fit-content;
	align-self: flex-start;
}

.park-btn:hover{
	background-color: #2d5886;
	transform: translateY(-2px);
}

.park-map{
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-left: 20px;
	
}

.park-map img{
	width: 100%;
	max-width: 800px;
	max-height: 500px;
	object-fit: contain;
	border-radius: 14px;
	padding: 0;
}

@media(max-width: 800px){

	.park-hero-image img{
		height: 350px;
	}

	.natural-park{
		width: 95%;
	}

	.park-content{
		flex-direction: column;
		gap: 25px;
		padding: 20px;
	}

	.park-text-block{
		width: 100%;
	}

	.park-map{
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.park-map img{
		max-width: 100%;
		height: 250px;
		object-fit: contain;
	}
}


/*------3-day Itinerary-------*/


.itinerary-strip{
	width: 100%;
	background: #FBDEC5;
	padding: 10px 0 40px;
	margin-top: 60px;
}

.itinerary-contents{
	max-width: 1400px;
	width: 100%;
	margin:  0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.itinerary-box{
	background: #ffffff;
	padding: 16px 22px;
	border-radius: 14px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s, box-shadow 0.3s ease;
	text-align: left;
}

.itinerary-box:hover{
	transform: scale(1.06);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.itinerary-box h3{
	font-size: 26px;
	margin-bottom: 18px;
	color: #c5694f;
	font-weight: 700;
}

.itinerary-box p{
	margin-bottom: 14px;
}

.itinerary-box ul{
	padding-left: 0px;
	margin-bottom: 10px;
	list-style: none;
}

.itinerary-box ul li{
	margin-bottom: 8px;
	font-size: 22px;
	line-height: 1.6;
}

.itinerary-box ul li::before{
	content: "•";
	color: #c5694f;
	font-weight: 700;
	margin-right: 8px;
}

@media(max-width: 800px){
	.itinerary-contents{
		grid-template-columns: 1fr;
		gap: 22px;
		width: 90%;
		margin: 0 auto;
	}
}


/*------Transport Page-------*/


.transport-grid{
	max-width: 1400px;
	width: 90%;
	margin: 50px auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.transport-box{
	background: #ffffff;
	padding: 20px 22px;
	border-radius: 14px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: left;
	background: #faf1e2;
}

.transport-box:hover{
	transform: scale(1.06);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.transport-box i{
	font-size: 42px;
	color: #c5694f;
	margin-bottom: 12px;
}


.transport-box h3{
	font-size: 26px;
	margin-bottom: 18px;
	color: #c5694f;
	font-weight: 700;
}

.transport-box p{
	margin-bottom: 10px;
}

.transport-box ul{
	padding-left: 0;
	list-style: none;
}

.transport-box ul li{
	font-size: 22px;
	line-height: 1.6;
	margin-bottom: 8px;
}

.transport-box ul li::before{
	content: "•";
	color: #c5694f;
	font-weight: 700;
	margin-right: 6px;
}


/*------Travel Passes-------*/

.passes-strip{
	width: 100%;
	background: #DEF3F7;
	padding: 40px 0 60px;
	margin-top: 50px;
}

.passes-section{
	margin: 0 auto;
	text-align: center;
	width: 100%;
	max-width: 1300px;
	padding: 0 20px;
}

.passes-box{
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 25px;
}

.pass-card{
	background: #ffffff;
	padding: 14px 16px;
	border-radius: 14px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: left;
	width: 380px;
}

.pass-card:hover{
	transform: scale(1.05);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.pass-card img{
	width: 100%;
	height: 150px;
	border-radius: 10px;
	margin-bottom: 16px;
	object-fit: contain;
}

.pass-card h4{
	margin-top: 24px;
	margin-bottom: 4px;
	color: #333333;
	font-size: 20px;
}

.pass-card ul{
	padding-left: 0;
	list-style: none;
}

.pass-card ul li{
	font-size: 22px;
	line-height: 1.6;
	margin-bottom: 8px;
}

.pass-card ul li::before{
	content: "•";
	color: #c5694f;
	font-weight: 700;
	margin-right: 6px;
}

.tips-icon{
	font-size: 28px;
	color: #c5694f;
	margin-bottom: 8px;
}


/*------Transport Table-------*/


.transport-table-section{
	margin-top: 1px;
	text-align: center;
}

.transport-table{
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	border-collapse: collapse;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
	
}

.transport-table th{
	background: #3a6ea5;
	color: #ffff;
	padding: 14px;
	font-size: 18px;
	text-align: left;
}

.transport-table td{
	padding: 14px;
	font-size: 18px;
	background: #ffffff;
	border-bottom: 1px solid #e6e6e6;
	background: #faf1e2;
}

.transport-table tr:last-child td{
	border-bottom: none;
}

.transport-table tr:hover td{
	background: #f7f7f7;
}


/*------CTA Attractions-------*/

.cta-attractions{
	margin: 100px auto;
	width: 60%;
	background-image: linear-gradient(to bottom,  rgba(58, 110, 165, 0.55) 0%,
	 rgba(0,0,0,0.7) 100% ), url(oceanerium.jpg);
	background-position: center 80%;
	background-size:  cover;
	border-radius: 10px;
	text-align: center;
	padding: 100px 0;
}

.cta-attractions h1{
	color: #ffff;
	margin-bottom: 10px;
	padding: 0;
}

.cta-attractions p{
	color: #ffff;
	font-weight: 530;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
	margin-bottom: 30px;
}


/*------Transport mobile display-------*/


@media(max-width: 1000px){
	.transport-grid{
		grid-template-columns: repeat(2, 1fr);
	}

	.passes-box{
		grid-template-columns: 1fr;
	}
}

@media(max-width: 800px){
	.transport-grid{
		grid-template-columns: 1fr;
		width: 95%;
	}

	.pass-card img{
		height: 140px;
	}

	.transport-table{
		width: 100%;
	}

	.cta-attractions h1{
		font-size: 25px;
	}

}


/*------Contact Us Page-------*/


.contact-container{
	max-width: 1300px;
	width: 90%;
	margin: 40px auto 80px;
	display: flex;
	gap: 40px;
	align-items: stretch;
	
}

/*------Contact Us Box-------*/


.contact-box{
	flex: 1;
	padding: 32px 32px;
	border-radius: 14px;
	box-shadow: 0 4px 14px rgb(0, 0, 0, 0.06);
	background: #EDDFBF;
	transition: transform 0.25s ease, box-shadow 0.25s ease;

	display: flex;
	flex-direction: column;
}

.contact-box:hover{
	transform: translateY(-4px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.contact-box h3{
	font-size: 26px;
	margin-bottom: 18px;
	color: #3a6ea5;
	font-weight: 700;
}

.contact-box p{
	margin-bottom: 10px;
}

.contact-info h4{
	margin-top: 16px;
	margin-bottom: 4px;
	color: #333333;
	font-size: 20px;

	padding-top: 10px;
	border-top: 2px solid rgba(0,0,0,0.1);
}

.contact-info ul{
	padding-left: 0;
	list-style: none;
}

.contact-info ul li{
	font-size: 22px;
	line-height: 1.6;
	margin-bottom: 8px;
}

.contact-info ul li::before{
	content: "•";
	color: #c5694f;
	font-weight: 700;
	margin-right: 6px;
}


/*------Feedback Form Box-------*/


.feedback-form label{
	display: block;
	margin: 12px 0 6px;
	font-size: 20px;
	font-weight: 600;
	color: #333333;
}

.feedback-form input, 
.feedback-form textarea{
	width: 100%;
	padding: 10px 12px;
	font-size: 16px;
	border-radius: 8px;
	border: 1px solid #d1d1d1;
	margin-bottom: 10px;
	outline: none;
	transition: border 0.2s ease;
	background: #fffdfa;
}

.feedback-form input:focus, 
.feedback-form textarea:focus{
	border: 1px solid #3a6ea5;
}

.rating-options{
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 12px;
	padding-left: 4px;
}

.rating-options .rating-title{
	font-size: 20px;
	font-weight: 600;
	margin: 4px;
}

.rating-options label{
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 400;
	cursor: pointer;
	width: fit-content;
}

.rating-options input[type="radio"]{
	margin: 0;
	transform: translateY(-1px);
}

.radio{
	text-align: left;
}

.contact-btn{
	padding: 12px 18px;
	background: #3a6ea5;
	color: #ffff;
	font-weight: 600;
	font-size: 16px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
	margin-top: 10px;
}

.contact-btn:hover{
	background: #2d5886;
	transform: translateY(-2px);
}

@media(max-width: 800px){
	.contact-container{
		flex-direction: column;
		width: 95%;
		gap: 30px;
	}

	.contact-box{
		width: 100%;
	}
}


/*------Landscape CSS for MobilE&Tablet-------*/

@media screen and (max-height: 500px) and (orientation: landscape){
	.header{
		min-height: 100vh;
		background-position: center;
	}

	.navbar ul li{
		padding: 3px 6px;
	}

	.navbar ul li a{
		font-size: 18px;
	}

	.text-title{
		top: 60%;
	}

	.text-title h1{
		font-size: 60px;
	}

	.hero-btn{
		padding: 12px 24px;
		font-size: 14px;
		background: #c5694f;
	}

	.sub-header{
		height: 60vh;
	}

	.sub-header h1{
		font-size: 55px;
		margin: 0;
		line-height: 1.1;
	}

	.sub-header p{
		margin: 8px 0 0 0;
	}

	.intro-paragraph{
		width: 100%;
	}

	.daytrip{
		width: 100%;
	}

	.attraction-lists, 
	.activities-highlight, 
	.itinerary-contents{
		grid-template-columns: repeat(2, 1fr);
		width: 85%;
		margin: auto;
	}
}
