 /*
    Student Name: Prathamesh Kamat
    File Name: Web Development
    Date: March 9 2026
*/
CSS Reset,
body, header, nav, main, footer, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Style rules for body and images*/
body{
    background-color: #f6eee4;
}
img{
    max-width: 100%;
    display: block;
}
iframe{
   max-width: 100%;
    display: block;    
}

/* Style rules for mobile viewport*/

/* Style rules to show mobile class and hind tab-desk calss */

.mobile {
  display: block;   /* Show mobile content as block */
}

.tab-desk {
  display: none;    /* Hide desktop tab content */
}

/* Style rules for header area*/
.mobile h1{
    font-family: 'Emblema One', sans-serif;
    padding: 2%;
    text-align: center;
}
.mobile h3{
    font-family: 'Lora', sans-serif;
    padding: 2%;
    text-align: center;
}

/* Style rules for navigation area */

nav{
    background-color: #2a1f14;
}
nav ul{
    list-style: none;
    text-align: center;
}
nav li{
    display:inline-block;
    font-size: 1.5em;
    font-family: Geneva, Arial,sans-serif;
    font-weight: bold;
    color: #f6eee4;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 2em;
    padding-right: 2em ;
    text-decoration: none;
    border-top: solid;
    border-width: 0.5px;
    border-color: #f6eee4;
}
@media (max-width: 600px) {
  nav li {
    display: block;    
  }
}
/* style rules for main content*/
main{
    padding: 2%;
    font-family: 'Lora', sans-serif;

}
main p{
    font-size: 1.25em;
}
main h3{
    padding-top: 2%;
}
main ul{
    list-style-type: square;
}
.link{
    color: #4d3319;
    font-style: normal;
    font-weight: bold;
    font-style: italic;
}
.action{
    font-size: 1.75em;
    font-weight: bold;
    text-align: center;
} 
.round{
    border-radius: 6px;
}
#info ul{
    margin-left: 10%;
}
#contact{
    text-align: center;
}
.tel-link{
    background-color: #2a1f14;
    padding:2%;
    width: 80%;
    margin-bottom: 0%;
    margin-top: 0%;
    margin-left: auto;
    margin-right: auto;
}
.tel-link .round{
    color: #2a1f14;
    text-decoration: none;
    font-weight: bold;
}
/* Style rules for main content */
/*main{
    padding: 2%;
    font-family: Verdana, Arial,sans-serif;
}
main p{
    font-size: 1.25em;
}
main h3{
    padding-top: 2%;
}
main ul{
    list-style-type: square;
}

.link{
    font: #4d3319;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;

}
.action{
    font-size: 1.75em;
    font-weight: bold;
    text-align:center;
}
#contact{
    text-align: center;
}*/

/* Style rules for footer content */
footer{
    font-size: 0.85em;
    background-color: #2a1f14;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 0%;
    padding-right: 0%;
    text-decoration: none;
    color: #f3e6d8;
}
