 /*
    Student Name: Prathamesh Kamat
    File Name: Web Development
    Date: March 10 2026
*/
CSS Reset,
body, header, nav, main, footer, h1, h2, h3, p, ul, li,aside, figure, figcaption {
  margin: 0;
  padding: 0;
}

aside{
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 4px 4px 10px #c5a87c;
}
figure{
    border: 4px solid #2a1f14;
    box-shadow: 6px 6px 10px #c5a687;
    max-width: 100%;
    display: block;
    height: auto;
    margin:2% auto;
}
figcaption{
    padding: 2%;
    border-top: 4px solid #2a1f14;
}

/* Style rules for body and images*/
body{
    background-color: #f6eee4;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
}
iframe{
   max-width: 100%;
    display: block;    
}

/* 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;
}
.mobile-tablet h3{
    font-family: 'Lora', sans-serif;
    padding: 2%;
    text-align: center;   
}

.desktop{
    font-family: 'Lora', sans-serif;
    padding: 2%;
    text-align:left;
}
/* 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;
}

 /* Style rules for mobile viewport*/
@media (max-width: 600px) {
    nav li {
        display: block;    
    }
   
    /* 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 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 form elemets*/
fieldset input textarea{
    margin-bottom: 2%;
} 
fieldset legend{
    font-weight: bold;
    font-size: 1.25em;
}
label{
    display: inline-block;
    padding-top: 2%;
  
}

#submit{
    margin-top:0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    background-color: #78593a;
    color: #f6eee4;
    font-size: 1.25em;
    border-radius: 10px;
}
/* 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;
}

/* Media query for Tablet Viewport */
@media screen and (min-width: 620px) {
    .grid{
    display: grid;
    grid-template-columns:1fr 1fr;/* display in two columns*/
    gap: 10px;
    }
    aside{
    grid-column: 1 / span 2;
    }
    /* Tablet Viewpoint: show tab-desk class, hide mobile class*/
    .mobile {
    display: none;   /* Show mobile content as block */
    }
    .tab-desk {
    display: block;    /* Hide desktop tab content */
    } 
    /* Tablet Viewpoint: style rules for nav area*/
    nav li{
        border-top: none;
        display: inline-block;
        font-size: 1.25em;
    }
    nav li a{
        padding: 0.5em;
    }
    /* Tablet viewport: Style rue for form element */
    form {
        width: 70%;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }
}
/* Media Query for Desktop Viewport*/
@media screen and (min-width: 1000px) {
/* Desktop Viewport: style rule for nav area */
    .desktop{
        display: block;
    }
    .mobile-tablet{
        display:none;
    }
    /*Style rule for Table*/
    table{
        border: 1px solid #2a1f14;
        border-collapse: collapse;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }
    table caption{
        font-size: 1.5em;
        font-weight: bold;
        padding: 1%;
    }
    table th td{
        border: 1px solid #2a1f14;
        padding: 1%;
    }
    table th{
        background-color: #2a1f14;
        color: white;
        font-size: 1.15em;
    }
    table tr:nth-child(odd){
        background-color: #deccbd;
    }
    .grid{  /*threee frames per screen*/
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    aside{
        grid-column: 1 / span 3;
        font-size:  2em;
    }

    nav li{
        font-size: 1.5em;
    }
    nav li a{
        padding-bottom: 0.5em;
        padding-top: 0.5em;
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    nav li a:hover{
        opacity:0.5;
    }
    nav a:hover {
        color: #2a1f14;
        background-color: #f6eee4;
    }
    /* Desktop Viewpoint: style rules for main content*/
    #info ul{
        margin-left: 5%;
    }
    /* Destktop viewport: Style rue for form element */
    form {
        width: auto;
    }
    .form-grid{
        display: grid;
        grid-template-columns: auto auto;
        grid-gap:20px;
    }
    .btn{
        grid-column: 1/ span 2;
    }
}
/* Media query for Large Desktop Viewports*/
@media screen and (min-width: 1921px){
    .grid{ /*Four frame per screen */
        grid-template-columns: repeat(4, 1fr);
    }
    aside{
         grid-column: 1 / span 4;
        font: 3em;
    }
    body{
        background: linear-gradient(#f6eee4,#78593a);
    }
    #wrapper{
        width: 1920px;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }
    main{
        background-color: #f6eee4;
    }

}
/* Media query for print*/
@media print{
    body{
        background-color: white;
        color: black;
    }
}


