
/*Student Name: Olivia McClure
File Name: styles.css
Today's Date: Febuary 18, 2026
*/
/*CSS Reset*/

body, header, nav, main, footer, img, h1, h3, ul {
    margin: 0;
    padding: 0;
    border: 0;
}

/*Style rules for body and images*/
body { 
    font-family:"Cedarville Cursive", Arial, sans-serif;
     background: linear-gradient(
     to bottom,
     #ffd6ec,
     #cde8ff);
     line-height: 1.6;
} 

img {
    max-width: 100%;
    display: block;
}

/*style rules for mobile viewport*/

/*Style rules to show mobile class and hide tab-desk class*/
.mobile {
   display: block;
}

.tab-desk {
    display: none;
}

/*Style rules for header area*/
header {
    padding: 20px;
    text-align: center;
}

/*Style rules for navigation area*/
nav {
    margin-top: 10px;
}

nav ol { 
    list-style-type: upper-roman;
    font-size: 1.5em;
    padding-left: center;
}    

nav li { 
   margin: 8px 0;
}

nav a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
}
nav li a:hover {
    color: #ff66aa;
}    
    
/*Style rules for main content*/
main {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}
/*Images*/
img {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/*Top Feature Image*/
.top-image {
    width: 95%;
    max-width: 900px;
    display: block;
    margin: 20px auto;
}
  
/*Gallery Grid*/
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.gallery img {
    width: 250px;
}

/*Blog Section*/
.blog-box {
    background: linear-gradient(to bottom,
    #ffd6ec, #cde8ff);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/*Contact Box*/
.contact-box {
    background: linear-gradient(to bottom,
    #ffd6ec, #cde8ff);
    padding: 25px;
    border-radius: 8px;
    max-width: 500px;
    margin: auto;
    text-align: center;
    box-shadow:0 3px 8px rgba(0,0,0,0.2);
}

/* Style rules for footer content*/

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    margin-top: 40px;
    background-color: rgba(255,255,255,0.4);
}    
   
.link {
    color: #4d3319;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
} 

.action {
    font-size: 1.75em;
    font-weight: bold;
    text-align: center;
}    

.round {
    border-radius: 6px;
}

#infoul {
    margin-left: 10%;
}


.tel-link {
    background-color: #2a1f14;
    padding: 2%;
    width: 80%;
    margin: 0 auto;
}

.tel-link a {
    color: #f6eee4;
    text-decoration: none;
    font-weight: bold;
}



/*Media Query for Tablet Viewport*/
@media screen and (min-width: 620px) {
.gallery img {
    width: 300px;
}
/*Tablet Viewport: Show tab-desk class, hide mobile class*/

.tab-desk {
    display: block;
}

.mobile {
    display: none;
}

/* Tablet Viewport: Show Style rules nav area */

nav li {
    border-top: none;
    display: inline-block;
    font-size: 1.25em;
}

nav li a {
    padding: 0.5em;  
}

nav li a:hover {
    color: #2a1f14; 
    background-color: #f6eee4;
}
/*Media Query for Desktop Viewport*/
@media screen and (min-width: 900px) {
.gallery img {
    width: 320px;
}

main {
    max-width: 1200px;
}
/*Desktop Viewport: Style rules for nav area*/

nav li {
    font-size: 1.5em;
}

nav li a {
    padding: 0.5em 1.5em;
}

nav li a:hover {
    color: #2a1f14;
    background-color: #f6eee4;
}

/*Desktop Viewport: Style rules for main content*/

#info ol {
    margin-left: 5%;
}
}
/* Media Query for Large Desktop Viewports*/
@media screen and (min-width: 1921px) {

    body {
        background: linear-gradient(#f6eee4, #78593a);
    }

#wrapper {
    width: 1920px;
    margin: 20px auto;
}

main {
    background-color: #f6eee4;
}
}
/*Media Query for Print*/

@media print {
    body {
        background-color: linear-gradient;
        color: black;
    }
}        
        



