@charset "utf-8";

/* =========================
       SITE WIDE SECTION
   ========================= */

body {
    font-size: 1em;
	line-height: 1.3em;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    border: 5px solid #AA372F;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-self: center;
    align-items: center;
    padding: 20px;
    background-color: white;

}

header img {
    border-radius: 15px
}

nav {
    background-color: #0C243C;
}

nav a {
    text-decoration: none;
    color: #E94D40;
    font-size: x-large;
}

nav a:hover {
    color: #5aaefd;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    height: 80px;
    align-items: center;
    border-bottom: 2px solid #E94D40;
    margin: 0;
}

footer {
    background-color: #0C243C;
    color: #f87d72;
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.activelink {
    font-weight: bold;
}

/* =========================
         INDEX SECTION
   ========================= */

.home-info {
    background: #fdfdfd;
    text-align: center;
    padding: 50px 20px;
    margin: 40px auto;
    border-top: 3px solid #AA372F;
    border-bottom: 3px solid #AA372F;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.home-info h2 {
    color: #0C243C;
    font-size: 2rem;
    margin-bottom: 20px;
}

.home-info p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.home-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 15px;
}

.home-columns > div {
    flex: 1 1 300px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-columns > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.home-columns h2 {
    color: #0C243C;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.home-columns p {
    color: #444;
    margin: 8px 0;
}

.column-img img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.banner {
    position: relative;
    display: inline-block;
    max-width: 100%;
    color: #E94D40;
}

.banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.banner-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: white;
    background-color: #0c243c94;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

/* =========================
         ABOUT SECTION
   ========================= */



.about-title {
    text-align: center;
    color: #0C243C;
    margin-bottom: 30px;
    font-size: 2.5rem;
    border-bottom: 3px solid #AA372F;
    display: inline-block;
    padding-bottom: 10px;
}

.about {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.7;
}

.about p {
    color: #333;
    font-size: 1.2rem;
    margin: 15px 0;
}

.job {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.job h2 {
    text-align: center;
    color: #0C243C;
    margin-bottom: 25px;
    font-size: 2rem;
}

.job p {
    color: #333;
    font-size: 1.2rem;
    margin: 15px 0;
    text-align: center;
}

.job-table {
    overflow-x: auto;
}

.job-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.job-table th,
.job-table td {
    padding: 15px 20px;
    text-align: left;
}

.job-table thead {
    background: #0C243C;
    color: #E94D40;
    font-weight: bold;
}

.job-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.job-table tbody tr:hover {
    background: #ffe9e7;
    transition: background 0.3s ease;
}

/* =========================
         SALE SECTION
   ========================= */

.sale-title {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 2.5rem;
    color: #0C243C;
    border-bottom: 3px solid #AA372F;
    display: inline-block;
    padding-bottom: 10px;
}

.cake-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.cake-gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.cake-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.cake-gallery figure {
    text-align: center;
}

.cake-gallery figcaption {
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.modal-container {
    display: inline-block; 
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    text-align: center;
    padding-top: 60px;
}

.modal:target {
    display: block;
}

.modal img {
    max-width: 80%;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.6);
    display: block;
    margin: 0 auto;
}

.modal-caption {
    margin-top: 15px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    background: #AA372F;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    text-decoration: none;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
}

.order {
    display: flex;
    justify-content: center;
}

.order-info {
    display: flex;
    justify-content: center;
}

.price-table {
    max-width: 900px;
    margin: 50px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-top: 3px solid #AA372F;
    border-bottom: 3px solid #AA372F;
    text-align: center;
}

.price-table h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0C243C;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.price-table th, 
.price-table td {
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 1.1rem;
}

.price-table th {
    background: #0C243C;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-table tr:nth-child(even) {
    background: #f9f9f9;
}

.price-table tr:hover {
    background: #ffecec;
}

form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-top: 3px solid #AA372F;
    border-bottom: 3px solid #AA372F;
}

form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0C243C;
    font-size: 2rem;
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #0C243C;
}

.form-note {
    display: block;
    margin-top: -10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
    border-color: #E94D40;
    outline: none;
    box-shadow: 0 0 6px rgba(233, 77, 64, 0.3);
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

form button {
    display: inline-block;
    width: 100%;
    padding: 14px;
    font-size: 1.2rem;
    background: #0C243C;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

form button:hover {
    background: #E94D40;
    transform: translateY(-2px);
}

/* =========================
        CONTACT SECTION
   ========================= */

.contact-title {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 2.5rem;
    color: #0C243C;
    border-bottom: 3px solid #AA372F;
    display: inline-block;
    padding-bottom: 10px;
}

.column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.map {
    width: 100%;
    height: 350px;
    border: 2px solid #AA372F;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.find-title{
    text-align: center;
    font-size: 1.5rem;
    color: #0C243C;
    margin-top: 20px;
}

.contact-us {
    flex: 1 1 400px;
    background: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #AA372F;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us h2 {
    color: #0C243C;
    margin-bottom: 10px;
    text-align: center;
}

.contact-us p {
    font-size: 1rem;
    color: #333;
}

.contact-us a {
    color: #E94D40;
    text-decoration: none;
}

.contact-us a:hover {
    color: #5aaefd;
    text-decoration: underline;
}