/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap');

/* General Styles */
body {
    background: url('wood-texture.jpg') repeat; /* Wooden background */
    font-family: 'Merriweather', serif;
    margin: 0;
    padding: 0;
    color: #3e2b20;
}

/* Main Container */
.container {
    max-width: 1100px;
    margin: 30px auto;
    background: #f5e1c8; /* Light wood panel */
    padding: 25px;
    border-radius: 15px; /* Smooth edges */
    position: relative;

    /* Add shadow for a 3D effect */
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.2),  /* Inner shadow */
        0px 5px 20px rgba(0, 0, 0, 0.4); /* Outer shadow */
}

/* Wooden Border Overlay */
.container::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    z-index: -1;
    background: url('wood-border.jpg') repeat; /* Add a high-quality wood texture */
    border-radius: 20px;
}

/* Logo - Centering & Fixing Borders */
.logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    background: none; /* Remove extra background */
    padding: 10px 0; /* Reduce padding */
    border: none; /* Remove any unintended borders */
    text-align: center;
}

/* Logo Image - Remove Border and Fix Proportions */
.logo img {
    width: 55px; /* Adjust size proportionally */
    height: auto;
    border: none !important; /* Ensure no border */
    padding: 0; /* Remove any padding */
    box-shadow: none !important; /* Remove shadow */
    background: none !important; /* Ensure no background causing borders */
    display: block; /* Ensures no inline spacing */
}

/* Logo Title */
.logo h1 {
    font-size: 26px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    margin: 0 0 0 15px; /* Space between logo and text */
}

/* Navigation Menu */
nav {
    background: url('dark-wood.jpg') center/cover;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3); /* Soft shadow */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 18px;
    border-radius: 6px;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Content */
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;
}

/* Sidebar - Add Shadow */
.sidebar {
    width: 30%;
    background: rgba(224, 201, 166, 0.9);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.sidebar h2 {
    font-size: 22px;
    font-weight: bold;
    color: #5b3d1e;
}

.sidebar a {
    text-decoration: none;
    color: #b35a1f;
    font-weight: bold;
}

.sidebar a:hover {
    text-decoration: underline;
}

/* Main Content - Add Shadow */
.main {
    width: 65%;
    padding: 15px;
    background: rgba(224, 201, 166, 0.9);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.main img {
    width: 100%;
    border-radius: 10px;
    border: 4px solid #8b5a2b;
}

/* Contact Page Styling */
.contact-section {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
}

.contact-section h2 {
    color: #4a2c16;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 18px;
    line-height: 1.6;
}

.contact-section a {
    color: #b35a1f;
    text-decoration: none;
    font-weight: bold;
}

.contact-section hr {
    margin: 20px 0;
    border: 0.5px solid #ddd;
}

/* Footer */
footer {
    background: url('dark-wood.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-top: 25px;
    font-size: 16px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Footer shadow */
}

/* Icon Container */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none; /* Remove background */
    padding: 8px;
    border-radius: 10px;
    border: none !important; /* Remove extra border */
    box-shadow: 
        inset 0 0 6px rgba(0, 0, 0, 0.5),  /* Inner shadow for engraving effect */
        0 4px 8px rgba(0, 0, 0, 0.4); /* Outer shadow for depth */
}

/* Icon Image - Fix Proportions */
.icon-container img {
    width: 50px;
    height: auto;
    border-radius: 8px;
    border: none !important;
}
