
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
}

/* nav & header styling */
header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/*CSS hover transition */
nav ul li a:hover {
    color: #e67e22; 
}


.logo {
    width: 100px; 
    height: auto; /* maintains aspect ratio */
}

/* extra styles if needed, ref index */
.hero {
    text-align: center;
    padding: 100px 0;
    color: #fff;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: #ff8c00;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e67e22;
}

/* styles for accommodation page, not yet used */
.accommodations {
    background-color: #fff;
    padding: 50px 0;
}

.accommodation-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.accommodation {
    text-align: center;
}

.accommodation img {
    max-width: 100%;
    border-radius: 5px;
}

.accommodation h3 {
    margin-top: 10px;
}

.accommodation p {
    font-size: 0.9em;
    color: #666;
}

/* About specific styles */
.about {
    padding: 50px 0;
}

.about h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 20px;
}

/* Contact specific styles */
.contacts {
    padding: 50px 0;
}

.contacts table {
    width: 100%;
    border-collapse: collapse;
}

.contacts th, .contacts td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

.contacts th {
    background-color: #333;
    color: #fff;
}

/* Footer stuffs*/
footer {
    
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 20px 0;
    text-align: center;
    background-color:  #ccc;
}

.footer-page{
    position:absolute;
}


.footer-column {
    flex: 1;
}

.footer-column img {
    max-width: 100%;
    height: auto;
}

/* slideshow */
#slideshow-wrapper {
    width: 100%;
    height: 441px;
}

#slideshow {
    width: 100%;
    height: 441px;
    overflow: hidden;
    white-space: nowrap;
}

#slideshow img {
	width: 100%;
    height: 100%;
    display: inline-block;
}

.circle {
    display: inline-block;
    background-color: lightgrey;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 15px;
}

#circle-nav {
    margin-top: -50px;
    text-align: center;
    position:relative
}

#slideshow-wrapper {
    position: relative; 
    width: 100%; 
}

#slideshow {
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 500px; 
    height: 100%;
    overflow: hidden; 
    white-space: nowrap; 
}

#slideshow img {
    max-width: 100%; 
    height: auto; 
}


/*Responsiveness 1024px & 480px*/

@media screen and (max-width: 1024px) {
    
    .container {
        width: 90%; 
    }

    nav ul li {
        margin-right: 10px; 
    }

    
    #slideshow {
        width: 90%; 
    }

    #slideshow img {
        max-width: 100%; 
        height: auto; 
    }
}


@media screen and (max-width: 480px) {
    
    .container {
        width: 100%; 
    }

    nav ul li {
        margin-right: 5px; 
    }

    nav ul li a {
        font-size: 14px; 
    }

    header h1 {
        font-size: 24px; 
    }

    #slideshow {
        width: 100%; 
    }

    #slideshow img {
        max-width: 100%; 
        height: auto; 
    }
}
