@charset "UTF-8";


body, h1, h2, h3, p, ul, li {
   
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    line-height: 1.5;
}

/* Header styles */
header {
    height: 200px;
    text-align:right;
    background-color: darkgreen; 
    color: white; /* Text color in the header */
    padding: 20px 0; 
}

#header-content {

    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items:center;
}

#header-image {
    text-align:left;
}

nav {
    
    text-align:right; 
    font-family: 'Lato', sans-serif;
}

nav ul {
    padding-top: 45px;
    list-style: none;  
}

nav li {
    display:inline-block;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

nav a:hover {
    color: yellow; /* Change text color on hover */
  
    padding: 10px;
}

h1 {
    text-align: center;
    font-size: 2em;
    color:rgb(0, 0, 0);
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1em;
}

#wrapper {
    width: 100%;
   
    margin-bottom: 20px;
   
    background-color: rgb(255, 236, 211);
    max-height: 100vh;
}

.alignright {
    float: right;
    margin-left: 20px;
}

footer {
  margin-top:250px;
    background-color: darkgreen;
    color: white;
    padding: 20px 0;
    text-align: center;
}

#footer-content {
    max-width: 100%;
    margin: 0 auto;
}


.flex-container {
    display: block;
    justify-content: space-between;
}

#column {
    margin-left: 20px;
}


/* --------- SLIDESHOW --------- */

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

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

/* Slideshow images */
#slideshow img {
    width: 100%;
    height: 100%;
    display: inline-block;
}

/* Circles */
.circle {
    display: inline-block;
    background-color: lightgrey;
    width: 1.25%;
    height: 12px;
    border-radius: 50%;
    margin-right: 1.5%;
}

/* Circle navigation */
#circle-nav {
    margin-top: -50px;
    text-align: center;
}

.circle:hover {
    background-color: darkgreen ;
}

.season-box {width:330px;
    height:214px;
    border-radius:5px;
    display:block;
    margin:5px;
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: 0.5;
    transition: opacity 2s;}

 p {
    
      
        font-size: 1em;
    /* Paragraph text color */
    }

/* CSS for luxury log home image */
.fadeimg {
    opacity: 0.75; /* Normal opacity */
    transition: opacity 0.3s ease; /* Smooth transition effect */
}

.fadeimg:hover {
    opacity: 1; /* Full opacity on hover */
}


/* Media Queries for Responsive Design */
@media screen and (max-width: 1024px) {
    
    header {
       width:100%;
        height:auto;
    }
    
    #header-content {
        max-width: 100%;
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px; /* Adjust margin as needed */
    }


    nav ul {
       
        padding-top: 20px;
    }

    nav li {
        display: block;
        margin-bottom: 10px;
    }

    #header-image,
    nav {
     
        text-align: center;
    }

    #wrapper {
        width:100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .alignright {
       float:none;
        margin-left: 10%;
    }

    h2,
    h3 {
        text-align: center;
    }

    #wrapper {
       height:auto;
        padding: 20px; /* Adjust padding as needed */
    }

    .alignright {
        margin: 0; /* Reset margins */
    }

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

    footer {
      width:100%;
        margin-top:none;
    }
}

@media screen and (max-width: 480px) {
    header {
        height: auto;
        text-align: center;
    }

    #header-content {
        flex-direction: column;
    }

    nav {
        text-align: center;
    }

    nav ul {
        padding-top: 20px;
    }

    nav li {
        display: block;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 0.5em;
    }
}