* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Dongle";
    src: url(dongle/Dongle-light.ttf);
    font-weight: 300; 
}

@font-face {
    font-family: "Dongle";
    src: url(dongle/Dongle-Regular.ttf);
    font-weight: normal;
}

@font-face {
    font-family: "Dongle";
    src: url(dongle/Dongle-Bold.ttf);
    font-weight: bold;
}
header {
    display: flex;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: space-between; 
}

.logo img {
    max-width: 130px; 
}

.nav-menu ul {
    display: flex;
    gap: 20px; 
}

.nav-menu li{
    list-style: none;
    margin-right: 20px; 
}
.nav-menu li:last-child{
    margin-right: 0;
}


.nav-menu a {
    text-decoration: none;
    font-family: "Dongle"; 
    font-weight: bold;    
    font-size: 1.3rem; 
    color: #333;
    padding: 5px 15px; 
    border-radius: 5px; 
    transition: all ease 0.3s;
}

.nav-menu a:hover {
    color: #ff7f50;
    background-color: rgba(255, 127, 80, 0.1);  
}



.beach{
    position:relative;
    height:600px;
    overflow:hidden;
}
.beach-image img{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
    z-index:-1;

}


.beach-content{
    position: absolute;
    top:50%;
    Left:50%;
    transform:translate(-50%,-50%) ;
    text-align:center;
    color: #fff;
}
.beach-content h1{
    font-family:"Dongle -bold" ;
    font-size: 4rem;
}
.beach-content p{
    font-family:"Dongle-regular";
    font-size: 1.8rem; 
    margin-top:-20px ;
    margin-left: 10px;
}
.beach-button{
    display:inline-block;
    text-decoration:none ;
    color: #fff;
    background: #ff7f50;
    padding:12px 30px;
    border-radius:50px ;
    font-family:"Dongle-bold" ;
    font-size: 1.6rem ;
    transition:all ease 0.3s;
}
.beach-button:hover{
    background-color: #333;
}
.destination {
    font-size: 2.4rem;
    font-family: "Dongle-bold";
    margin: 40px 80px;
    text-align: center;
}

.destination h2 {
    text-align: center;
    margin-bottom: 40px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

.destination-item {
    font-size: 16px;
}

.destination-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.beach-btn {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    padding: 12px 32px;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 18px; 
    font-weight: bold;
    text-align: center; 
    text-decoration: none;
}
.testimonials {
    margin: 60px 0;
    padding: 0 80px;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

.testimonial-item {
    border: 1px solid #e0e0e0;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.testimonial-item p {
    font-family: "Dongle";
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.testimonial-item strong {
    font-family: "Dongle-bold";
    display: block;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;  
    object-fit: cover;   
    margin: 0 auto 20px; 
}
footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    font-size: 16px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.footer-content p {
    margin-bottom: 20px;
}

.footer-content a {
    color: #ff7f50;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-social {
    margin: 20px 0;
}

.footer-social a {
    margin: 0 10px;
    font-size: 24px;
    color: white;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ff7f50;
}
.body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
.destination-1 {
    background-color: #f4f4f4; 
    padding: 20px;
    text-align: center;
}
.destination-1 h3 {
    color: #333;
    font-size: 2rem;
    margin: 0;
    padding: 20px 0;
}
.destination-1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    margin-top: 20px;
}
.destination-1-item {
    background-color: #ffffff;
    padding: 15px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); 
    border-radius: 10px;
    transition: transform 0.3s; 
}
.destination-1-item:hover {
    transform: scale(1.05); 
}
.destination-1-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; 
    margin-bottom: 15px;
}

.destination-1-item h3 {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    color: #444;
}

.destination-1-item p {
    font-size: 0.9rem;
    color: #666;
}
.Accomodation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.Accomodation-bullet-points {
    list-style: none; 
    padding: 0;
}

.Accomodation-bullet-points li::before {
    content: "\2022"; 
    color: #201c1c; 
    font-size: 1.2em; 
    margin-right: 0.5em; 
    vertical-align: middle; 
}

.Accomodation-item {
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.Accomodation-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.Accomodation-item p {
    color: #666;
}


footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.footer-content {
    text-align: center;
    padding: 0 20px;
}

.footer-content a {
    color: #ff7f50;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}
.sydney-map img {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 40px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section.Contact {
    background-color: #fff;
    padding: 40px;
    margin: 40px 0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; 
}

textarea {
    resize: vertical;
    min-height: 150px;
}
input[type="submit"] {
    background-color: #007BFF;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}
.package {
    border: 1px solid #ccc;
    padding: 20px;
    margin: 20px 0;
    background-color: #f9f9f9; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0,0);
    width:80%; 
    margin-left:auto; 
    margin-right:auto; 
}
@media (max-width: 768px) {
    .package {
        width: 90%; 
        font-size: 14px; 
    }
}




h2 {
    color: #333;
    margin-top: 0; 
}

p {
    line-height: 1.5; 
}
body {
    font-family: Arial, sans-serif;
}

.package-table {
    width: 80%;
    border-collapse: collapse;
    margin: 20px auto;
}

.package-table th, .package-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.package-table th {
    background-color: #f9f9f9;
    font-weight: bold;
}

.package-table td:first-child {
    font-weight: bold;
}

.package-table tr:nth-child(even) {
    background-color: #f2f2f2;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.056);
}

.container h2 {
    text-align: center; 
    margin: 0; 
}


.form-section {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
}


.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.form-button:hover {
    background-color: #0056b3;
}

  
  