/* Import Google Fonts - Modern, clean typeface */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #444;
    /* Modern gradient that still evokes golden fries */
    background: linear-gradient(135deg, #f9e6a6 0%, #e6b325 100%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

ol, ul {
    list-style: none;
}

/* Modern link styling */
a {
    text-decoration: none;
    color: #d68c00;
    transition: all 0.3s ease;
    position: relative;
}

a:not(.button):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #d68c00;
    transition: width 0.3s ease;
}

a:not(.button):hover:after {
    width: 100%;
}

a:hover {
    color: #e69f17;
}

/* Basic Layout */
#wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Header - Modern styling */
#header {
    text-align: center;
    padding: 3.5rem 0;
    background-color: white;
    position: relative;
}

#header .logo img {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

#header .logo img:hover {
    transform: scale(1.05);
}

#header p {
    margin-top: 1.2rem;
    color: #666;
    font-weight: 300;
    font-size: 1.1rem;
}

/* Navigation - Modern, clean navigation */
#nav {
    background-color: white;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#nav ul {
    display: flex;
    justify-content: center;
}

#nav ul li {
    margin: 0 1.5rem;
}

#nav ul li a {
    font-weight: 500;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: #555;
}

#nav ul li a:hover {
    color: #d68c00;
}

/* Main Content Sections */
#main {
    background: white;
}

.main {
    padding: 5rem 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.centered-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.major h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.major h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d68c00, #e6b325);
    border-radius: 3px;
}

/* Spotlight Section - Modern styling */
.spotlight {
    display: flex;
    align-items: center;
    margin: 3rem 0;
}

.spotlight .content {
    flex: 1;
    padding-right: 3rem;
}

.spotlight .image {
    flex: 1;
    text-align: center;
}

.spotlight .image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotlight .image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Button Styling - Modern, 3D-style buttons */
.button {
    display: inline-block;
    background: linear-gradient(135deg, #d68c00, #e6b325);
    color: white !important;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.button:after {
    display: none;
}

.button:hover {
    background: linear-gradient(135deg, #e69f17, #f9d252);
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
}

.button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 2rem;
}

.actions li {
    margin-right: 1rem;
}

/* Features Section - Card-based design */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 3rem 0;
}

.features li {
    flex: 0 0 30%;
    margin: 0 1.5%;
    text-align: center;
    margin-bottom: 2.5rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features li:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.features li h3 {
    margin: 1.2rem 0 0.8rem;
    font-weight: 600;
    color: #333;
    font-size: 1.3rem;
}

.features li .icon img {
    max-width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.features li:hover .icon img {
    transform: scale(1.05);
}

/* FAQ Section - Modern accordion style */
.faq-content {
    text-align: left;
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-content dt {
    font-weight: 600;
    color: #d68c00;
    margin-top: 1.8rem;
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-content dt:before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #e6b325;
    font-size: 1.2rem;
}

.faq-content dd {
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
    position: relative;
}

/* Contact Form */
.container-contact100 {
    width: 100%;
    padding: 1.5rem 0;
}

.container-contact100 iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer - Modern, clean footer */
#footer {
    background: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
}

#footer h2 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #444;
    font-size: 1.8rem;
}

#footer .alt {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
}

#footer .alt dt {
    font-weight: 600;
    margin-top: 1.2rem;
    color: #666;
}

#footer .alt dd {
    margin-top: 0.3rem;
}

#footer .icons {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

#footer .icons li {
    margin: 0 0.8rem;
}

#footer .icons li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #e6b325;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-align: center;
}

#footer .icons li a:after {
    display: none;
}

#footer .icons li a:hover {
    background: #d68c00;
    transform: translateY(-3px);
}

#footer p {
    color: #888;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* Responsive Styles */
@media screen and (max-width: 980px) {
    .spotlight {
        flex-direction: column;
    }
    
    .spotlight .content {
        padding-right: 0;
        padding-bottom: 2rem;
    }
    
    .features li {
        flex: 0 0 45%;
        margin: 0 2.5% 2.5rem;
    }
}

@media screen and (max-width: 736px) {
    .major h2 {
        font-size: 1.8rem;
    }
    
    .features li {
        flex: 0 0 100%;
        margin: 0 0 2.5rem;
    }
    
    #nav ul {
        flex-direction: column;
    }
    
    #nav ul li {
        margin: 0.5rem 1.5rem;
    }
    
    #wrapper {
        margin: 10px;
        border-radius: 8px;
    }
    
    .main {
        padding: 3rem 1.5rem;
    }
}

/* Modern animation effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.spotlight .content,
.major h2,
.features li {
    animation: fadeIn 0.8s ease forwards;
}

.features li:nth-child(2) {
    animation-delay: 0.2s;
}

.features li:nth-child(3) {
    animation-delay: 0.4s;
}